style.css 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. .content{
  2. height: 100%;
  3. }
  4. .filterNode {
  5. height: 20px;
  6. line-height: 20px;
  7. padding: 10px 0;
  8. border-bottom: 1px solid #cccccc;
  9. background-color: #f0f0f0;
  10. }
  11. .keywordNode {
  12. height: 30px;
  13. line-height: 30px;
  14. padding: 2px 0;
  15. background-color: #ffffff;
  16. }
  17. .rangeNode {
  18. height: 40px;
  19. padding: 0;
  20. line-height: 20px;
  21. border-top: 1px solid #cccccc;
  22. border-bottom: 1px solid #cccccc;
  23. background-color: #f0f0f0;
  24. }
  25. .resultNode {
  26. overflow: auto;
  27. }
  28. .listNode {
  29. background-color: #ffffff;
  30. overflow: auto;
  31. }
  32. .previewNode {
  33. background-color: #f0f0f0;
  34. }
  35. .listNode_lr {
  36. background-color: #ffffff;
  37. height: 100%;
  38. float: left;
  39. }
  40. .previewNode_lr {
  41. background-color: #f0f0f0;
  42. height: 100%;
  43. }
  44. .filterNode_title {
  45. float: left;
  46. padding: 0 10px;
  47. text-align: center;
  48. width: 75px;
  49. font-size: 12px;
  50. font-weight: bold;
  51. height: 20px;
  52. }
  53. .filterNode_content {
  54. margin-left: 80px;
  55. font-size: 12px;
  56. color: #666666;
  57. height: 20px;
  58. }
  59. .filterNode_item {
  60. margin-left: 5px;
  61. float: left;
  62. display: inline-flex;
  63. cursor: default;
  64. }
  65. .rangeType_Item {
  66. margin-left: 5px;
  67. float: left;
  68. display: inline-flex;
  69. cursor: default;
  70. }
  71. .rangeNode_title {
  72. float: left;
  73. padding: 0 10px;
  74. text-align: center;
  75. width: 75px;
  76. font-size: 12px;
  77. font-weight: bold;
  78. height: 40px;
  79. line-height: 40px;
  80. }
  81. .rangeNode_content {
  82. width: 400px;
  83. font-size: 12px;
  84. color: #666666;
  85. padding: 10px 0;
  86. height: 20px;
  87. float: left;
  88. }
  89. .rangeNode_select {
  90. margin-left: 495px;
  91. padding: 0;
  92. height: 40px;
  93. }
  94. .rangeNode_select_area {
  95. padding: 5px 0;
  96. height: 30px;
  97. }
  98. .rangeNode_select_action_area {
  99. float: left;
  100. width: 100px;
  101. padding: 4px 10px;
  102. border-right: 1px solid #cccccc;
  103. border-left: 1px solid #cccccc;
  104. height: 22px;
  105. }
  106. .rangeNode_select_action {
  107. border: 1px solid #bbbbbb;
  108. height: 20px;
  109. padding: 0 10px;
  110. border-radius: 12px;
  111. background-color: #f9f9f9;
  112. cursor: pointer;
  113. font-size: 12px;
  114. color: #888888;
  115. }
  116. .rangeNode_select_content {
  117. margin-left: 120px;
  118. background-color: #ffffff;
  119. height: 22px;
  120. overflow: hidden;
  121. padding: 4px 5px;
  122. }
  123. .keywordNode_inputArea {
  124. margin-left: 95px;
  125. height: 30px;
  126. }
  127. .keywordNode_optionArea {
  128. width: 85px;
  129. float: left;
  130. height: 24px;
  131. border-right: 1px solid #cccccc;
  132. padding: 3px 5px;
  133. }
  134. .keywordNode_optionItem {
  135. height: 24px;
  136. width: 24px;
  137. background-position: center center;
  138. background-repeat: no-repeat;
  139. float: left;
  140. margin-left: 3px;
  141. cursor: pointer;
  142. border-radius: 3px;
  143. }
  144. .optionItem_over {
  145. background-color: #eeeeee;
  146. }
  147. .caseSensitiveNode_false {
  148. background-image: url("../x_component_FindDesigner/$Main/default/icons/op-case-gray.png");
  149. }
  150. .matchWholeWordNode_false {
  151. background-image: url("../x_component_FindDesigner/$Main/default/icons/op-word-gray.png");
  152. }
  153. .matchRegExpNode_false {
  154. background-image: url("../x_component_FindDesigner/$Main/default/icons/op-regex-gray.png");
  155. }
  156. .caseSensitiveNode_true {
  157. background-image: url("../x_component_FindDesigner/$Main/default/icons/op-case.png");
  158. }
  159. .matchWholeWordNode_true {
  160. background-image: url("../x_component_FindDesigner/$Main/default/icons/op-word.png");
  161. }
  162. .matchRegExpNode_true {
  163. background-image: url("../x_component_FindDesigner/$Main/default/icons/op-regex.png");
  164. }
  165. .keywordNode_icon {
  166. height: 30px;
  167. width: 24px;
  168. background-position: center center;
  169. background-repeat: no-repeat;
  170. float: left;
  171. margin-left: 3px;
  172. cursor: pointer;
  173. border-radius: 3px;
  174. background-image: url("../x_component_FindDesigner/$Main/default/icons/search.png");
  175. }
  176. .keywordNode_action {
  177. height: 30px;
  178. width: 24px;
  179. background-position: center center;
  180. background-repeat: no-repeat;
  181. float: right;
  182. margin-left: 3px;
  183. cursor: pointer;
  184. border-radius: 3px;
  185. background-image: url("../x_component_FindDesigner/$Main/default/icons/enter.png");
  186. }
  187. .keywordNode_area {
  188. margin-left: 24px;
  189. margin-right: 24px;
  190. height: 30px;
  191. }
  192. .keywordNode_input {
  193. border: 0;
  194. width: 90%;
  195. height: 26px;
  196. line-height: 26px;
  197. color: #888888;
  198. font-size: 14px;
  199. }
  200. .keywordNode_input::placeholder {
  201. color: #bbbbbb;
  202. }
  203. .previewNode_separator {
  204. border-top: 1px solid #cccccc;
  205. height: 10px;
  206. cursor: row-resize;
  207. }
  208. .previewNode_separator_lr {
  209. border-left: 1px solid #cccccc;
  210. height: 100%;
  211. background-color: #f0f0f0;
  212. width: 10px;
  213. cursor: col-resize;
  214. float: left;
  215. }
  216. .previewNode_title {
  217. height: 20px;
  218. padding: 0 5px 5px 5px;
  219. background-color: #f0f0f0;
  220. border-bottom: 1px solid #cccccc;
  221. }
  222. .previewNode_title_lr {
  223. height: 20px;
  224. padding: 5px;
  225. background-color: #f0f0f0;
  226. border-bottom: 1px solid #cccccc;
  227. }
  228. .previewNode_content {
  229. background-color: #ffffff;
  230. overflow: auto;
  231. }
  232. .previewNode_content_lr {
  233. background-color: #ffffff;
  234. overflow: auto;
  235. }
  236. .previewNode_title_icon {
  237. height: 20px;
  238. width: 24px;
  239. background-position: center center;
  240. background-repeat: no-repeat;
  241. float: left;
  242. }
  243. .previewNode_title_action {
  244. float: right;
  245. height: 20px;
  246. width: 24px;
  247. background-position: center center;
  248. background-repeat: no-repeat;
  249. background-image: url("../x_component_FindDesigner/$Main/default/icons/dockRight.png");
  250. cursor: pointer;
  251. }
  252. .previewNode_title_action_lr {
  253. float: right;
  254. height: 20px;
  255. width: 24px;
  256. background-position: center center;
  257. background-repeat: no-repeat;
  258. background-image: url("../x_component_FindDesigner/$Main/default/icons/dockBottom.png");
  259. cursor: pointer;
  260. }
  261. .previewNode_title_content {
  262. height: 20px;
  263. line-height: 20px;
  264. margin-left: 24px;
  265. margin-right: 24px;
  266. }
  267. .inforNode {
  268. display: table;
  269. width: 100%;
  270. height: 100%;
  271. }
  272. .inforNode div{
  273. display: table-cell;
  274. vertical-align: middle;
  275. color: #bbbbbb;
  276. text-align: center;
  277. }