buglist.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* The contents of this file are subject to the Mozilla Public
  2. * License Version 1.1 (the "License"); you may not use this file
  3. * except in compliance with the License. You may obtain a copy of
  4. * the License at http://www.mozilla.org/MPL/
  5. *
  6. * Software distributed under the License is distributed on an "AS
  7. * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  8. * implied. See the License for the specific language governing
  9. * rights and limitations under the License.
  10. *
  11. * The Original Code is the Bugzilla Bug Tracking System.
  12. *
  13. * The Initial Developer of the Original Code is Netscape Communications
  14. * Corporation. Portions created by Netscape are
  15. * Copyright (C) 1998 Netscape Communications Corporation. All
  16. * Rights Reserved.
  17. *
  18. * Contributor(s): Myk Melez <myk@mozilla.org>
  19. */
  20. .bz_id_column {
  21. }
  22. .bz_row_odd {
  23. background-color: #F7F7F7;
  24. color: #000000;
  25. }
  26. .bz_row_even {
  27. background-color: #FFFFFF;
  28. color: #000000;
  29. }
  30. /* Style bug rows according to severity. */
  31. .bz_blocker { color: red; font-weight: bold; }
  32. .bz_critical { color: red; }
  33. .bz_enhancement { color: #666; background-color: white; }
  34. /* Align columns in the "change multiple bugs" form to the right. */
  35. table#form tr th { text-align: right; }
  36. table.bz_buglist td, table.bz_buglist th {
  37. }
  38. /* we use a first-child class and not the pseudo-class because IE
  39. * doesn't support it :-( */
  40. tr.bz_secure td.first-child {
  41. background-image: url("../../images/padlock.png");
  42. background-position: center left;
  43. background-repeat: no-repeat;
  44. background-color: inherit;
  45. }
  46. th.first-child, td.first-child {
  47. padding-left: 20px;
  48. }
  49. tr.bz_secure_mode_implied td.first-child {
  50. }
  51. tr.bz_secure_mode_manual td.first-child {
  52. }
  53. #commit, #action {
  54. margin-top: .25em;
  55. }