annotate core/themes/stable/css/system/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 content: "";
Chris@18 15 background-repeat: no-repeat;
Chris@18 16 background-position: center 2px;
Chris@0 17 background-size: 20px;
Chris@0 18 }
Chris@0 19
Chris@0 20 .system-status-counter__status-icon--error:before {
Chris@0 21 background-image: url(../../../images/core/icons/e32700/error.svg);
Chris@0 22 }
Chris@0 23 .system-status-counter__status-icon--warning:before {
Chris@0 24 background-image: url(../../../images/core/icons/e29700/warning.svg);
Chris@0 25 }
Chris@0 26 .system-status-counter__status-icon--checked:before {
Chris@0 27 background-image: url(../../../images/core/icons/73b355/check.svg);
Chris@0 28 }