dblog.module.css

Admin styles for the Database Logging module.

File

drupal/core/modules/dblog/css/dblog.module.css
View source
  1. /**
  2. * @file
  3. * Admin styles for the Database Logging module.
  4. */
  5. .dblog-filter-form .form-item-type,
  6. .dblog-filter-form .form-item-severity {
  7. display: inline-block;
  8. margin: .1em .9em .1em .1em; /* LTR */
  9. max-width: 30%;
  10. }
  11. .dblog-filter-form .form-actions {
  12. display: inline-block;
  13. padding: 3ex 0 0;
  14. vertical-align: top;
  15. }
  16. .dblog-user.odd .active {
  17. background: #ddf;
  18. }
  19. .dblog-user.even .active {
  20. background: #cce;
  21. }
  22. .dblog-error.odd .active {
  23. background: #ffc9c9;
  24. }
  25. .dblog-error.even .active {
  26. background: #eeb9b9;
  27. }
  28. .dblog-warning.odd .active {
  29. background: #fffdca;
  30. }
  31. .dblog-warning.even .active {
  32. background: #eeedbd;
  33. }
  34. .admin-dblog .icon {
  35. background: no-repeat center;
  36. width: 16px;
  37. }
  38. .admin-dblog .dblog-warning .icon {
  39. background-image: url(../../../misc/message-16-warning.png);
  40. }
  41. .admin-dblog .dblog-error .icon,
  42. .admin-dblog .dblog-critical .icon,
  43. .admin-dblog .dblog-alert .icon,
  44. .admin-dblog .dblog-emergency .icon {
  45. background-image: url(../../../misc/message-16-error.png);
  46. }