2021-04-04 12:45:24 +00:00
|
|
|
.table-container {
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__results-count {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__table-controls {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__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;
|
2021-04-04 12:45:24 +00:00
|
|
|
width: 344px;
|
|
|
|
margin-left: $pad-medium;
|
|
|
|
|
2021-05-27 23:39:35 +00:00
|
|
|
&::before {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
padding: 5px 0 0 0; // centers spin
|
|
|
|
content: url(../assets/images/icon-search-fleet-black-16x16@2x.png);
|
|
|
|
transform: scale(0.5);
|
|
|
|
height: 20px;
|
|
|
|
top: 3px;
|
|
|
|
left: 8px;
|
|
|
|
}
|
|
|
|
|
2021-04-04 12:45:24 +00:00
|
|
|
.table-container__input-wrapper {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
|
|
|
|
.wide-search {
|
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
padding-bottom: $pad-medium;
|
|
|
|
}
|
2021-04-04 12:45:24 +00:00
|
|
|
}
|