system-status-report-general-info.pcss.css

Same filename in this branch
  1. main core/themes/claro/css/components/system-status-report-general-info.pcss.css
  2. main core/themes/admin/css/components/system-status-report-general-info.pcss.css
Same filename and directory in other branches
  1. 10 core/themes/claro/css/components/system-status-report-general-info.pcss.css
  2. 11.x core/themes/claro/css/components/system-status-report-general-info.pcss.css
  3. 9 core/themes/claro/css/components/system-status-report-general-info.pcss.css
  4. 8.9.x core/themes/claro/css/components/system-status-report-general-info.pcss.css
  5. 11.x core/themes/admin/css/components/system-status-report-general-info.pcss.css
  6. 11.x core/themes/default_admin/css/components/system-status-report-general-info.pcss.css

Claro styles for the System Status general info.

File

core/themes/default_admin/css/components/system-status-report-general-info.pcss.css

View source
  1. /**
  2. * @file
  3. * Claro styles for the System Status general info.
  4. */
  5. .system-status-general-info {
  6. padding: var(--gin-spacing-m);
  7. h3 + .divider,
  8. .divider:last-child {
  9. display: none;
  10. }
  11. @media screen and (max-width: 48em) {
  12. margin-block-start: 25px;
  13. border-block-start: 0;
  14. }
  15. }
  16. .system-status-general-info__header {
  17. padding: var(--gin-spacing-m) var(--gin-spacing-l);
  18. text-transform: none;
  19. color: var(--gin-color-primary-active);
  20. border: 0 none;
  21. border-radius: var(--gin-border-m);
  22. background: var(--gin-bg-header);
  23. font-size: var(--gin-font-size-l);
  24. font-weight: var(--gin-font-weight-bold);
  25. margin-block: 0 var(--gin-spacing-xs);
  26. margin-inline: 0;
  27. @media screen and (max-width: 48em) {
  28. display: none;
  29. }
  30. }
  31. .system-status-general-info__item {
  32. display: block;
  33. overflow-x: auto;
  34. box-sizing: border-box;
  35. margin-block-end: var(--space-l);
  36. padding: var(--gin-spacing-m);
  37. border: 0 none;
  38. background: transparent;
  39. box-shadow: none;
  40. @media screen and (min-width: 48em) {
  41. width: 32%;
  42. &:last-of-type {
  43. margin-inline-start: 2%;
  44. }
  45. }
  46. }
  47. .system-status-general-info__item-icon {
  48. display: inline-block;
  49. width: 42px;
  50. height: 42px;
  51. vertical-align: top;
  52. &::before {
  53. display: block;
  54. width: 100%;
  55. height: 100%;
  56. content: "";
  57. border-radius: 42px;
  58. background-color: var(--gin-color-primary);
  59. mask-repeat: no-repeat;
  60. mask-position: center center;
  61. mask-size: 32px 32px;
  62. }
  63. }
  64. .system-status-general-info__item-icon--drupal::before {
  65. mask-image: var(--admin-icon-drupal);
  66. }
  67. .system-status-general-info__item-icon--clock::before {
  68. mask-image: var(--admin-icon-clock);
  69. }
  70. .system-status-general-info__item-icon--server::before {
  71. mask-image: var(--admin-icon-server);
  72. }
  73. .system-status-general-info__item-icon--php::before {
  74. mask-image: var(--admin-icon-php);
  75. }
  76. .system-status-general-info__item-icon--database::before {
  77. mask-image: var(--admin-icon-database);
  78. }
  79. .system-status-general-info__item-details {
  80. position: relative;
  81. display: inline-block;
  82. box-sizing: border-box;
  83. width: calc(100% - 60px);
  84. padding-inline-start: 10px;
  85. font-size: var(--font-size-s);
  86. }
  87. .system-status-general-info__item-title {
  88. margin: 0 0 8px;
  89. color: var(--gin-color-title);
  90. font-size: var(--gin-font-size);
  91. font-weight: var(--gin-font-weight-semibold);
  92. }
  93. .system-status-general-info__sub-item-title {
  94. margin: 14px 0 0;
  95. font-size: 14px;
  96. font-weight: var(--gin-font-weight-bold);
  97. &::after {
  98. content: ":\00a0";
  99. }
  100. }
  101. .system-status-general-info__sub-item__title {
  102. font-weight: bold;
  103. }
  104. .system-status-general-info__sub-item__value {
  105. display: block;
  106. }
  107. .system-status-general-info__run-cron {
  108. margin: 1em 0 0;
  109. &.button {
  110. margin: 0;
  111. }
  112. }
  113. .system-status-general-info__items {
  114. margin-block: var(--gin-spacing-m) 0;
  115. margin-inline: 0;
  116. border-block-end: 0 none;
  117. @media screen and (min-width: 48em) {
  118. display: flex;
  119. flex-wrap: wrap;
  120. justify-content: space-between;
  121. &::after {
  122. flex: auto;
  123. content: "";
  124. }
  125. }
  126. }

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