system-admin--panel.css

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

System admin module: Panel styling.

File

core/themes/default_admin/css/components/system-admin--panel.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: Panel styling.
  10. */
  11. .panel {
  12. margin-block: 1em 3em;
  13. border-block-end: calc(1em / 16) solid var(--admin-color-border);
  14. /* Override specificity from .gin-layer-wrapper in layers.css. */
  15. &[class] {
  16. padding: 0;
  17. }
  18. }
  19. .panel__title {
  20. margin: var(--admin-space-s);
  21. padding: var(--admin-space-m) var(--admin-space-l);
  22. color: var(--admin-color-primary-active);
  23. border-radius: var(--admin-radius-m);
  24. background: var(--admin-color-bg-header);
  25. font-size: var(--admin-font-size-l);
  26. font-weight: var(--admin-font-weight-bold);
  27. line-height: calc(24em / 18);
  28. }
  29. .panel__description {
  30. padding-block: 1em;
  31. padding-inline: 1.5em;
  32. }
  33. .panel__content {
  34. padding: 0;
  35. }

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