You are here

system-status-counter.css in Drupal 10

Styles for the system status counter component.

File

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