fleet/frontend/components/queries/QueryResultsTable/_styles.scss

75 lines
1.1 KiB
SCSS

.query-results-table {
background-color: $white;
padding: $pad-base;
max-width: 100%;
box-sizing: border-box;
&__export-btn {
float: right;
}
&__filter-icon {
&--is-active {
color: $brand;
}
}
&__progress-details {
display: inline-block;
width: 378px;
}
&__table-wrapper {
border: solid 1px $accent-dark;
border-radius: 3px;
box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, 0.12);
overflow: scroll;
margin-top: 20px;
max-height: 550px;
}
&__table {
border-collapse: collapse;
color: $text-medium;
font-size: $small;
width: 100%;
}
thead {
background-color: $bg-medium;
color: $text-ultradark;
text-align: left;
th {
padding: $pad-small $pad-xsmall;
min-width: 125px;
span {
white-space: nowrap;
.kolidecon {
margin-right: 5px;
}
}
}
.input-field {
width: 100%;
}
}
tbody {
background-color: $white;
td {
padding: $pad-xsmall;
}
tr {
&:nth-child(even) {
background-color: $bg-light;
}
}
}
}