annotate core/modules/system/css/components/system-status-counter.css @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents af1871eacc83
children
rev   line source
Chris@0 1 /**
Chris@0 2 * @file
Chris@0 3 * Styles for the system status counter component.
Chris@0 4 */
Chris@0 5
Chris@0 6 .system-status-counter__status-icon {
Chris@0 7 display: inline-block;
Chris@18 8 width: 25px;
Chris@0 9 height: 25px;
Chris@0 10 vertical-align: middle;
Chris@0 11 }
Chris@0 12 .system-status-counter__status-icon:before {
Chris@18 13 display: block;
Chris@0 14 width: 100%;
Chris@0 15 height: 100%;
Chris@18 16 content: "";
Chris@18 17 background-repeat: no-repeat;
Chris@18 18 background-position: center 2px;
Chris@18 19 background-size: 16px;
Chris@0 20 }
Chris@0 21
Chris@0 22 .system-status-counter__status-icon--error:before {
Chris@0 23 background-image: url(../../../../misc/icons/e32700/error.svg);
Chris@0 24 }
Chris@0 25 .system-status-counter__status-icon--warning:before {
Chris@0 26 background-image: url(../../../../misc/icons/e29700/warning.svg);
Chris@0 27 }
Chris@0 28 .system-status-counter__status-icon--checked:before {
Chris@0 29 background-image: url(../../../../misc/icons/73b355/check.svg);
Chris@0 30 }