mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
* rework data table, got to point of calling network request correctly * got to point of rendering table columns and data * finish up functional changes to data table * fix tests * fix styles for table container and data table * clean up some styles * update to styles for no host configured * cleanup and docs * add missing method for host table text formatting * disabling unused test. will add back in next PR * clean up code
42 lines
780 B
SCSS
42 lines
780 B
SCSS
.header-cell {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
|
|
.sort-arrows {
|
|
height: 14px;
|
|
padding-left: $pad-half;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.ascending-arrow {
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
border-bottom: 6px solid $ui-dark-grey;
|
|
}
|
|
.descending-arrow {
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
border-top: 6px solid $ui-dark-grey;
|
|
}
|
|
|
|
&.ascending {
|
|
|
|
.ascending-arrow {
|
|
border-bottom-color: $core-blue;
|
|
}
|
|
}
|
|
|
|
&.descending {
|
|
|
|
.descending-arrow {
|
|
border-top-color: $core-blue;
|
|
}
|
|
}
|
|
}
|