mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
17 lines
238 B
Plaintext
17 lines
238 B
Plaintext
|
.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;
|
||
|
}
|
||
|
}
|