Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / themes / stable / css / system / components / system-status-counter.css
1 /**
2  * @file
3  * Styles for the system status counter component.
4  */
5
6 .system-status-counter__status-icon {
7   display: inline-block;
8   height: 25px;
9   width: 25px;
10   vertical-align: middle;
11 }
12 .system-status-counter__status-icon:before {
13   content: "";
14   background-size: 20px;
15   background-position: center 2px;
16   background-repeat: no-repeat;
17   display: block;
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 }