2021-03-15 11:26:18 +00:00
|
|
|
.data-table-container {
|
2021-02-25 12:05:08 +00:00
|
|
|
position: relative;
|
2016-11-21 16:26:58 +00:00
|
|
|
|
2021-03-15 11:26:18 +00:00
|
|
|
.data-table {
|
2021-02-25 12:05:08 +00:00
|
|
|
&__wrapper {
|
2021-05-13 14:30:42 +00:00
|
|
|
position: relative;
|
2021-04-09 19:04:11 +00:00
|
|
|
border: solid 1px $ui-fleet-blue-15;
|
2021-02-25 12:05:08 +00:00
|
|
|
border-radius: 6px;
|
2021-04-10 00:30:42 +00:00
|
|
|
margin-top: $pad-small;
|
2021-02-25 12:05:08 +00:00
|
|
|
box-shadow: inset -8px 0 17px -10px #e8edf4;
|
|
|
|
|
}
|
2020-11-24 16:59:03 +00:00
|
|
|
|
2021-02-25 12:05:08 +00:00
|
|
|
&__table {
|
2021-05-13 14:30:42 +00:00
|
|
|
position: relative;
|
2021-02-25 12:05:08 +00:00
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: collapse;
|
2021-04-09 19:04:11 +00:00
|
|
|
color: $core-fleet-black;
|
2021-02-25 12:05:08 +00:00
|
|
|
font-size: $x-small;
|
2020-11-24 16:59:03 +00:00
|
|
|
}
|
|
|
|
|
|
2021-02-25 12:05:08 +00:00
|
|
|
tr {
|
2021-04-09 19:04:11 +00:00
|
|
|
border-bottom: 1px solid $ui-fleet-blue-15;
|
2016-11-21 16:26:58 +00:00
|
|
|
|
2021-02-25 12:05:08 +00:00
|
|
|
&:last-child {
|
|
|
|
|
border-bottom: 0;
|
|
|
|
|
}
|
2021-05-13 14:30:42 +00:00
|
|
|
|
|
|
|
|
// override styles of checkbox data cells
|
|
|
|
|
.form-field--checkbox {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
|
|
.kolide-checkbox__label {
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-21 16:26:58 +00:00
|
|
|
}
|
|
|
|
|
|
2021-02-25 12:05:08 +00:00
|
|
|
thead {
|
2021-04-09 19:04:11 +00:00
|
|
|
background-color: $ui-off-white;
|
|
|
|
|
color: $core-fleet-black;
|
2021-02-25 12:05:08 +00:00
|
|
|
text-align: left;
|
2021-04-09 19:04:11 +00:00
|
|
|
border-bottom: 1px solid $ui-fleet-blue-15;
|
2016-11-21 16:26:58 +00:00
|
|
|
|
2021-02-25 12:05:08 +00:00
|
|
|
th {
|
2021-04-10 00:30:42 +00:00
|
|
|
padding: $pad-medium 27px;
|
2021-02-25 12:05:08 +00:00
|
|
|
white-space: nowrap;
|
2021-04-09 19:04:11 +00:00
|
|
|
border-right: 1px solid $ui-fleet-blue-15;
|
2016-11-21 16:26:58 +00:00
|
|
|
|
2021-02-25 12:05:08 +00:00
|
|
|
&:last-child {
|
|
|
|
|
border-right: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-21 16:26:58 +00:00
|
|
|
|
2021-05-13 14:30:42 +00:00
|
|
|
.active-selection {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: -1px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
|
|
&__container {
|
|
|
|
|
padding: 0 27px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__inner {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
margin: 0 $pad-medium 0 0;
|
|
|
|
|
font-weight: $regular;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
font-weight: $bold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
button {
|
|
|
|
|
margin-right: $pad-medium;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 12:05:08 +00:00
|
|
|
tbody {
|
|
|
|
|
td {
|
2021-07-05 19:26:38 +00:00
|
|
|
padding: 0px 27px;
|
2021-02-25 12:05:08 +00:00
|
|
|
white-space: nowrap;
|
2021-07-05 19:26:38 +00:00
|
|
|
height: 40px;
|
2021-04-09 10:44:57 +00:00
|
|
|
|
|
|
|
|
// form-field wraps the dropdown menu
|
|
|
|
|
.form-field {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
.Select-control {
|
2021-04-09 19:04:11 +00:00
|
|
|
background-color: $core-white;
|
2021-04-09 10:44:57 +00:00
|
|
|
border: none;
|
|
|
|
|
}
|
2020-12-19 01:36:39 +00:00
|
|
|
}
|
2016-11-21 16:26:58 +00:00
|
|
|
}
|
|
|
|
|
|
2021-02-25 12:05:08 +00:00
|
|
|
&__hostname {
|
2021-04-09 19:04:11 +00:00
|
|
|
color: $core-fleet-black;
|
2021-02-25 12:05:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&__status {
|
2021-04-09 19:04:11 +00:00
|
|
|
color: $core-fleet-blue;
|
2021-02-25 12:05:08 +00:00
|
|
|
text-transform: capitalize;
|
|
|
|
|
|
2021-04-09 10:44:57 +00:00
|
|
|
&:before {
|
|
|
|
|
border-radius: 100%;
|
2021-04-14 16:52:15 +00:00
|
|
|
content: " ";
|
2021-04-09 10:44:57 +00:00
|
|
|
display: inline-block;
|
|
|
|
|
height: 8px;
|
2021-04-10 00:30:42 +00:00
|
|
|
margin-right: $pad-small;
|
2021-04-09 10:44:57 +00:00
|
|
|
width: 8px;
|
2021-06-02 19:53:20 +00:00
|
|
|
margin-bottom: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--online:before {
|
|
|
|
|
background-color: $ui-success;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&--offline:before {
|
|
|
|
|
background-color: $ui-offline;
|
2020-12-19 01:36:39 +00:00
|
|
|
}
|
2016-11-21 16:26:58 +00:00
|
|
|
}
|
2021-02-25 17:13:13 +00:00
|
|
|
|
|
|
|
|
.loading-overlay {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
2016-11-21 16:26:58 +00:00
|
|
|
}
|
|
|
|
|
}
|