2017-04-07 01:29:05 +02:00
|
|
|
@import "vars";
|
|
|
|
@import "mixins";
|
|
|
|
|
|
|
|
|
|
|
|
.white .select-list {
|
|
|
|
li {
|
|
|
|
&.checked {
|
|
|
|
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
background-color: rgba(0,0,0,0.025) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
color: $medium;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-list {
|
2020-04-08 20:45:30 +02:00
|
|
|
&:empty:before {
|
2017-04-07 01:29:05 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
margin: -50%;
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 1px;
|
|
|
|
margin-top: -6px;
|
|
|
|
content:attr(data-placeholder);
|
|
|
|
color: $medium;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
background-clip: padding-box;
|
2020-04-08 20:45:30 +02:00
|
|
|
//font-size: 15px;
|
|
|
|
//line-height: 14px;
|
2017-04-07 01:29:05 +02:00
|
|
|
list-style: none;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 15px 0;
|
|
|
|
text-align: left;
|
|
|
|
// background-color: $dark;
|
|
|
|
border-radius: $radius;
|
|
|
|
|
|
|
|
.divider + li span {border: none !important; }
|
|
|
|
|
|
|
|
.divider {
|
|
|
|
@include backface-visibility(hidden);
|
|
|
|
|
|
|
|
margin: 10px 0;
|
|
|
|
border: 1px solid rgba(0,0,0,0.05);
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// li.divider {border-bottom: 2px solid rgba(0,0,0,0.025); }
|
|
|
|
|
|
|
|
li {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
margin: -2px 0 ;
|
|
|
|
|
|
|
|
&.checked {
|
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
background-color: $dark !important;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
color: $dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2020-04-08 20:45:30 +02:00
|
|
|
background-color: black;
|
|
|
|
|
2017-04-07 01:29:05 +02:00
|
|
|
> a,
|
|
|
|
> span {
|
2020-04-08 20:45:30 +02:00
|
|
|
color: white;
|
2017-04-07 01:29:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.select-list-title:before {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
top: 50%;
|
|
|
|
left: 10px;
|
|
|
|
margin-top: -3px;
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
height: 6px;
|
|
|
|
width: 6px;
|
|
|
|
background-color: $light;
|
|
|
|
border-radius: 100%;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> b,
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
display: block;
|
|
|
|
cursor: pointer;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin: 0 25px;
|
2020-04-08 20:45:30 +02:00
|
|
|
padding: 10px 0px;
|
2017-04-07 01:29:05 +02:00
|
|
|
// line-height: 50px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 100%;
|
|
|
|
border-top: 2px solid rgba(0,0,0,0.025) !important;
|
|
|
|
.icon {
|
|
|
|
&.icon-sm {
|
|
|
|
margin: -7px;
|
|
|
|
margin-right: 14px;
|
|
|
|
}
|
|
|
|
&.icon-md {
|
|
|
|
margin: -13px;
|
|
|
|
margin-right: 7px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
> b,
|
|
|
|
> a,
|
|
|
|
> span {
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-04-08 20:45:30 +02:00
|
|
|
}
|