2021-04-04 12:45:24 +00:00
|
|
|
.table-container {
|
2021-12-09 22:43:34 +00:00
|
|
|
// TODO: Fix hacky solution to clientside search being 0 no longer accessing rows.length
|
|
|
|
.client-result-count-0 {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2021-04-04 12:45:24 +00:00
|
|
|
&__header {
|
|
|
|
display: flex;
|
2022-04-07 19:12:38 +00:00
|
|
|
width: 100%;
|
|
|
|
justify-content: space-between;
|
2021-04-04 12:45:24 +00:00
|
|
|
align-items: center;
|
2023-08-09 17:35:28 +00:00
|
|
|
gap: $pad-small;
|
2023-08-25 16:26:03 +00:00
|
|
|
margin-top: 3px; // Fits button highlight during tabbing
|
2022-04-07 19:12:38 +00:00
|
|
|
|
|
|
|
&.stack-table-controls {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
align-items: start;
|
|
|
|
|
2023-07-12 22:45:49 +00:00
|
|
|
@media (min-width: $break-xs) {
|
2022-04-07 19:12:38 +00:00
|
|
|
flex-direction: row;
|
|
|
|
align-items: end;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2023-07-12 22:45:49 +00:00
|
|
|
@media (min-width: $break-md) {
|
2022-04-07 19:12:38 +00:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|
2023-08-09 17:35:28 +00:00
|
|
|
|
|
|
|
// filter and search bar height
|
|
|
|
.dropdown__select,
|
|
|
|
.input-with-icon {
|
|
|
|
height: 40px;
|
|
|
|
}
|
2022-04-07 19:12:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__header-left {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
2021-04-04 12:45:24 +00:00
|
|
|
justify-content: space-between;
|
2022-04-07 19:12:38 +00:00
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&.stack-table-controls {
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
align-items: start;
|
|
|
|
|
2023-07-12 22:45:49 +00:00
|
|
|
@media (min-width: $break-md) {
|
2022-04-07 19:12:38 +00:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
}
|
2023-08-09 17:35:28 +00:00
|
|
|
|
|
|
|
.Select-multi-value-wrapper {
|
|
|
|
height: 38px; // Fixes overlap with .Select outline
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.results-count {
|
|
|
|
height: 40px; // Match height of search/filters
|
2021-04-04 12:45:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__results-count {
|
2022-07-27 12:51:45 +00:00
|
|
|
display: flex;
|
2023-08-09 17:35:28 +00:00
|
|
|
align-items: center;
|
2021-04-04 12:45:24 +00:00
|
|
|
font-size: $x-small;
|
|
|
|
font-weight: $bold;
|
2021-04-09 19:04:11 +00:00
|
|
|
color: $core-fleet-black;
|
2021-04-04 12:45:24 +00:00
|
|
|
margin: 0;
|
2023-08-09 17:35:28 +00:00
|
|
|
height: 40px;
|
2021-04-04 12:45:24 +00:00
|
|
|
|
2022-07-27 12:51:45 +00:00
|
|
|
.count-error {
|
|
|
|
color: $ui-error;
|
|
|
|
}
|
|
|
|
.count-loading {
|
|
|
|
color: $ui-fleet-black-50;
|
|
|
|
}
|
2021-04-04 12:45:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__edit-columns-button:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: underline;
|
2021-04-09 19:04:11 +00:00
|
|
|
color: $core-vibrant-blue-over;
|
2021-04-04 12:45:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__search-input {
|
|
|
|
position: relative;
|
2021-04-09 19:04:11 +00:00
|
|
|
color: $core-fleet-blue;
|
2022-04-07 19:12:38 +00:00
|
|
|
width: 100%;
|
|
|
|
|
2023-08-09 17:35:28 +00:00
|
|
|
.input-with-icon {
|
|
|
|
width: 100%;
|
|
|
|
min-width: 250px;
|
2022-04-07 19:12:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&.stack-table-controls {
|
|
|
|
padding-bottom: $pad-large;
|
|
|
|
margin-left: 0;
|
|
|
|
|
2023-07-12 22:45:49 +00:00
|
|
|
@media (min-width: $break-xs) {
|
2022-04-07 19:12:38 +00:00
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2021-04-04 12:45:24 +00:00
|
|
|
|
|
|
|
.input-field {
|
|
|
|
padding-left: 42px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2021-06-07 01:56:30 +00:00
|
|
|
.fleeticon {
|
2021-04-04 12:45:24 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 12px;
|
2021-04-10 00:30:42 +00:00
|
|
|
font-size: $medium;
|
|
|
|
color: $core-fleet-black;
|
2021-04-04 12:45:24 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-15 17:01:52 +00:00
|
|
|
|
2022-04-07 19:12:38 +00:00
|
|
|
.table-container__search-input.wide-search {
|
2021-07-15 17:01:52 +00:00
|
|
|
margin-left: 0;
|
2023-08-09 17:35:28 +00:00
|
|
|
margin-bottom: $pad-small;
|
2022-04-07 19:12:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#search-tooltip {
|
2022-10-14 19:26:15 +00:00
|
|
|
width: 190px;
|
2022-04-07 19:12:38 +00:00
|
|
|
text-align: center;
|
2021-07-15 17:01:52 +00:00
|
|
|
}
|
2021-08-11 21:37:36 +00:00
|
|
|
|
|
|
|
&__empty-page {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__previous {
|
|
|
|
width: 350px;
|
|
|
|
|
|
|
|
.pagination__pager-wrap {
|
|
|
|
justify-content: left;
|
|
|
|
|
|
|
|
button:last-child {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-04-27 16:05:08 +00:00
|
|
|
|
|
|
|
.fleet-checkbox__tick {
|
|
|
|
top: 1px;
|
|
|
|
}
|
2023-01-25 16:10:15 +00:00
|
|
|
|
2023-01-27 19:16:03 +00:00
|
|
|
// Truncates clickable button cells (not compatible with buttons with icons)
|
|
|
|
tbody {
|
|
|
|
.children-wrapper {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: block;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2023-06-02 13:48:17 +00:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
vertical-align: sub;
|
|
|
|
}
|
2023-01-25 16:10:15 +00:00
|
|
|
}
|
2021-04-04 12:45:24 +00:00
|
|
|
}
|