annotate core/themes/stable/css/system/components/system-status-counter.css @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
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@5 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@5 13 display: block;
Chris@0 14 content: "";
Chris@5 15 background-repeat: no-repeat;
Chris@5 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 }