CSS: Add missing colors unreachable and pending
This commit is contained in:
parent
7033c41503
commit
db82c93c7e
|
@ -40,4 +40,6 @@
|
|||
@colorUnknownHandled: #ee99ff;
|
||||
@colorPending: #77aaff;
|
||||
@colorInvalid: #999;
|
||||
@colorUnreachable: #dd66ff;
|
||||
@colorUnreachableHandled: #ee99ff;
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ tr.state td.state {
|
|||
-moz-border-radius: 0.5em 0 0 0.5em;
|
||||
}
|
||||
|
||||
tr.state.handled td.state, tr.state.ok td.state, tr.state.up td.state {
|
||||
tr.state.handled td.state, tr.state.ok td.state, tr.state.up td.state, tr.state.pending td.state {
|
||||
border-left-style: solid;
|
||||
border-left-width: 1.5em;
|
||||
padding-left: 0.5em;
|
||||
|
@ -159,6 +159,14 @@ tr.state.handled td.state {
|
|||
background-color: transparent;
|
||||
}
|
||||
|
||||
tr.state.unreachable td.state {
|
||||
background-color: @colorUnreachable;
|
||||
}
|
||||
|
||||
tr.state.unreachable.handled td.state {
|
||||
border-left-color: @colorUnreachableHandled;
|
||||
}
|
||||
|
||||
/* END of special tables and states */
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue