mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 04:11:10 +01:00
22 lines
267 B
SCSS
22 lines
267 B
SCSS
|
a {
|
||
|
|
||
|
@include link-transition;
|
||
|
color: $color__link;
|
||
|
|
||
|
&:visited {
|
||
|
color: $color__link-visited;
|
||
|
}
|
||
|
|
||
|
&:hover,
|
||
|
&:active {
|
||
|
color: $color__link-hover;
|
||
|
outline: 0;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
&:focus {
|
||
|
outline: thin dotted;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|