/hudson-war/src/main/webapp/scripts/yui/treeview/assets/skins/sam/treeview-skin.css

http://github.com/hudson/hudson · CSS · 104 lines · 66 code · 16 blank · 22 comment · 0 complexity · a010aaa799e6db96cd07a42714f3a000 MD5 · raw file

  1. /*
  2. Copyright (c) 2008, Yahoo! Inc. All rights reserved.
  3. Code licensed under the BSD License:
  4. http://developer.yahoo.net/yui/license.txt
  5. version: 2.5.1
  6. */
  7. /* first or middle sibling, no children */
  8. .ygtvtn {
  9. width:18px; height:22px;
  10. background: url(treeview-sprite.gif) 0 -5600px no-repeat;
  11. }
  12. /* first or middle sibling, collapsable */
  13. .ygtvtm {
  14. width:18px; height:22px;
  15. cursor:pointer ;
  16. background: url(treeview-sprite.gif) 0 -4000px no-repeat;
  17. }
  18. /* first or middle sibling, collapsable, hover */
  19. .ygtvtmh {
  20. width:18px; height:22px;
  21. cursor:pointer ;
  22. background: url(treeview-sprite.gif) 0 -4800px no-repeat;
  23. }
  24. /* first or middle sibling, expandable */
  25. .ygtvtp {
  26. width:18px; height:22px;
  27. cursor:pointer ;
  28. background: url(treeview-sprite.gif) 0 -6400px no-repeat;
  29. }
  30. /* first or middle sibling, expandable, hover */
  31. .ygtvtph {
  32. width:18px; height:22px;
  33. cursor:pointer ;
  34. background: url(treeview-sprite.gif) 0 -7200px no-repeat;
  35. }
  36. /* last sibling, no children */
  37. .ygtvln {
  38. width:18px; height:22px;
  39. background: url(treeview-sprite.gif) 0 -1600px no-repeat;
  40. }
  41. /* Last sibling, collapsable */
  42. .ygtvlm {
  43. width:18px; height:22px;
  44. cursor:pointer ;
  45. background: url(treeview-sprite.gif) 0 0px no-repeat;
  46. }
  47. /* Last sibling, collapsable, hover */
  48. .ygtvlmh {
  49. width:18px; height:22px;
  50. cursor:pointer ;
  51. background: url(treeview-sprite.gif) 0 -800px no-repeat;
  52. }
  53. /* Last sibling, expandable */
  54. .ygtvlp {
  55. width:18px; height:22px;
  56. cursor:pointer ;
  57. background: url(treeview-sprite.gif) 0 -2400px no-repeat;
  58. }
  59. /* Last sibling, expandable, hover */
  60. .ygtvlph {
  61. width:18px; height:22px; cursor:pointer ;
  62. background: url(treeview-sprite.gif) 0 -3200px no-repeat;
  63. }
  64. /* Loading icon */
  65. .ygtvloading {
  66. width:18px; height:22px;
  67. background: url(treeview-loading.gif) 0 0 no-repeat;
  68. }
  69. /* the style for the empty cells that are used for rendering the depth
  70. * of the node */
  71. .ygtvdepthcell {
  72. width:18px; height:22px;
  73. background: url(treeview-sprite.gif) 0 -8000px no-repeat;
  74. }
  75. .ygtvblankdepthcell { width:18px; height:22px; }
  76. /* the style of the div around each node */
  77. .ygtvitem { }
  78. /* the style of the div around each node's collection of children */
  79. .ygtvchildren {
  80. *zoom: 1;
  81. }
  82. /* the style of the text label in ygTextNode */
  83. .ygtvlabel, .ygtvlabel:link, .ygtvlabel:visited, .ygtvlabel:hover {
  84. margin-left:2px;
  85. text-decoration: none;
  86. background-color: white;
  87. }
  88. .ygtvspacer { height: 22px; width: 12px; }