style.css 7.3 KB

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