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

66 lines
1.0 KiB
SCSS
Raw Normal View History

.query-results-table {
background-color: $white;
margin-top: 29px;
padding: $pad-base;
&__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;
}
&__table {
border-collapse: collapse;
color: $text-medium;
font-size: $small;
width: 100%;
2017-01-09 23:13:52 +00:00
table-layout: fixed;
}
thead {
background-color: $bg-medium;
color: $text-ultradark;
text-align: left;
th {
padding: $pad-small $pad-xsmall;
2017-01-09 23:13:52 +00:00
width: 125px;
}
.input-field {
width: 100%;
}
}
tbody {
background-color: $white;
2017-01-09 23:13:52 +00:00
height: 550px;
min-width: 100%;
overflow: auto;
display: inline-block;
td {
padding: $pad-xsmall;
2017-01-09 23:13:52 +00:00
min-width: 125px;
}
tr {
&:nth-child(even) {
background-color: $bg-light;
}
}
}
}