Clearer error markers
This commit is contained in:
parent
bb5f518041
commit
8786ef177c
2 changed files with 44 additions and 0 deletions
|
@ -310,6 +310,24 @@ body.showTimeline #toggleTimeline {
|
||||||
border-color: green; }
|
border-color: green; }
|
||||||
#timeline .vis-text, #timeline .vis-labelset .vis-label {
|
#timeline .vis-text, #timeline .vis-labelset .vis-label {
|
||||||
color: #999; }
|
color: #999; }
|
||||||
|
#timeline .vis-dot.WARNING {
|
||||||
|
width: 10px;
|
||||||
|
height: 10px;
|
||||||
|
background: yellow;
|
||||||
|
border-color: yellow;
|
||||||
|
border-radius: 15px; }
|
||||||
|
#timeline .vis-dot.ERROR {
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background: orange;
|
||||||
|
border-color: orangered;
|
||||||
|
border-radius: 15px; }
|
||||||
|
#timeline .vis-dot.CRITICAL {
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
background: red;
|
||||||
|
border-color: darkred;
|
||||||
|
border-radius: 15px; }
|
||||||
|
|
||||||
#logbook {
|
#logbook {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
|
|
|
@ -501,6 +501,32 @@ img.icon{
|
||||||
color: #999;
|
color: #999;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vis-dot{
|
||||||
|
&.INFO{
|
||||||
|
}
|
||||||
|
&.WARNING{
|
||||||
|
width: 10px;
|
||||||
|
height:10px;
|
||||||
|
background:yellow;
|
||||||
|
border-color:yellow;
|
||||||
|
border-radius:15px;
|
||||||
|
}
|
||||||
|
&.ERROR{
|
||||||
|
width: 20px;
|
||||||
|
height:20px;
|
||||||
|
background:orange;
|
||||||
|
border-color:orangered;
|
||||||
|
border-radius:15px;
|
||||||
|
}
|
||||||
|
&.CRITICAL{
|
||||||
|
width: 30px;
|
||||||
|
height:30px;
|
||||||
|
background:red;
|
||||||
|
border-color:darkred;
|
||||||
|
border-radius:15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#logbook{
|
#logbook{
|
||||||
|
|
Loading…
Reference in a new issue