style.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. .node {
  2. height: 100%;
  3. overflow: hidden;
  4. }
  5. .listAreaNode {
  6. height: 100%;
  7. width: 240px;
  8. overflow: hidden;
  9. float: left;
  10. border-right:1px solid #999999;
  11. }
  12. .scriptAreaNode {
  13. height: 100%;
  14. margin-left:245px;
  15. }
  16. .separatorNode {
  17. width: 2px;
  18. background-color: #666666;
  19. float: right;
  20. margin-top: 5px;
  21. margin-right:2px;
  22. cursor: col-resize;
  23. }
  24. .listNode {
  25. border: 1px solid #999999;
  26. border-right-color: #dddddd;
  27. border-bottom-color: #dddddd;
  28. background-color: #ffffff;
  29. margin: 2px 6px 5px 5px;
  30. overflow: auto;
  31. }
  32. .listActionNode {
  33. height: 24px;
  34. margin: 5px 6px 0 5px;
  35. overflow: hidden;
  36. }
  37. .listActionButton {
  38. border: 1px solid #eeeeee;
  39. height: 20px;
  40. padding: 0px 5px;
  41. line-height: 20px;
  42. float: left;
  43. margin: 2px 3px 2px 0;
  44. cursor: pointer;
  45. }
  46. .listActionButton_over {
  47. background-color: #ffffff;
  48. }
  49. .listActionButton_select {
  50. border: 1px solid #999999;
  51. border-right-color: #dddddd;
  52. border-bottom-color: #dddddd;
  53. background-color: #ffffff;
  54. color: #bf6364;
  55. }
  56. .refreshButton{
  57. height: 20px;
  58. width: 20px;
  59. float: right;
  60. margin: 2px 3px 2px 0;
  61. background: url("../x_component_portal_PageDesigner/$Script/default/refresh.png") no-repeat center center;
  62. cursor: pointer;
  63. }
  64. .listContentNode {
  65. overflow: hidden;
  66. }
  67. .scriptNode {
  68. margin: 15px 10px;
  69. box-shadow: 0 0 20px #606060;
  70. background-color: #ffffff;
  71. }
  72. .itemCategory {
  73. min-height: 22px;
  74. line-height: 22px;
  75. padding: 0px 5px;
  76. overflow: hidden;
  77. }
  78. .itemCategoryTitle {
  79. margin: 2px 0px;
  80. height: 22px;
  81. line-height: 22px;
  82. font-size: 12px;
  83. overflow: hidden;
  84. cursor: pointer;
  85. }
  86. .itemCategoryTitle_over {
  87. background-color: #e8eef7;
  88. }
  89. .itemCategoryTitleIcon {
  90. height: 22px;
  91. width:20px;
  92. float: left;
  93. background: url("../x_component_portal_PageDesigner/$Script/default/collapse.gif") no-repeat center center;
  94. }
  95. .itemCategoryTitleIcon_expand {
  96. background: url("../x_component_portal_PageDesigner/$Script/default/expand.gif") no-repeat center center;
  97. }
  98. .itemCategoryTitleName {
  99. height: 22px;
  100. word-break: break-all;
  101. }
  102. .itemCategoryChildren {
  103. margin-left: 20px;
  104. overflow: hidden;
  105. display: none;
  106. }
  107. .item {
  108. height: 24px;
  109. line-height: 24px;
  110. cursor: pointer;
  111. margin: 3px 10px 3px 10px;
  112. }
  113. .itemIcon {
  114. height: 24px;
  115. width: 26px;
  116. float: left;
  117. background: url("../x_component_portal_PageDesigner/$Script/default/script.png") no-repeat center center;
  118. }
  119. .itemText {
  120. margin-left: 28px;
  121. white-space: nowrap;
  122. }
  123. .item_over {
  124. background-color: #e8eef7;
  125. }
  126. .item_select {
  127. background-color: #48638f;
  128. }
  129. .itemText_select {
  130. color: #ffffff;
  131. }
  132. .scriptTabNode {
  133. height: 100%;
  134. }
  135. .scriptContentNode {
  136. height:100%;
  137. }