dblog.css

#edit-type-wrapper, #edit-severity-wrapper {
  float: left; /* LTR */
  padding-right: .8em; /* LTR */
  margin: 0.1em;
  /**
   * In Opera 9, DOM elements with the property of "overflow: auto"
   * will partially hide its contents with unnecessary scrollbars when
   * its immediate child is floated without an explicit width set.
   */
  width: 15em;
}
#dblog-filter-form .form-item select.form-select {
  width: 100%;
}
tr.dblog-user {
  background: #ffd;
}
tr.dblog-user .active {
  background: #eed;
}
tr.dblog-content {
  background: #ddf;
}
tr.dblog-content .active {
  background: #cce;
}
tr.dblog-page-not-found, tr.dblog-access-denied {
  background: #dfd;
}
tr.dblog-page-not-found .active, tr.dblog-access-denied .active {
  background: #cec;
}
tr.dblog-error {
  background: #ffc9c9;
}
tr.dblog-error .active {
  background: #eeb9b9;
}

Archivo

drupal-6.x/modules/dblog/dblog.css
View source
  1. #edit-type-wrapper, #edit-severity-wrapper {
  2. float: left; /* LTR */
  3. padding-right: .8em; /* LTR */
  4. margin: 0.1em;
  5. /**
  6. * In Opera 9, DOM elements with the property of "overflow: auto"
  7. * will partially hide its contents with unnecessary scrollbars when
  8. * its immediate child is floated without an explicit width set.
  9. */
  10. width: 15em;
  11. }
  12. #dblog-filter-form .form-item select.form-select {
  13. width: 100%;
  14. }
  15. tr.dblog-user {
  16. background: #ffd;
  17. }
  18. tr.dblog-user .active {
  19. background: #eed;
  20. }
  21. tr.dblog-content {
  22. background: #ddf;
  23. }
  24. tr.dblog-content .active {
  25. background: #cce;
  26. }
  27. tr.dblog-page-not-found, tr.dblog-access-denied {
  28. background: #dfd;
  29. }
  30. tr.dblog-page-not-found .active, tr.dblog-access-denied .active {
  31. background: #cec;
  32. }
  33. tr.dblog-error {
  34. background: #ffc9c9;
  35. }
  36. tr.dblog-error .active {
  37. background: #eeb9b9;
  38. }