32 lines
542 B
SCSS
32 lines
542 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.NodeSelect {
|
|
&-node {
|
|
@include reset-button;
|
|
display: block;
|
|
width: 100%;
|
|
height: 48px;
|
|
line-height: 48px;
|
|
padding: 0 10px;
|
|
color: $text-color;
|
|
border-bottom: 1px solid $gray-lighter;
|
|
border-left: 4px solid;
|
|
text-align: left;
|
|
@include ellipsis;
|
|
|
|
&:hover {
|
|
color: $link-hover-color;
|
|
}
|
|
|
|
&.is-active {
|
|
color: $link-color;
|
|
background: $gray-lightest;
|
|
}
|
|
|
|
small {
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|