system-status-counter.css 761 B

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