messages.css

Styling for messages in the off-canvas dialog.

@internal

File

core/misc/dialog/off-canvas/css/messages.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. * Styling for messages in the off-canvas dialog.
  10. *
  11. * @internal
  12. */
  13. #drupal-off-canvas-wrapper {
  14. --off-canvas-messages-icon-size: 1.25rem;
  15. --off-canvas-messages-background-color: #f3faef;
  16. --off-canvas-messages-text-color-status: #325e1c;
  17. --off-canvas-messages-text-color-warning: #734c00;
  18. --off-canvas-messages-text-color-error: #a51b00;
  19. --off-canvas-messages-icon-status: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2373b355'%3e%3cpath d='M6.464 13.676c-.194.194-.513.194-.707 0l-4.96-4.955c-.194-.193-.194-.513 0-.707l1.405-1.407c.194-.195.512-.195.707 0l2.849 2.848c.194.193.513.193.707 0l6.629-6.626c.195-.194.514-.194.707 0l1.404 1.404c.193.194.193.513 0 .707l-8.741 8.736z'/%3e%3c/svg%3e");
  20. --off-canvas-messages-icon-warning: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e29700'%3e%3cpath d='M14.66 12.316l-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.002v-5zm2.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.625v1.239z'/%3e%3c/svg%3e");
  21. --off-canvas-messages-icon-error: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e32700'%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");
  22. & .messages {
  23. position: relative; /* Anchor ::before pseudo-element. */
  24. margin-top: calc(2 * var(--off-canvas-vertical-spacing-unit));
  25. padding: calc(2 * var(--off-canvas-vertical-spacing-unit));
  26. padding-inline-start: calc(2 * var(--off-canvas-messages-icon-size)); /* Room for icon. */
  27. border: solid 1px transparent;
  28. background-color: var(--off-canvas-messages-background-color);
  29. /* Icon. */
  30. &::before {
  31. position: absolute;
  32. top: 50%;
  33. display: block;
  34. width: var(--off-canvas-messages-icon-size);
  35. height: var(--off-canvas-messages-icon-size);
  36. content: "";
  37. transform: translateY(-50%);
  38. background-repeat: no-repeat;
  39. background-size: contain;
  40. inset-inline-start: 0.625rem;
  41. @media (forced-colors: active) {
  42. background: canvastext;
  43. mask-repeat: no-repeat;
  44. mask-size: contain;
  45. }
  46. }
  47. }
  48. & h2 {
  49. margin-top: 0;
  50. }
  51. /*
  52. * Some themes (Olivero) insert SVG icon. We use a background icon, so we
  53. * need to remove this.
  54. */
  55. & .messages__icon,
  56. & .messages__close {
  57. display: none;
  58. }
  59. & .messages__list {
  60. margin: 0;
  61. padding-inline-start: 1.25rem;
  62. }
  63. & .messages abbr {
  64. -webkit-text-decoration: none;
  65. text-decoration: none;
  66. }
  67. & .messages--status {
  68. color: var(--off-canvas-messages-text-color-status);
  69. &::before {
  70. background-image: var(--off-canvas-messages-icon-status);
  71. @media (forced-colors: active) {
  72. background: canvastext;
  73. mask-image: var(--off-canvas-messages-icon-status);
  74. }
  75. }
  76. }
  77. & .messages--warning {
  78. color: var(--off-canvas-messages-text-color-warning);
  79. &::before {
  80. background-image: var(--off-canvas-messages-icon-warning);
  81. @media (forced-colors: active) {
  82. background: canvastext;
  83. mask-image: var(--off-canvas-messages-icon-warning);
  84. }
  85. }
  86. }
  87. & .messages--error {
  88. color: var(--off-canvas-messages-text-color-error);
  89. &::before {
  90. background-image: var(--off-canvas-messages-icon-error);
  91. @media (forced-colors: active) {
  92. background: canvastext;
  93. mask-image: var(--off-canvas-messages-icon-error);
  94. }
  95. }
  96. }
  97. }

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