2021-11-05 16:43:46 +01:00
|
|
|
select.dropdown {
|
2021-11-09 14:26:47 +01:00
|
|
|
border: 1px solid $dark-gray;
|
2021-11-05 16:43:46 +01:00
|
|
|
box-sizing: border-box;
|
|
|
|
border-radius: 2px;
|
2021-11-08 12:26:21 +01:00
|
|
|
cursor: pointer;
|
2021-11-05 16:43:46 +01:00
|
|
|
|
2021-11-09 14:26:47 +01:00
|
|
|
font-family: $font_family;
|
|
|
|
|
2021-11-22 01:19:04 +01:00
|
|
|
margin-top: 4px;
|
|
|
|
|
2021-11-29 11:20:59 +01:00
|
|
|
background-color: $white;
|
2021-11-23 00:22:00 +01:00
|
|
|
|
2021-11-05 16:43:46 +01:00
|
|
|
&.large {
|
|
|
|
width: 229px;
|
|
|
|
height: 40px;
|
2021-11-09 14:26:47 +01:00
|
|
|
font-size: 16px;
|
|
|
|
padding: 9px 7px;
|
2021-11-05 16:43:46 +01:00
|
|
|
|
|
|
|
option {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 20px;
|
2021-11-23 00:22:00 +01:00
|
|
|
color: $black;
|
|
|
|
padding: 0;
|
2021-11-05 16:43:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&.medium {
|
|
|
|
width: 229px;
|
|
|
|
height: 32px;
|
2021-11-09 14:26:47 +01:00
|
|
|
font-size: 14px;
|
|
|
|
padding: 6px 7px;
|
2021-11-05 16:43:46 +01:00
|
|
|
|
|
|
|
option {
|
|
|
|
font-size: 14px;
|
2021-11-10 13:21:41 +01:00
|
|
|
line-height: 18px;
|
|
|
|
color: $black;
|
2021-11-05 16:43:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&.small {
|
|
|
|
width: 229px;
|
|
|
|
height: 26px;
|
2021-11-09 14:26:47 +01:00
|
|
|
font-size: 14px;
|
|
|
|
padding: 3px 7px;
|
2021-11-05 16:43:46 +01:00
|
|
|
|
|
|
|
option {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
color: $black;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-09 14:26:47 +01:00
|
|
|
&:focus {
|
|
|
|
outline-style: none;
|
|
|
|
box-shadow: none;
|
|
|
|
border-color: transparent;
|
|
|
|
border-color: $blue;
|
|
|
|
}
|
|
|
|
|
2021-11-10 13:21:41 +01:00
|
|
|
&.disabled {
|
|
|
|
border-color: $dark-gray;
|
|
|
|
background-color: $gray;
|
|
|
|
color: $very-dark-gray;
|
|
|
|
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2021-11-05 16:43:46 +01:00
|
|
|
}
|