system-admin--status-report.pcss.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * @file
  3. * System admin module: Status report.
  4. *
  5. * Main status report theming, status report info styles, status report layout
  6. * and counter styles are provided by the system/base library, see
  7. * - system-status-report.css
  8. * - system-status-report-general-info.css
  9. * - system-status-counter.css
  10. * - system-status-report-counters.css
  11. */
  12. .system-status-report__status-title {
  13. position: relative;
  14. box-sizing: border-box;
  15. width: 100%;
  16. padding: 10px 6px 10px 40px; /* LTR */
  17. vertical-align: top;
  18. background-color: transparent;
  19. font-weight: normal;
  20. }
  21. [dir="rtl"] .system-status-report__status-title {
  22. padding: 10px 40px 10px 6px;
  23. }
  24. .system-status-report__status-icon:before {
  25. position: absolute;
  26. top: 12px;
  27. left: 12px; /* LTR */
  28. display: block;
  29. width: 16px;
  30. height: 16px;
  31. content: "";
  32. background-repeat: no-repeat;
  33. }
  34. [dir="rtl"] .system-status-report__status-icon:before {
  35. right: 12px;
  36. left: auto;
  37. }
  38. .system-status-report__status-icon--error:before {
  39. background-image: url(../../images/core/e32700/error.svg);
  40. }
  41. .system-status-report__status-icon--warning:before {
  42. background-image: url(../../images/core/e29700/warning.svg);
  43. }
  44. .system-status-report__entry__value {
  45. padding: 1em 0.5em;
  46. }
  47. .cron-description__run-cron {
  48. display: block;
  49. }