2015-10-15 11:38:45 -04:00
|
|
|
@import "../../colors";
|
2016-06-23 07:27:43 -04:00
|
|
|
@import "../../frameless";
|
2015-10-15 11:38:45 -04:00
|
|
|
|
|
|
|
.select {
|
2016-06-23 07:27:43 -04:00
|
|
|
label {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
margin: .8rem 0;
|
|
|
|
border: 1px solid $active-gray;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: $ui-light-gray url("../../../static/images/dropdown.png") no-repeat right center;
|
|
|
|
background-size: 1rem 1rem;
|
|
|
|
width: 100%;
|
|
|
|
height: 3rem;
|
|
|
|
text-indent: 1rem;
|
|
|
|
font-size: .875rem;
|
|
|
|
appearance: none;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> option {
|
|
|
|
background-color: $ui-white;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-10-15 11:38:45 -04:00
|
|
|
}
|