2016-08-16 09:50:36 -05:00
|
|
|
.alert-state-paused,
|
|
|
|
.alert-state-pending {
|
|
|
|
color: $text-muted;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
2016-08-16 09:50:36 -05:00
|
|
|
.alert-state-ok {
|
|
|
|
color: $online;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-state-warning {
|
2016-08-16 09:50:36 -05:00
|
|
|
color: $warn;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-state-critical {
|
2016-08-16 09:50:36 -05:00
|
|
|
color: $critical;
|
2016-02-15 08:27:41 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.alert-notify-emails {
|
|
|
|
width: 400px;
|
|
|
|
border-right: 1px solid $black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert-notify-emails .bootstrap-tagsinput {
|
|
|
|
width: 394px; // offset for 8px left padding and border width
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert-notify-emails .bootstrap-tagsinput input {
|
|
|
|
border: 0;
|
|
|
|
}
|
2016-08-16 09:50:36 -05:00
|
|
|
|
|
|
|
// Alert List
|
|
|
|
|
|
|
|
.alert-list-item-state {
|
|
|
|
font-weight: bold;
|
|
|
|
.icon-gf, .fa {
|
|
|
|
font-size: 120%;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
}
|
2016-09-30 10:37:47 -05:00
|
|
|
|
|
|
|
.panel-has-alert {
|
|
|
|
.panel-alert-icon:before {
|
|
|
|
content: "\e611";
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
left: -3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-alert-state {
|
|
|
|
&--alerting {
|
2016-11-08 07:02:45 -06:00
|
|
|
animation: alerting-panel 1.6s cubic-bezier(1,.1,.73,1) 0s infinite alternate;
|
|
|
|
box-shadow: 0 0 10px rgba($critical,0.5);
|
2016-10-01 09:31:57 -05:00
|
|
|
opacity: 1;
|
2016-09-30 10:37:47 -05:00
|
|
|
|
|
|
|
.panel-alert-icon:before {
|
|
|
|
color: $critical;
|
|
|
|
content: "\e610";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--ok {
|
|
|
|
.panel-alert-icon:before {
|
|
|
|
color: $online;
|
2016-09-30 10:39:05 -05:00
|
|
|
content: "\e611";
|
2016-09-30 10:37:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-01 09:31:57 -05:00
|
|
|
@keyframes alerting-panel {
|
|
|
|
100% {
|
2016-11-08 07:02:45 -06:00
|
|
|
box-shadow: 0 0 15px $critical;
|
2016-10-01 09:31:57 -05:00
|
|
|
}
|
|
|
|
}
|