2021-10-22 15:34:45 +00:00
|
|
|
.fleet-slider {
|
2019-01-03 20:46:55 +00:00
|
|
|
transition: background-color 150ms ease-in-out;
|
2022-03-11 17:56:14 +00:00
|
|
|
background-color: $ui-fleet-black-50;
|
2016-12-16 15:54:49 +00:00
|
|
|
border-radius: 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-block;
|
2022-03-11 17:56:14 +00:00
|
|
|
height: 20px;
|
|
|
|
|
min-width: 35px;
|
2016-12-16 15:54:49 +00:00
|
|
|
position: relative;
|
2022-03-11 17:56:14 +00:00
|
|
|
width: 35px;
|
2016-12-16 15:54:49 +00:00
|
|
|
|
|
|
|
|
&:hover {
|
2022-03-11 17:56:14 +00:00
|
|
|
background-color: $ui-fleet-black-50;
|
2016-12-16 15:54:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--active {
|
2021-04-30 21:32:50 +00:00
|
|
|
background-color: $core-vibrant-blue;
|
2016-12-16 15:54:49 +00:00
|
|
|
|
|
|
|
|
&:hover {
|
2021-04-30 21:32:50 +00:00
|
|
|
background-color: $core-vibrant-blue;
|
2016-12-16 15:54:49 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__wrapper {
|
2019-01-03 20:46:55 +00:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2016-12-27 15:32:30 +00:00
|
|
|
height: 40px;
|
2016-12-16 15:54:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__dot {
|
2022-03-11 17:56:14 +00:00
|
|
|
@include size(16px);
|
|
|
|
|
@include position(absolute, 2px null null 2px);
|
2019-01-03 20:46:55 +00:00
|
|
|
transition: left 150ms ease-in-out;
|
2016-12-16 15:54:49 +00:00
|
|
|
border-radius: 50%;
|
2021-04-30 21:32:50 +00:00
|
|
|
background-color: $core-white;
|
2016-12-16 15:54:49 +00:00
|
|
|
|
|
|
|
|
&--active {
|
2022-03-11 17:56:14 +00:00
|
|
|
left: 17px;
|
2016-12-16 15:54:49 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__label {
|
2022-03-11 17:56:14 +00:00
|
|
|
font-size: $x-small;
|
2020-11-20 00:51:22 +00:00
|
|
|
font-weight: $regular;
|
2016-12-16 15:54:49 +00:00
|
|
|
text-align: left;
|
|
|
|
|
vertical-align: text-bottom;
|
2022-03-11 17:56:14 +00:00
|
|
|
margin-left: $pad-small;
|
2016-12-16 15:54:49 +00:00
|
|
|
}
|
|
|
|
|
}
|