fleet/frontend/components/TableContainer/_styles.scss
2021-06-06 18:56:30 -07:00

62 lines
1.1 KiB
SCSS

.table-container {
&__header {
display: flex;
align-items: center;
justify-content: space-between;
}
&__results-count {
font-size: $x-small;
font-weight: $bold;
color: $core-fleet-black;
margin: 0;
}
&__table-controls {
display: flex;
justify-content: flex-end;
align-items: center;
}
&__edit-columns-button:hover {
cursor: pointer;
text-decoration: underline;
color: $core-vibrant-blue-over;
}
&__search-input {
position: relative;
color: $core-fleet-blue;
width: 344px;
margin-left: $pad-medium;
&::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;
}
.table-container__input-wrapper {
margin-bottom: 0;
}
.input-field {
padding-left: 42px;
width: 100%;
}
.fleeticon {
position: absolute;
top: 10px;
left: 12px;
font-size: $medium;
color: $core-fleet-black;
}
}
}