2017-09-21 15:48:00 +01:00
|
|
|
.widget-list-picker {
|
|
|
|
margin: 10px 0;
|
|
|
|
|
|
|
|
> .options {
|
2017-11-22 16:28:17 +00:00
|
|
|
width: 100%;
|
2017-09-21 16:27:36 +01:00
|
|
|
margin: 0 auto;
|
2017-09-21 15:48:00 +01:00
|
|
|
|
|
|
|
> .option {
|
2017-11-22 16:28:17 +00:00
|
|
|
@include ease-in();
|
2017-09-21 15:48:00 +01:00
|
|
|
margin: 0 0 5px 0;
|
|
|
|
padding: 10px 15px;
|
|
|
|
color: $color-gray;
|
|
|
|
background-color: $color-off-white;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:hover {
|
2017-11-22 16:28:17 +00:00
|
|
|
color: $color-black;
|
|
|
|
// background-color: $color-primary-light;
|
2017-09-21 15:48:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
2017-11-22 16:28:17 +00:00
|
|
|
width: 80%;
|
2017-09-21 15:48:00 +01:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .material-icons {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
color: $color-white;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .selected {
|
|
|
|
color: $color-white !important;
|
|
|
|
background-color: $color-link !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|