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-12-07 20:47:26 +00:00
|
|
|
padding: 0;
|
2017-09-21 15:48:00 +01:00
|
|
|
|
|
|
|
> .option {
|
2018-09-03 17:36:54 +01:00
|
|
|
@include border-radius(3px);
|
|
|
|
margin: 0 0 15px 0;
|
2017-09-21 15:48:00 +01:00
|
|
|
padding: 10px 15px;
|
|
|
|
color: $color-gray;
|
|
|
|
background-color: $color-off-white;
|
2018-09-03 17:36:54 +01:00
|
|
|
border: 1px solid $color-gray;
|
2017-09-21 15:48:00 +01:00
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
2017-12-07 20:47:26 +00:00
|
|
|
list-style-type: none;
|
|
|
|
line-height: 26px;
|
2017-09-21 15:48:00 +01:00
|
|
|
|
|
|
|
&:hover {
|
2018-09-03 17:36:54 +01:00
|
|
|
> .text-header, > .text {
|
|
|
|
color: $color-off-black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text-header {
|
|
|
|
@include ease-in();
|
|
|
|
color: $color-gray;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 80%;
|
2017-09-21 15:48:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
2018-09-03 17:36:54 +01:00
|
|
|
@include ease-in();
|
|
|
|
color: $color-gray;
|
|
|
|
font-size: 1rem;
|
|
|
|
font-weight: 500;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-11-22 16:28:17 +00:00
|
|
|
width: 80%;
|
2017-09-21 15:48:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> .material-icons {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
2018-09-03 17:36:54 +01:00
|
|
|
color: $color-green;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 1.3rem;
|
2017-09-21 15:48:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .selected {
|
2018-09-03 17:36:54 +01:00
|
|
|
> .text-header, > .text {
|
|
|
|
color: $color-off-black;
|
|
|
|
}
|
|
|
|
|
|
|
|
background-color: $color-yellow !important;
|
|
|
|
border: 1px solid $color-goldy !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget-list-picker-horiz {
|
|
|
|
> .options {
|
|
|
|
> .option {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 15px 15px 0 0;
|
|
|
|
padding: 10px 15px;
|
|
|
|
width: 30%;
|
|
|
|
|
|
|
|
@media only screen and (max-width: 1200px) {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-09-21 15:48:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-15 14:25:05 +01:00
|
|
|
|
|
|
|
.widget-list-choice {
|
|
|
|
text-align: left;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
> li {
|
|
|
|
margin: 0 20px 0 0;
|
|
|
|
padding: 0;
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 1.3rem;
|
|
|
|
font-weight: 700;
|
|
|
|
color: $color-gray;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .selected {
|
|
|
|
color: $color-green;
|
|
|
|
border-bottom: 1px solid $color-green;
|
|
|
|
}
|
|
|
|
}
|