洛阳中航光电项目,为12年项目,此处使用反编译工具恢复源码,恢复为.netframe4.0版本,但仍需使用ie8访问; 数据库使用oracle,现再192.168.8.3服务器,访问账户scott,密码800100

tree.css 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * Copyright 2007 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /* Author: arv@google.com (Erik Arvidsson) */
  8. /* Author: eae@google.com (Emil A Eklund) */
  9. /* Author: jonp@google.com (Jon Perlow) */
  10. /*
  11. TODO(arv): Currently the sprite image has the height 16px. We should make the
  12. image taller which would allow better flexibility when it comes to the height
  13. of a tree row.
  14. */
  15. .goog-inline-block {
  16. /* position: relative;*//*如果加这句话那么在ie下背景图片隐藏不了*/
  17. display: -moz-inline-box; /* Ignored by FF3 and later. */
  18. display: inline-block;
  19. }
  20. * html .goog-inline-block {
  21. display: inline;
  22. }
  23. *:first-child+html .goog-inline-block {
  24. display: inline;
  25. }
  26. .goog-tree-root:focus {
  27. -moz-outline: none;
  28. outline: none;
  29. }
  30. .goog-tree-row {
  31. white-space: nowrap;
  32. font: icon;
  33. line-height: 16px;
  34. height: 16px;
  35. }
  36. .goog-tree-row span {
  37. overflow: hidden;
  38. text-overflow: ellipsis;
  39. }
  40. .goog-tree-children {
  41. background-repeat: repeat-y;
  42. background-image: url("I.png") !important;
  43. background-position-y: 1px !important; /* IE only */
  44. font: icon;
  45. }
  46. .goog-tree-children-nolines {
  47. font: icon;
  48. }
  49. .goog-tree-icon {
  50. background-image: url("tree.png");
  51. }
  52. .goog-tree-expand-icon {
  53. vertical-align: middle;
  54. height: 16px;
  55. width: 16px;
  56. cursor: default;
  57. }
  58. .goog-tree-expand-icon-plus {
  59. width: 19px;
  60. background-position: 0 0;
  61. }
  62. .goog-tree-expand-icon-minus {
  63. width: 19px;
  64. background-position: -24px 0;
  65. }
  66. .goog-tree-expand-icon-tplus {
  67. width: 19px;
  68. background-position: -48px 0;
  69. }
  70. .goog-tree-expand-icon-tminus {
  71. width: 19px;
  72. background-position: -72px 0;
  73. }
  74. .goog-tree-expand-icon-lplus {
  75. width: 19px;
  76. background-position: -96px 0;
  77. }
  78. .goog-tree-expand-icon-lminus {
  79. width: 19px;
  80. background-position: -120px 0;
  81. }
  82. .goog-tree-expand-icon-t {
  83. width: 19px;
  84. background-position: -144px 0;
  85. }
  86. .goog-tree-expand-icon-l {
  87. width: 19px;
  88. background-position: -168px 0;
  89. }
  90. .goog-tree-expand-icon-blank {
  91. width: 19px;
  92. background-position: -168px -24px;
  93. }
  94. .goog-tree-collapsed-folder-icon {
  95. vertical-align: middle;
  96. height: 16px;
  97. width: 16px;
  98. background-position: -0px -24px;
  99. }
  100. .goog-tree-expanded-folder-icon {
  101. vertical-align: middle;
  102. height: 16px;
  103. width: 16px;
  104. background-position: -24px -24px;
  105. }
  106. .goog-tree-file-icon {
  107. vertical-align: middle;
  108. height: 16px;
  109. width: 16px;
  110. background-position: -48px -24px;
  111. }
  112. .goog-tree-item-label {
  113. margin-left: 3px;
  114. padding: 1px 2px 1px 2px;
  115. text-decoration: none;
  116. color: WindowText;
  117. cursor: default;
  118. }
  119. .goog-tree-item-label:hover {
  120. text-decoration: underline;
  121. }
  122. .selected .goog-tree-item-label {
  123. background-color: ButtonFace;
  124. color: ButtonText;
  125. }
  126. .focused .selected .goog-tree-item-label {
  127. background-color: Highlight;
  128. color: HighlightText;
  129. }
  130. .goog-tree-hide-root {
  131. display: none;
  132. }