system-admin--status-report.css 1.4 KB

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