mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-02 20:18:03 +08:00
31 lines
432 B
SCSS
31 lines
432 B
SCSS
|
.ae-TargetName {
|
||
|
padding: 12px;
|
||
|
width: 15em;
|
||
|
&-list {
|
||
|
list-style: none;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
user-select: none;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
&-node {
|
||
|
> span {
|
||
|
line-height: normal;
|
||
|
}
|
||
|
> a {
|
||
|
color: $text-color;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
&.is-active {
|
||
|
> a {
|
||
|
color: $primary;
|
||
|
}
|
||
|
}
|
||
|
&.is-hover {
|
||
|
> a {
|
||
|
color: $primary;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|