dataimport.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. /*
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. */
  15. #content #dataimport
  16. {
  17. background-image: url( ../../img/div.gif );
  18. background-position: 21% 0;
  19. background-repeat: repeat-y;
  20. }
  21. #content #dataimport #frame
  22. {
  23. float: right;
  24. width: 78%;
  25. }
  26. #content #dataimport #form
  27. {
  28. float: left;
  29. width: 20%;
  30. }
  31. #content #dataimport #form #navigation
  32. {
  33. border-right: 0;
  34. }
  35. #content #dataimport #form #navigation a
  36. {
  37. background-image: url( ../../img/ico/status-offline.png );
  38. }
  39. #content #dataimport #form #navigation .current a
  40. {
  41. background-image: url( ../../img/ico/status.png );
  42. }
  43. #content #dataimport #form form
  44. {
  45. border-top: 1px solid #f0f0f0;
  46. margin-top: 10px;
  47. padding-top: 5px;
  48. }
  49. #content #dataimport #form label
  50. {
  51. cursor: pointer;
  52. display: block;
  53. margin-top: 5px;
  54. }
  55. #content #dataimport #form input,
  56. #content #dataimport #form select,
  57. #content #dataimport #form textarea
  58. {
  59. margin-bottom: 2px;
  60. width: 100%;
  61. }
  62. #content #dataimport #form input
  63. {
  64. width: 98%;
  65. }
  66. #content #dataimport #form button
  67. {
  68. margin-top: 10px;
  69. }
  70. #content #dataimport #form .execute span
  71. {
  72. background-image: url( ../../img/ico/document-import.png );
  73. }
  74. #content #dataimport #form .refresh-status span
  75. {
  76. background-image: url( ../../img/ico/arrow-circle.png );
  77. }
  78. #content #dataimport #form .refresh-status span.success
  79. {
  80. background-image: url( ../../img/ico/tick.png );
  81. }
  82. #content #dataimport #form #start
  83. {
  84. float: left;
  85. width: 47%;
  86. }
  87. #content #dataimport #form #rows
  88. {
  89. float: right;
  90. width: 47%;
  91. }
  92. #content #dataimport #form .checkbox input
  93. {
  94. margin-bottom: 0;
  95. width: auto;
  96. }
  97. #content #dataimport #form #auto-refresh-status
  98. {
  99. margin-top: 20px;
  100. }
  101. #content #dataimport #form #auto-refresh-status a
  102. {
  103. background-image: url( ../../img/ico/ui-check-box-uncheck.png );
  104. background-position: 0 50%;
  105. color: #4D4D4D;
  106. display: block;
  107. padding-left: 21px;
  108. }
  109. #content #dataimport #form #auto-refresh-status a.on,
  110. #content #dataimport #form #auto-refresh-status a:hover
  111. {
  112. color: #333;
  113. }
  114. #content #dataimport #form #auto-refresh-status a.on
  115. {
  116. background-image: url( ../../img/ico/ui-check-box.png );
  117. }
  118. #content #dataimport #current_state
  119. {
  120. padding: 10px;
  121. margin-bottom: 20px;
  122. }
  123. #content #dataimport #current_state .last_update,
  124. #content #dataimport #current_state .info
  125. {
  126. display: block;
  127. padding-left: 21px;
  128. }
  129. #content #dataimport #current_state .last_update
  130. {
  131. color: #4D4D4D;
  132. font-size: 11px;
  133. }
  134. #content #dataimport #current_state .info
  135. {
  136. background-position: 0 1px;
  137. position: relative;
  138. }
  139. #content #dataimport #current_state .info .details span
  140. {
  141. color: #c0c0c0;
  142. }
  143. #content #dataimport #current_state .info .abort-import
  144. {
  145. position: absolute;
  146. right: 0px;
  147. top: 0px;
  148. }
  149. #content #dataimport #current_state .info .abort-import span
  150. {
  151. background-image: url( ../../img/ico/cross.png );
  152. }
  153. #content #dataimport #current_state .info .abort-import.success span
  154. {
  155. background-image: url( ../../img/ico/tick.png );
  156. }
  157. #content #dataimport #current_state.indexing
  158. {
  159. background-color: #f9f9f9;
  160. }
  161. #content #dataimport #current_state.indexing .info
  162. {
  163. background-image: url( ../../img/ico/hourglass.png );
  164. }
  165. #content #dataimport #current_state.indexing .info .abort-import
  166. {
  167. display: block;
  168. }
  169. #content #dataimport #current_state.success
  170. {
  171. background-color: #e6f3e6;
  172. }
  173. #content #dataimport #current_state.success .info
  174. {
  175. background-image: url( ../../img/ico/tick-circle.png );
  176. }
  177. #content #dataimport #current_state.success .info strong
  178. {
  179. color: #080;
  180. }
  181. #content #dataimport #current_state.aborted
  182. {
  183. background-color: #f3e6e6;
  184. }
  185. #content #dataimport #current_state.aborted .info
  186. {
  187. background-image: url( ../../img/ico/slash.png );
  188. }
  189. #content #dataimport #current_state.aborted .info strong
  190. {
  191. color: #800;
  192. }
  193. #content #dataimport #current_state.failure
  194. {
  195. background-color: #f3e6e6;
  196. }
  197. #content #dataimport #current_state.failure .info
  198. {
  199. background-image: url( ../../img/ico/cross-button.png );
  200. }
  201. #content #dataimport #current_state.failure .info strong
  202. {
  203. color: #800;
  204. }
  205. #content #dataimport #current_state.idle
  206. {
  207. background-color: #e6e6ff;
  208. }
  209. #content #dataimport #current_state.idle .info
  210. {
  211. background-image: url( ../../img/ico/information.png );
  212. }
  213. #content #dataimport #error
  214. {
  215. background-color: #f00;
  216. background-image: url( ../../img/ico/construction.png );
  217. background-position: 10px 50%;
  218. color: #fff;
  219. font-weight: bold;
  220. margin-bottom: 20px;
  221. padding: 10px;
  222. padding-left: 35px;
  223. }
  224. #content #dataimport .block h2
  225. {
  226. border-color: #c0c0c0;
  227. padding-left: 5px;
  228. position: relative;
  229. }
  230. #content #dataimport .block.hidden h2
  231. {
  232. border-color: #fafafa;
  233. }
  234. #content #dataimport .block h2 a.toggle
  235. {
  236. background-image: url( ../../img/ico/toggle-small.png );
  237. background-position: 0 50%;
  238. padding-left: 21px;
  239. }
  240. #content #dataimport .block.hidden h2 a.toggle
  241. {
  242. background-image: url( ../../img/ico/toggle-small-expand.png );
  243. }
  244. #content #dataimport #config h2 a.r
  245. {
  246. background-position: 3px 50%;
  247. display: block;
  248. float: right;
  249. margin-left: 10px;
  250. padding-left: 24px;
  251. padding-right: 3px;
  252. }
  253. #content #dataimport #config h2 a.reload_config
  254. {
  255. background-image: url( ../../img/ico/arrow-circle.png );
  256. }
  257. #content #dataimport #config h2 a.reload_config.success
  258. {
  259. background-image: url( ../../img/ico/tick.png );
  260. }
  261. #content #dataimport #config h2 a.reload_config.error
  262. {
  263. background-image: url( ../../img/ico/slash.png );
  264. }
  265. #content #dataimport #config h2 a.debug_mode
  266. {
  267. background-image: url( ../../img/ico/hammer.png );
  268. color: #4D4D4D;
  269. }
  270. #content #dataimport #config.debug_mode h2 a.debug_mode
  271. {
  272. background-color: #ff0;
  273. background-image: url( ../../img/ico/hammer-screwdriver.png );
  274. color: #333;
  275. }
  276. #content #dataimport #config .content
  277. {
  278. padding: 5px 2px;
  279. }
  280. #content #dataimport #dataimport_config .loader
  281. {
  282. background-position: 0 50%;
  283. padding-left: 21px;
  284. }
  285. #content #dataimport #dataimport_config .formatted
  286. {
  287. border: 1px solid #fff;
  288. display: block;
  289. padding: 2px;
  290. }
  291. #content #dataimport .debug_mode #dataimport_config .editable
  292. {
  293. display: block;
  294. }
  295. #content #dataimport #dataimport_config .editable textarea
  296. {
  297. font-family: monospace;
  298. height: 120px;
  299. min-height: 60px;
  300. width: 100%;
  301. }
  302. #content #dataimport #debug_response em
  303. {
  304. color: #4D4D4D;
  305. font-style: normal;
  306. }