open-consul/ui-v2/app/styles/components/table.scss

39 lines
630 B
SCSS

@import './icons/index';
@import './table/index';
td.folder {
@extend %with-folder;
}
td dt.passing {
@extend %with-passing;
}
td dt.warning {
@extend %with-warning;
}
td dt.critical {
@extend %with-critical;
}
td span.zero {
@extend %with-no-healthchecks;
display: block;
text-indent: 20px;
color: $ui-gray-400;
}
table:not(.sessions) tr {
cursor: pointer;
}
table:not(.sessions) td:first-child {
padding: 0;
}
td dt.passing,
td dt.passing + dd {
color: $ui-color-success;
}
td dt.warning,
td dt.warning + dd {
color: $ui-color-alert;
}
td dt.critical,
td dt.critical + dd {
color: $ui-color-failure;
}