You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
277 B
19 lines
277 B
6 years ago
|
@import '../../style/themes/default';
|
||
|
|
||
|
.operation-unit() {
|
||
|
color: @link-color;
|
||
|
text-decoration: none;
|
||
|
outline: none;
|
||
|
cursor: pointer;
|
||
|
transition: color 0.3s;
|
||
|
|
||
|
&:focus,
|
||
|
&:hover {
|
||
|
color: @link-hover-color;
|
||
|
}
|
||
|
|
||
|
&:active {
|
||
|
color: @link-active-color;
|
||
|
}
|
||
|
}
|