system-admin--status-report.css

Same filename in other branches
  1. 8.9.x core/themes/claro/css/components/system-admin--status-report.css

System admin module: Status report.

Main status report theming, status report info styles, status report layout and counter styles are provided by the system/base library, see

File

core/themes/claro/css/components/system-admin--status-report.css

View source
  1. /*
  2. * DO NOT EDIT THIS FILE.
  3. * See the following change record for more information,
  4. * https://www.drupal.org/node/3084859
  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 {
  19. position: relative;
  20. padding-top: 1rem;
  21. }
  22. @media screen and (min-width: 38em) {
  23. .system-status-report {
  24. padding-top: 1.5rem;
  25. }
  26. }
  27. .system-status-report__status-title {
  28. position: relative;
  29. box-sizing: border-box;
  30. width: 100%;
  31. padding: 0.625rem 0.375rem 0.625rem 2.5rem; /* LTR */
  32. vertical-align: top;
  33. background-color: transparent;
  34. font-weight: normal;
  35. }
  36. [dir="rtl"] .system-status-report__status-title {
  37. padding: 0.625rem 2.5rem 0.625rem 0.375rem;
  38. }
  39. .system-status-report__status-icon:before {
  40. position: absolute;
  41. top: 0.75rem;
  42. left: 0.75rem; /* LTR */
  43. display: block;
  44. width: 1rem;
  45. height: 1rem;
  46. content: "";
  47. background-repeat: no-repeat;
  48. }
  49. [dir="rtl"] .system-status-report__status-icon:before {
  50. right: 0.75rem;
  51. left: auto;
  52. }
  53. .system-status-report__status-icon--error:before {
  54. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23dc2323'%3e%3cpath d='M8.002 1c-3.868 0-7.002 3.134-7.002 7s3.134 7 7.002 7c3.865 0 7-3.134 7-7s-3.135-7-7-7zm4.025 9.284c.062.063.1.149.1.239 0 .091-.037.177-.1.24l-1.262 1.262c-.064.062-.15.1-.24.1s-.176-.036-.24-.1l-2.283-2.283-2.286 2.283c-.064.062-.15.1-.24.1s-.176-.036-.24-.1l-1.261-1.262c-.063-.062-.1-.148-.1-.24 0-.088.036-.176.1-.238l2.283-2.285-2.283-2.284c-.063-.064-.1-.15-.1-.24s.036-.176.1-.24l1.262-1.262c.063-.063.149-.1.24-.1.089 0 .176.036.24.1l2.285 2.284 2.283-2.284c.064-.063.15-.1.24-.1s.176.036.24.1l1.262 1.262c.062.063.1.149.1.24 0 .089-.037.176-.1.24l-2.283 2.284 2.283 2.284z'/%3e%3c/svg%3e");
  55. }
  56. .system-status-report__status-icon--warning:before {
  57. background-image: url("data:image/svg+xml,%3csvg fill='%23e29700' height='16' width='16' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m14.66 12.316-5.316-10.633c-.738-1.476-1.946-1.476-2.685 0l-5.317 10.633c-.738 1.477.008 2.684 1.658 2.684h10.002c1.65 0 2.396-1.207 1.658-2.684zm-7.66-8.316h2.002v5h-2.002zm2.252 8.615c0 .344-.281.625-.625.625h-1.25c-.345 0-.626-.281-.626-.625v-1.239c0-.344.281-.625.626-.625h1.25c.344 0 .625.281.625.625z'/%3e%3c/svg%3e");
  58. }
  59. .system-status-report__entry__value {
  60. padding: 1em 0.5em;
  61. }
  62. .cron-description__run-cron {
  63. display: block;
  64. }
  65. .claro-details__wrapper.claro-details__wrapper--system-status-report {
  66. margin: 0;
  67. }
  68. .system-status-report__row {
  69. display: flex;
  70. border-bottom: 1px solid #d3d4d9;
  71. }
  72. .system-status-report__row:last-of-type {
  73. border-bottom: none;
  74. }

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.