1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-20 05:39:42 +02:00
documize/gui/app/styles/widget/widget-list-picker.scss

41 lines
644 B
SCSS
Raw Normal View History

.widget-list-picker {
margin: 10px 0;
> .options {
2017-11-22 16:28:17 +00:00
width: 100%;
margin: 0 auto;
> .option {
2017-11-22 16:28:17 +00:00
@include ease-in();
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;
}
> .text {
2017-11-22 16:28:17 +00:00
width: 80%;
font-weight: bold;
}
> .material-icons {
position: absolute;
top: 10px;
right: 10px;
color: $color-white;
}
}
> .selected {
color: $color-white !important;
background-color: $color-link !important;
}
}
}