mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
34 lines
570 B
SCSS
34 lines
570 B
SCSS
.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 {
|
|
background-color: $color-selected-item !important;
|
|
color: $color-primary !important;
|
|
|
|
> i.material-icons {
|
|
display: inline-block;
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 5px;
|
|
}
|
|
}
|
|
}
|