dblog.css 1.3 KB

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