dblog.css

Same filename and directory in other branches
  1. 7.x modules/dblog/dblog.css
  2. 11.x core/themes/default_admin/css/components/dblog.css
/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/*
 * @file
 * DBLog styling.
 */

/* Checked */

.admin-dblog .dblog-info .icon,
.admin-dblog .dblog-notice .icon {
  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;
}

/* Warning */

.admin-dblog .dblog-warning .icon {
  background-color: var(--gin-color-warning);
  background-image: none;
  mask-image: var(--admin-icon-warning);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 1.25rem 1.25rem;
}

/* Error */

.admin-dblog .dblog-error .icon,
.admin-dblog .dblog-critical .icon,
.admin-dblog .dblog-alert .icon,
.admin-dblog .dblog-emergency .icon {
  background-color: var(--gin-color-danger);
  background-image: none;
  mask-image: var(--admin-icon-error);
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 1.25rem 1.25rem;
}

File

core/themes/default_admin/css/components/dblog.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. * DBLog styling.
  10. */
  11. /* Checked */
  12. .admin-dblog .dblog-info .icon,
  13. .admin-dblog .dblog-notice .icon {
  14. background-color: var(--gin-color-green);
  15. background-image: none;
  16. mask-image: var(--admin-icon-status);
  17. mask-repeat: no-repeat;
  18. mask-position: center center;
  19. mask-size: 1.25rem 1.25rem;
  20. }
  21. /* Warning */
  22. .admin-dblog .dblog-warning .icon {
  23. background-color: var(--gin-color-warning);
  24. background-image: none;
  25. mask-image: var(--admin-icon-warning);
  26. mask-repeat: no-repeat;
  27. mask-position: center center;
  28. mask-size: 1.25rem 1.25rem;
  29. }
  30. /* Error */
  31. .admin-dblog .dblog-error .icon,
  32. .admin-dblog .dblog-critical .icon,
  33. .admin-dblog .dblog-alert .icon,
  34. .admin-dblog .dblog-emergency .icon {
  35. background-color: var(--gin-color-danger);
  36. background-image: none;
  37. mask-image: var(--admin-icon-error);
  38. mask-repeat: no-repeat;
  39. mask-position: center center;
  40. mask-size: 1.25rem 1.25rem;
  41. }

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