2021-02-25 12:05:08 +00:00
|
|
|
.header-cell {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.sort-arrows {
|
|
|
|
|
height: 14px;
|
2021-04-10 00:30:42 +00:00
|
|
|
padding-left: $pad-small;
|
2021-02-25 12:05:08 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ascending-arrow {
|
2021-04-12 13:32:25 +00:00
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
2021-02-25 12:05:08 +00:00
|
|
|
border-left: 5px solid transparent;
|
|
|
|
|
border-right: 5px solid transparent;
|
2021-04-09 19:04:11 +00:00
|
|
|
border-bottom: 6px solid $ui-fleet-black-25;
|
2021-02-25 12:05:08 +00:00
|
|
|
}
|
|
|
|
|
.descending-arrow {
|
2021-04-12 13:32:25 +00:00
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
2021-02-25 12:05:08 +00:00
|
|
|
border-left: 5px solid transparent;
|
|
|
|
|
border-right: 5px solid transparent;
|
2021-04-09 19:04:11 +00:00
|
|
|
border-top: 6px solid $ui-fleet-black-25;
|
2021-02-25 12:05:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.ascending {
|
|
|
|
|
.ascending-arrow {
|
2025-09-29 17:10:41 +00:00
|
|
|
border-bottom-color: $core-fleet-black;
|
2021-02-25 12:05:08 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.descending {
|
|
|
|
|
.descending-arrow {
|
2025-09-29 17:10:41 +00:00
|
|
|
border-top-color: $core-fleet-black;
|
2021-02-25 12:05:08 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|