2016-02-08 15:41:00 +01:00
|
|
|
/*! Icinga Web 2 | (c) 2015 Icinga Development Team | GPLv2+ */
|
2015-09-30 22:24:26 +02:00
|
|
|
|
2016-01-22 12:59:29 +01:00
|
|
|
.refresh-container-control > i:before {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2015-09-30 22:24:26 +02:00
|
|
|
a.spinner.active > i,
|
2015-10-01 01:59:56 +02:00
|
|
|
button.spinner.active > i,
|
|
|
|
i.spinner.active {
|
2015-09-30 22:24:26 +02:00
|
|
|
&:before {
|
2016-01-22 12:59:29 +01:00
|
|
|
.animate(spin 2s infinite linear);
|
|
|
|
|
2015-09-30 22:24:26 +02:00
|
|
|
// icon-spin6
|
|
|
|
content: '\e874';
|
|
|
|
}
|
2021-04-22 10:21:22 +02:00
|
|
|
|
|
|
|
&.fa:before {
|
|
|
|
// fa spinner
|
|
|
|
content: '\f110';
|
|
|
|
}
|
2015-09-30 22:24:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.spinner {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
i {
|
2016-02-16 17:21:07 +01:00
|
|
|
visibility: hidden;
|
2015-09-30 22:24:26 +02:00
|
|
|
|
|
|
|
&.active {
|
2016-02-16 17:21:07 +01:00
|
|
|
visibility: visible;
|
2015-09-30 22:24:26 +02:00
|
|
|
|
|
|
|
&:before {
|
|
|
|
.animate(spin 2s infinite linear);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
margin: 0; // Disables wobbling
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|