tech: react mobx progress

This commit is contained in:
Torkel Ödegaard
2017-12-29 17:13:58 +01:00
parent 4c1a67c34e
commit 5a571f4784
3 changed files with 7 additions and 9 deletions

View File

@@ -29,7 +29,6 @@
}
// Alert List
.alert-list {
display: flex;
flex-direction: row;
@@ -94,7 +93,7 @@
.panel-has-alert {
.panel-alert-icon:before {
content: "\e611";
content: '\e611';
position: relative;
top: 1px;
left: -3px;
@@ -108,12 +107,12 @@
.panel-alert-icon:before {
color: $critical;
content: "\e610";
content: '\e610';
}
}
&--alerting::after {
content: "";
content: '';
position: absolute;
top: 0;
z-index: -1;
@@ -121,14 +120,13 @@
height: 100%;
box-shadow: 0 0 10px rgba($critical, 1);
opacity: 0;
animation: alerting-panel 1.6s cubic-bezier(1, 0.1, 0.73, 1) 0s infinite
alternate;
animation: alerting-panel 1.6s cubic-bezier(1, 0.1, 0.73, 1) 0s infinite alternate;
}
&--ok {
.panel-alert-icon:before {
color: $online;
content: "\e611";
content: '\e611';
}
}
}