system-status-report.css
Same filename in this branch
Same filename and directory in other branches
- 10 core/themes/claro/css/components/system-status-report.css
- 11.x core/themes/claro/css/components/system-status-report.css
- 9 core/themes/seven/css/components/system-status-report.css
- 9 core/themes/claro/css/components/system-status-report.css
- 8.9.x core/themes/seven/css/components/system-status-report.css
- 8.9.x core/themes/claro/css/components/system-status-report.css
- 11.x core/themes/admin/css/components/system-status-report.css
- 11.x core/themes/default_admin/css/components/system-status-report.css
Claro styles for the System Status Report.
File
-
core/
themes/ default_admin/ css/ components/ system-status-report.css
View source
- /*
- * DO NOT EDIT THIS FILE.
- * See the following change record for more information,
- * https://www.drupal.org/node/3084859
- * @preserve
- */
-
- /**
- * @file
- * Claro styles for the System Status Report.
- */
-
- :root {
- --system-admin-status-report-border-color: var(--color-gray-200);
- }
-
- .system-status-report {
- position: relative;
- margin-block-start: var(--gin-spacing-l);
- padding: var(--gin-spacing-m);
-
- h3 + .divider,
- .divider:last-child {
- display: none;
- }
-
- @media screen and (max-width: 48em) {
- word-wrap: break-word;
- }
- }
-
- .system-status-report__status-title {
- position: relative;
- box-sizing: border-box;
- width: 100%;
- vertical-align: top;
- color: var(--gin-color-title);
- background-color: transparent;
- font-weight: var(--gin-font-weight-semibold);
- padding-block: 1em;
- padding-inline: 3em 1em;
-
- .color-checked &::before,
- #checked + .gin-details__wrapper--system-status-report &::before {
- position: absolute;
- display: inline-block;
- width: 1.5rem;
- height: 1.5rem;
- margin-inline-end: 0.625rem;
- content: "";
- background-color: var(--gin-color-green);
- background-image: none;
- mask-image: var(--admin-icon-status);
- mask-repeat: no-repeat;
- mask-position: center center;
- mask-size: 1.25rem 1.25rem;
- inset-block-start: 1em;
- inset-inline-start: 0.625rem;
- }
-
- @media screen and (min-width: 48em) {
- width: 18rem;
- cursor: default;
-
- &:hover,
- &:focus {
- -webkit-text-decoration: none;
- text-decoration: none;
- }
-
- html.js &::-webkit-details-marker {
- display: none;
- }
- }
- }
-
- .system-status-report__status-icon::before {
- position: absolute;
- inset-block-start: 1em;
- inset-inline-start: 0.625rem;
- display: inline-block;
- width: 1.5rem;
- height: 1.5rem;
- margin-inline-end: 0.625rem;
- content: "";
- vertical-align: top;
- mask-repeat: no-repeat;
- mask-position: center center;
- mask-size: 1.25rem 1.25rem;
-
- @media (forced-colors: active) {
- background-color: canvastext;
- }
- }
-
- .system-status-report__status-icon--checked {
- &::before,
- .details-title::before {
- background-color: var(--gin-color-green);
- mask-image: var(--admin-icon-status);
- }
- }
-
- .system-status-report__status-icon--error {
- &::before,
- .details-title::before {
- background-color: var(--gin-color-danger);
- mask-image: var(--admin-icon-error);
- }
- }
-
- .system-status-report__status-icon--warning {
- &::before,
- .details-title::before {
- background-color: var(--gin-color-warning);
- mask-image: var(--admin-icon-warning);
- }
- }
-
- .cron-description__run-cron {
- display: block;
- margin-block-start: var(--gin-spacing-m);
- }
-
- .system-status-report__row {
- display: flex;
- border-bottom: 1px solid var(--system-admin-status-report-border-color);
- border-block-end: 1px solid var(--gin-border-color);
-
- &:last-of-type {
- border-bottom: none;
- }
- }
-
- .system-status-report__requirements-group {
- padding: var(--gin-spacing-m);
-
- h3 {
- margin-block-start: 0;
- }
-
- h3 + .divider,
- .divider:last-child {
- display: none;
- }
-
- & > h3 {
- padding: var(--gin-spacing-m) var(--gin-spacing-l);
- text-transform: none;
- color: var(--gin-color-primary-active);
- border: 0 none;
- border-radius: var(--gin-border-m);
- background: var(--gin-bg-header);
- font-size: var(--gin-font-size-l);
- font-weight: var(--gin-font-weight-bold);
- margin-block: 0 var(--gin-spacing-m);
- margin-inline: 0;
- }
- }
-
- .system-status-report__entry {
- overflow: auto;
- width: 100%;
- margin: 0;
- border: 0;
- border-radius: 0;
- background-color: transparent;
-
- & h3 {
- margin-block: 0.625rem;
- font-size: 1.231em;
- }
-
- @media screen and (min-width: 48em) {
- &::after {
- display: table;
- clear: both;
- content: "";
- }
- }
- }
-
- .system-status-report__entry--error {
- background-color: transparent;
- }
-
- .system-status-report__entry--warning {
- background-color: transparent;
- }
-
- .system-status-report__entry__value {
- box-sizing: border-box;
- padding-block: 0 1em;
- padding-inline: 3em 1em;
- font-size: var(--font-size-s);
-
- @media screen and (min-width: 48em) {
- display: block;
- width: calc(100% - 23em);
- padding-block-start: 1em;
- padding-inline-start: 0;
- }
- }
-
- .gin-details__summary--system-status-report {
- background: transparent;
- }
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.