dblog.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /**
  2. * @file
  3. * Admin styles for the Database Logging module.
  4. */
  5. .form-item-type,
  6. .form-item-severity {
  7. float: left; /* LTR */
  8. padding-right: .8em; /* LTR */
  9. margin: 0.1em;
  10. /**
  11. * In Opera 9, DOM elements with the property of "overflow: auto"
  12. * will partially hide its contents with unnecessary scrollbars when
  13. * its immediate child is floated without an explicit width set.
  14. */
  15. width: 15em;
  16. }
  17. #dblog-filter-form .form-type-select select {
  18. width: 100%;
  19. }
  20. #dblog-filter-form .form-actions {
  21. float: left;
  22. padding: 3ex 0 0 1em;
  23. }
  24. tr.dblog-user {
  25. background: #ffd;
  26. }
  27. tr.dblog-user .active {
  28. background: #eed;
  29. }
  30. tr.dblog-content {
  31. background: #ddf;
  32. }
  33. tr.dblog-content .active {
  34. background: #cce;
  35. }
  36. tr.dblog-page-not-found,
  37. tr.dblog-access-denied {
  38. background: #dfd;
  39. }
  40. tr.dblog-page-not-found .active,
  41. tr.dblog-access-denied .active {
  42. background: #cec;
  43. }
  44. tr.dblog-error {
  45. background: #ffc9c9;
  46. }
  47. tr.dblog-error .active {
  48. background: #eeb9b9;
  49. }
  50. table#admin-dblog td.icon {
  51. background: no-repeat center;
  52. width: 16px;
  53. }
  54. table#admin-dblog tr.dblog-warning td.icon {
  55. background-image: url(../../misc/message-16-warning.png);
  56. }
  57. table#admin-dblog tr.dblog-error td.icon,
  58. table#admin-dblog tr.dblog-critical td.icon,
  59. table#admin-dblog tr.dblog-alert td.icon,
  60. table#admin-dblog tr.dblog-emerg td.icon {
  61. background-image: url(../../misc/message-16-error.png);
  62. }