2017-01-05 15:26:10 +00:00
|
|
|
.dropdown-button {
|
2024-10-25 15:02:52 +00:00
|
|
|
padding: 8px 0;
|
2017-01-05 15:26:10 +00:00
|
|
|
&__wrapper {
|
2023-01-30 19:37:51 +00:00
|
|
|
display: flex;
|
2017-01-05 15:26:10 +00:00
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
2022-03-09 18:00:37 +00:00
|
|
|
&__caret {
|
2017-01-05 15:26:10 +00:00
|
|
|
font-size: 6px;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-left: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__options {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 45px;
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
display: none;
|
2025-02-28 13:46:00 +00:00
|
|
|
z-index: 99;
|
2017-01-05 15:26:10 +00:00
|
|
|
border-radius: 2px;
|
2021-04-30 21:32:50 +00:00
|
|
|
background-color: $core-white;
|
2020-12-08 20:07:54 +00:00
|
|
|
box-shadow: 0 4px 10px rgba(52, 59, 96, 0.15);
|
2023-01-04 16:06:30 +00:00
|
|
|
animation: fade-in 150ms ease-out;
|
2017-01-05 15:26:10 +00:00
|
|
|
&--opened {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__option {
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
.button {
|
2021-05-27 16:06:24 +00:00
|
|
|
color: $core-fleet-blue;
|
2017-01-05 15:26:10 +00:00
|
|
|
text-transform: none;
|
|
|
|
|
text-align: left;
|
2020-11-20 00:51:22 +00:00
|
|
|
font-weight: $regular;
|
2017-01-05 15:26:10 +00:00
|
|
|
margin: 0;
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
height: 38px;
|
|
|
|
|
letter-spacing: -0.5px;
|
|
|
|
|
|
2022-03-28 21:31:36 +00:00
|
|
|
&:hover,
|
|
|
|
|
&:focus {
|
2021-05-27 16:06:24 +00:00
|
|
|
background-color: $ui-vibrant-blue-10;
|
|
|
|
|
color: $core-fleet-blue;
|
2017-01-05 15:26:10 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-11-07 06:41:09 +00:00
|
|
|
|
|
|
|
|
&.story {
|
|
|
|
|
padding-left: 100px;
|
|
|
|
|
}
|
2017-01-05 15:26:10 +00:00
|
|
|
}
|
2021-05-10 20:00:34 +00:00
|
|
|
|
2022-03-09 18:00:37 +00:00
|
|
|
.downcaret {
|
2021-05-10 20:00:34 +00:00
|
|
|
&::after {
|
|
|
|
|
content: url("../assets/images/icon-chevron-white-16x16@2x.png");
|
|
|
|
|
transform: scale(0.5);
|
|
|
|
|
width: 16px;
|
|
|
|
|
border-radius: 0px;
|
|
|
|
|
padding: 0px;
|
|
|
|
|
padding-left: 2px;
|
2022-11-01 20:09:57 +00:00
|
|
|
margin-top: 1px;
|
2021-05-10 20:00:34 +00:00
|
|
|
}
|
|
|
|
|
}
|