1/**
2 * @file
3 * Styles for the system status counter component.
4 */
5
6.system-status-counter__status-icon {
7  display: inline-block;
8  width: 25px;
9  height: 25px;
10  vertical-align: middle;
11}
12.system-status-counter__status-icon:before {
13  display: block;
14  content: "";
15  background-repeat: no-repeat;
16  background-position: center 2px;
17  background-size: 20px;
18}
19
20.system-status-counter__status-icon--error:before {
21  background-image: url(../../../images/core/icons/e32700/error.svg);
22}
23.system-status-counter__status-icon--warning:before {
24  background-image: url(../../../images/core/icons/e29700/warning.svg);
25}
26.system-status-counter__status-icon--checked:before {
27  background-image: url(../../../images/core/icons/73b355/check.svg);
28}
29