2016-10-27 13:40:54 -07:00
|
|
|
.widget-selection {
|
|
|
|
> .option {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px 10px;
|
|
|
|
text-align: left;
|
|
|
|
@extend .no-select;
|
|
|
|
cursor: pointer;
|
|
|
|
// border: 1px solid $color-border;
|
|
|
|
color: $color-off-black;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
> i.material-icons {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
@include ease-in();
|
|
|
|
background-color: $color-off-white;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .selected {
|
2017-09-25 19:14:33 +01:00
|
|
|
background-color: $color-selected-item !important;
|
2016-10-27 13:40:54 -07:00
|
|
|
color: $color-primary !important;
|
|
|
|
|
|
|
|
> i.material-icons {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|