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;
|
|
|
|
}
|
|
|
|
|
2016-06-24 11:19:41 -04:00
|
|
|
select {
|
2016-06-23 14:06:36 -04:00
|
|
|
transition: all .5s ease;
|
2016-07-25 15:43:44 -04:00
|
|
|
margin-bottom: .75rem;
|
2016-06-24 11:19:41 -04:00
|
|
|
border: 1px solid $active-gray;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: $ui-light-gray url("../../../static/svgs/forms/carot.svg") no-repeat right center;
|
|
|
|
padding-right: 4rem;
|
|
|
|
width: 100%;
|
|
|
|
height: 3rem;
|
|
|
|
text-indent: 1rem;
|
|
|
|
font-size: .875rem;
|
|
|
|
appearance: none;
|
2016-06-23 14:06:36 -04:00
|
|
|
|
2016-07-05 14:39:08 -04:00
|
|
|
&::-ms-expand {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-07-18 10:17:22 -04:00
|
|
|
&::-ms-value {
|
|
|
|
background-color: inherit;
|
|
|
|
padding-left: 1rem;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2016-06-24 11:19:41 -04:00
|
|
|
&:focus {
|
|
|
|
transition: all .5s ease;
|
|
|
|
outline: none;
|
|
|
|
border: 1px solid $ui-blue;
|
|
|
|
}
|
2016-06-23 07:27:43 -04:00
|
|
|
|
2016-06-24 11:19:41 -04:00
|
|
|
&:focus,
|
|
|
|
&:hover {
|
|
|
|
background: $ui-light-gray url("../../../static/svgs/forms/carot-hover.svg") no-repeat right center;
|
|
|
|
}
|
|
|
|
|
|
|
|
> option {
|
|
|
|
background-color: $ui-white;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2016-06-23 07:27:43 -04:00
|
|
|
}
|
2015-10-15 11:38:45 -04:00
|
|
|
}
|