mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
19 lines
277 B
Plaintext
19 lines
277 B
Plaintext
@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;
|
|
}
|
|
}
|