monitoring/CSS: Introduce state-table class

refs #5543
This commit is contained in:
Eric Lippmann 2015-11-04 17:43:30 +01:00
parent 62b302bedd
commit e67420e8bf
1 changed files with 17 additions and 0 deletions

View File

@ -42,6 +42,7 @@
color: @text-color-light; color: @text-color-light;
font-family: @font-family-fixed; font-family: @font-family-fixed;
font-size: @font-size-small; font-size: @font-size-small;
margin: 0;
} }
// Service description if in the service detail view // Service description if in the service detail view
@ -140,3 +141,19 @@
.state-meta { .state-meta {
font-size: @font-size-small; font-size: @font-size-small;
} }
.state-table {
border-collapse: separate;
border-spacing: 1px;
tr[href] {
&.active {
background-color: @gray-lighter;
}
&:hover {
background-color: @gray-lightest;
cursor: pointer;
}
}
}