Files
Iris/src/scss/components/_dropdown-field.scss
James Barnsley b52b8e18d2 Delicious buttons
2017-06-19 07:38:23 +12:00

52 lines
716 B
SCSS
Executable File

.dropdown-field {
font-size: 13px;
font-weight: 600;
font-family: "Overpass";
position: relative;
display: inline-block;
.label {
padding: 14px 10px;
cursor: pointer;
}
&.expanded {
.label {
color: $blue;
}
.options {
display: block;
}
}
.options {
color: $mid_grey;
position: absolute;
top: 46px;
right: 0px;
z-index: 97;
background: $white;
border-top: 1px solid $mid_grey;
display: none;
.option {
position: relative;
padding: 6px 14px 6px 18px;
cursor: pointer;
.fa {
position: absolute;
top: 7px;
left: 5px;
font-size: 10px;
}
&:hover {
color: $black;
}
}
}
}