2021-04-09 10:44:57 +00:00
|
|
|
.dropdown-cell {
|
2021-07-15 17:02:58 +00:00
|
|
|
width: 80px;
|
|
|
|
|
|
2022-04-07 19:12:38 +00:00
|
|
|
.form-field {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-09 10:44:57 +00:00
|
|
|
.Select {
|
2021-08-05 14:48:00 +00:00
|
|
|
position: relative;
|
2022-10-20 17:29:32 +00:00
|
|
|
border: 0;
|
|
|
|
|
height: auto;
|
|
|
|
|
|
2022-11-01 20:09:57 +00:00
|
|
|
&.is-focused,
|
|
|
|
|
&:hover {
|
2022-10-20 17:29:32 +00:00
|
|
|
border: 0;
|
|
|
|
|
}
|
2021-04-09 10:44:57 +00:00
|
|
|
|
2022-11-10 16:55:43 +00:00
|
|
|
&.is-focused:not(.is-open) {
|
|
|
|
|
.Select-control {
|
|
|
|
|
background-color: initial;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-09 10:44:57 +00:00
|
|
|
.Select-control {
|
|
|
|
|
display: flex;
|
2022-11-10 16:55:43 +00:00
|
|
|
background-color: initial;
|
2022-04-07 19:12:38 +00:00
|
|
|
height: auto;
|
2021-04-09 10:44:57 +00:00
|
|
|
justify-content: space-between;
|
|
|
|
|
border: 0;
|
2021-06-29 18:10:47 +00:00
|
|
|
cursor: pointer;
|
|
|
|
|
|
2022-04-07 19:12:38 +00:00
|
|
|
&:hover {
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-29 18:10:47 +00:00
|
|
|
&:hover .Select-placeholder {
|
|
|
|
|
color: $core-vibrant-blue;
|
|
|
|
|
}
|
2021-04-09 10:44:57 +00:00
|
|
|
|
|
|
|
|
.Select-placeholder {
|
2021-04-09 19:04:11 +00:00
|
|
|
color: $core-fleet-black;
|
2022-04-07 19:12:38 +00:00
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
padding-left: 0;
|
2022-11-01 20:09:57 +00:00
|
|
|
margin-top: 1px;
|
2021-04-09 10:44:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.Select-input {
|
|
|
|
|
height: auto;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.Select-menu-outer {
|
2021-04-14 16:52:15 +00:00
|
|
|
margin-top: $pad-xsmall;
|
|
|
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
|
|
|
border-radius: $border-radius;
|
|
|
|
|
z-index: 6;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border: 0;
|
2021-07-12 15:26:11 +00:00
|
|
|
width: 188px;
|
2021-04-14 16:52:15 +00:00
|
|
|
left: unset;
|
|
|
|
|
top: unset;
|
|
|
|
|
max-height: 220px;
|
2021-07-15 17:02:58 +00:00
|
|
|
padding: $pad-small;
|
2021-08-05 14:48:00 +00:00
|
|
|
position: absolute;
|
|
|
|
|
left: -12px;
|
2021-04-14 16:52:15 +00:00
|
|
|
}
|
2021-06-29 18:10:47 +00:00
|
|
|
|
|
|
|
|
&:not(.is-open) {
|
|
|
|
|
.Select-control:hover .Select-arrow {
|
|
|
|
|
content: url("../assets/images/icon-chevron-blue-16x16@2x.png");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.is-open {
|
|
|
|
|
.Select-control .Select-placeholder {
|
|
|
|
|
color: $core-vibrant-blue;
|
2022-04-07 19:12:38 +00:00
|
|
|
}
|
2021-06-29 18:10:47 +00:00
|
|
|
}
|
2021-04-09 10:44:57 +00:00
|
|
|
}
|
|
|
|
|
}
|