2016-12-21 17:07:13 +00:00
|
|
|
.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;
|
2016-12-21 17:07:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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%;
|
2016-12-21 17:07:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
background-color: $white;
|
2017-01-09 23:13:52 +00:00
|
|
|
height: 550px;
|
|
|
|
min-width: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
display: inline-block;
|
2016-12-21 17:07:13 +00:00
|
|
|
|
|
|
|
td {
|
|
|
|
padding: $pad-xsmall;
|
2017-01-09 23:13:52 +00:00
|
|
|
min-width: 125px;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
&:nth-child(even) {
|
|
|
|
background-color: $bg-light;
|
|
|
|
}
|
2016-12-21 17:07:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|