2018-12-12 13:35:16 +00:00
|
|
|
.sidebar-content {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> .section {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 7px;
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 600;
|
|
|
|
color: map-get($gray-shades, 700);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .list {
|
|
|
|
margin: 10px 0;
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
padding: 3px 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
> .dicon {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: map-get($gray-shades, 500);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0 0 0 8px;
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 500;
|
|
|
|
color: $color-black-light-3;
|
|
|
|
}
|
|
|
|
|
2018-12-14 16:40:54 +00:00
|
|
|
> input[type=checkbox] {
|
|
|
|
margin: -6px 0 0 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2018-12-12 13:35:16 +00:00
|
|
|
&:hover {
|
|
|
|
> .dicon {
|
|
|
|
color: map-get($gray-shades, 600);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
color: $color-black-light-1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .selected {
|
|
|
|
> .dicon, > .name, &:hover {
|
|
|
|
color: $theme-500 !important;
|
|
|
|
font-weight: 600 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|