problems: show status icon

This commit is contained in:
Alexander Zobnin
2018-12-28 19:24:57 +03:00
parent f31f9757ba
commit eb2ba5ae07
8 changed files with 124 additions and 4 deletions

View File

@@ -66,6 +66,7 @@
.rt-tr {
.rt-td {
border: 0;
transition: 0s;
}
// &:hover {
@@ -171,6 +172,26 @@
&.last-change {
text-align: left;
}
&.problem-status-icon {
padding: 0;
margin-top: 0;
font-size: 1.5em;
i {
// margin: 0 1.2em;
width: 100%;
padding-left: 0.6em;
text-align: center;
&.zbx-problem {
color: $problem-icon-problem-color;
}
&.zbx-ok {
color: $problem-icon-ok-color;
}
}
}
}
.comments-icon {

View File

@@ -29,4 +29,7 @@ $problem-event-core: #000000;
$problem-event-ok-color: #38bd71;
$problem-event-problem-color: #d70000;
$problem-icon-problem-color: rgb(163, 16, 0);
$problem-icon-ok-color: #629e51;
$problem-container-shadow: rgba($gray-2, 0.2)

View File

@@ -29,4 +29,7 @@ $problem-event-core: $gray-6;
$problem-event-ok-color: #2baf63;
$problem-event-problem-color: #d70000;
$problem-icon-problem-color: rgb(163, 16, 0);
$problem-icon-ok-color: #629e51;
$problem-container-shadow: rgba($gray-2, 0.5)