dependency-tree.css 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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
  14. * Communications
  15. * Corporation. Portions created by Netscape are
  16. * Copyright (C) 1998 Netscape Communications Corporation. All
  17. * Rights Reserved.
  18. *
  19. * Contributor(s): Christian Reis <kiko@async.com.br>
  20. * André Batosti <batosti@async.com.br>
  21. */
  22. ul.tree {
  23. padding-left: 0em;
  24. margin-left: 1em;
  25. display: block;
  26. }
  27. ul.tree ul {
  28. padding-top: 3px;
  29. display: block;
  30. }
  31. ul.tree li {
  32. /* see http://www.kryogenix.org/code/browser/aqlists/ for idea */
  33. padding-top: 3px;
  34. text-indent: -1.2em;
  35. padding-left: 0.5em;
  36. padding-bottom: 3px;
  37. list-style-type: none;
  38. background: url("dependency-tree/bug-item.png") no-repeat;
  39. }
  40. ul.tree li a.b {
  41. padding-left: 30px;
  42. margin-right: -14px;
  43. text-decoration: none;
  44. }
  45. ul.tree li a.b_open {
  46. background: url("dependency-tree/tree-open.png") center no-repeat;
  47. cursor: pointer;
  48. }
  49. ul.tree li a.b_closed {
  50. background: url("dependency-tree/tree-closed.png") center no-repeat;
  51. cursor: pointer;
  52. }
  53. ul.tree a.tree_link img {
  54. border: 0;
  55. }
  56. .summ_info {
  57. /* change to inline if you would like to see the full bug details
  58. * displayed in the list */
  59. display: none;
  60. font-size: 75%;
  61. }
  62. .hint {
  63. font-size: 90%;
  64. margin: 0.2em;
  65. padding: 0.1em;
  66. }
  67. .hint h3, .hint ul {
  68. margin-top: 0.1em;
  69. margin-bottom: 0.1em;
  70. }
  71. .summ A, .summ_deep A {
  72. text-decoration: none;
  73. color: darkblue;
  74. }
  75. .summ_deep {
  76. }
  77. .summ_h A {
  78. background-color: #ffffaa;
  79. color: #333;
  80. font-weight: bold;
  81. }