You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

managesieve.css 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481
  1. #filtersetslistbox
  2. {
  3. position: absolute;
  4. top: 0;
  5. bottom: 0;
  6. left: 0;
  7. width: 195px;
  8. border: 1px solid #999999;
  9. background-color: #F9F9F9;
  10. overflow: hidden;
  11. }
  12. #filtersscreen
  13. {
  14. position: absolute;
  15. top: 0;
  16. right: 0;
  17. bottom: 0;
  18. left: 205px;
  19. }
  20. #filterslistbox
  21. {
  22. position: absolute;
  23. left: 0;
  24. top: 0;
  25. bottom: 0;
  26. border: 1px solid #999999;
  27. overflow: auto;
  28. }
  29. #filterslist,
  30. #filtersetslist
  31. {
  32. width: 100%;
  33. table-layout: fixed;
  34. }
  35. #filterslist tbody td,
  36. #filtersetslist tbody td
  37. {
  38. cursor: default;
  39. text-overflow: ellipsis;
  40. -o-text-overflow: ellipsis;
  41. }
  42. #filterslist tbody tr.disabled td,
  43. #filtersetslist tbody tr.disabled td
  44. {
  45. color: #999999;
  46. text-decoration: line-through;
  47. }
  48. #filtersetslist tbody td
  49. {
  50. font-weight: bold;
  51. }
  52. /*
  53. #filtersetslist tr.selected
  54. {
  55. background-color: #929292;
  56. border-bottom: 1px solid #898989;
  57. color: #FFF;
  58. font-weight: bold;
  59. }
  60. */
  61. #filterslist tbody tr.filtermoveup td
  62. {
  63. border-top: 2px dotted #555;
  64. padding-top: 0px;
  65. }
  66. #filterslist tbody tr.filtermovedown td
  67. {
  68. border-bottom: 2px dotted #555;
  69. padding-bottom: 1px;
  70. }
  71. #filter-box
  72. {
  73. position: absolute;
  74. top: 0;
  75. right: 0;
  76. bottom: 0;
  77. border: 1px solid #999999;
  78. overflow: hidden;
  79. }
  80. #filter-frame
  81. {
  82. border: none;
  83. }
  84. body.iframe
  85. {
  86. min-width: 620px;
  87. width: expression(Math.max(620, document.documentElement.clientWidth)+'px');
  88. background-color: #F2F2F2;
  89. }
  90. #filter-form
  91. {
  92. min-width: 550px;
  93. width: expression(Math.max(550, document.documentElement.clientWidth)+'px');
  94. white-space: nowrap;
  95. padding: 20px 10px 10px 10px;
  96. }
  97. #filter-form legend, #filter-form label
  98. {
  99. color: #666666;
  100. }
  101. #rules, #actions
  102. {
  103. margin-top: 5px;
  104. padding: 0;
  105. border-collapse: collapse;
  106. }
  107. div.rulerow, div.actionrow
  108. {
  109. width: auto;
  110. padding: 2px;
  111. white-space: nowrap;
  112. border: 1px solid #F2F2F2;
  113. }
  114. div.rulerow:hover, div.actionrow:hover
  115. {
  116. padding: 2px;
  117. white-space: nowrap;
  118. background: #F9F9F9;
  119. border: 1px solid silver;
  120. }
  121. div.rulerow table, div.actionrow table
  122. {
  123. padding: 0px;
  124. min-width: 600px;
  125. width: expression(Math.max(600, document.documentElement.clientWidth)+'px');
  126. }
  127. td
  128. {
  129. vertical-align: top;
  130. }
  131. td.advbutton
  132. {
  133. width: 1%;
  134. }
  135. td.advbutton a
  136. {
  137. display: block;
  138. padding-top: 14px;
  139. height: 6px;
  140. width: 12px;
  141. text-decoration: none;
  142. }
  143. td.advbutton a.show
  144. {
  145. background: url(images/down_small.gif?v=8629.106) center no-repeat;
  146. }
  147. td.advbutton a.hide
  148. {
  149. background: url(images/up_small.gif?v=c56c.106) center no-repeat;
  150. }
  151. td.rowbuttons
  152. {
  153. text-align: right;
  154. white-space: nowrap;
  155. width: 1%;
  156. }
  157. td.rowactions
  158. {
  159. white-space: nowrap;
  160. width: 1%;
  161. padding-top: 2px;
  162. }
  163. td.rowtargets
  164. {
  165. white-space: nowrap;
  166. width: 98%;
  167. padding-left: 3px;
  168. padding-top: 2px;
  169. }
  170. td.rowtargets > div
  171. {
  172. vertical-align: top;
  173. margin-top: 2px;
  174. }
  175. td.rowtargets div.adv
  176. {
  177. padding-top: 3px;
  178. }
  179. td.rowtargets div.adv span.label
  180. {
  181. display: inline-block;
  182. padding-right: 10px;
  183. min-width: 65px;
  184. }
  185. td.rowtargets div a
  186. {
  187. margin-left: 10px;
  188. }
  189. td.rowtargets div.adv input
  190. {
  191. margin-bottom: 1px;
  192. }
  193. html.mozilla #filter-form select
  194. {
  195. padding-top: 3px;
  196. padding-bottom: 3px;
  197. }
  198. input.disabled, input.disabled:hover
  199. {
  200. color: #999999;
  201. }
  202. input.error, textarea.error
  203. {
  204. background-color: #FFFF88;
  205. }
  206. input.box,
  207. input.radio
  208. {
  209. border: 0;
  210. margin-top: 0;
  211. }
  212. select.operator_selector
  213. {
  214. width: 200px;
  215. vertical-align: top;
  216. }
  217. td.rowtargets span,
  218. td.rowtargets label,
  219. span.label
  220. {
  221. color: #666666;
  222. font-size: 10px;
  223. white-space: nowrap;
  224. }
  225. td.rowtargets label
  226. {
  227. color: black;
  228. }
  229. #footer
  230. {
  231. padding-top: 5px;
  232. width: 100%;
  233. }
  234. #footer .footerleft
  235. {
  236. padding-left: 2px;
  237. white-space: nowrap;
  238. float: left;
  239. }
  240. #footer .footerright
  241. {
  242. padding-right: 2px;
  243. white-space: nowrap;
  244. text-align: right;
  245. float: right;
  246. }
  247. .itemlist
  248. {
  249. line-height: 25px;
  250. }
  251. .itemlist input
  252. {
  253. vertical-align: middle;
  254. }
  255. span.sieve.error
  256. {
  257. color: red;
  258. }
  259. a.button.add
  260. {
  261. background: url(images/add.png?v=a165.280) no-repeat;
  262. width: 30px;
  263. height: 20px;
  264. margin-right: 4px;
  265. display: inline-block;
  266. }
  267. a.button.del
  268. {
  269. background: url(images/del.png?v=3c27.247) no-repeat;
  270. width: 30px;
  271. height: 20px;
  272. display: inline-block;
  273. }
  274. a.button.disabled
  275. {
  276. opacity: 0.35;
  277. filter: alpha(opacity=35);
  278. cursor: default;
  279. }
  280. #filter-form select,
  281. #filter-form input,
  282. #filter-form textarea
  283. {
  284. font-size: 11px;
  285. vertical-align: middle;
  286. }
  287. /* smart multi-row input field */
  288. .listarea
  289. {
  290. border: 1px solid #666;
  291. margin: 0;
  292. padding: 1px;
  293. display: inline-block;
  294. max-height: 67px;
  295. overflow-y: auto;
  296. vertical-align: middle;
  297. }
  298. td.rowtargets > span.listarea
  299. {
  300. vertical-align: top;
  301. margin-top: 2px;
  302. }
  303. .listelement
  304. {
  305. display: block;
  306. white-space: nowrap;
  307. background-color: #fff;
  308. border-top: 1px solid #e2e2e2;
  309. height: 16px;
  310. padding: 0;
  311. margin: 0;
  312. overflow: hidden;
  313. line-height: 16px;
  314. }
  315. .listarea.error .listelement
  316. {
  317. background-color: #FFFFC4;
  318. }
  319. .listelement:first-child
  320. {
  321. border-top: none;
  322. }
  323. #filter-form .listelement input
  324. {
  325. border: none;
  326. border-radius: 0;
  327. box-shadow: none;
  328. outline: none;
  329. vertical-align: top;
  330. height: 16px;
  331. padding-top: 0;
  332. padding-bottom: 0;
  333. line-height: 16px;
  334. background-color: transparent;
  335. }
  336. .listelement input:focus
  337. {
  338. box-shadow: none;
  339. }
  340. .listelement .reset
  341. {
  342. display: inline-block;
  343. width: 16px;
  344. height: 16px;
  345. background: url(images/erase.png?v=3052.453) -1px 0 no-repeat #eee;
  346. cursor: pointer;
  347. }
  348. /* fixes for popup window */
  349. body.iframe.mail
  350. {
  351. margin: 0;
  352. padding: 0;
  353. }
  354. body.iframe.mail #filter-form
  355. {
  356. padding: 10px 5px 5px 5px;
  357. }
  358. #vacationform .listarea {
  359. max-height: 75px;
  360. }
  361. #vacationform .listelement,
  362. #vacationform .listelement .reset {
  363. height: 18px;
  364. }
  365. #vacationform .listelement .reset {
  366. background-position: -1px 1px;
  367. }
  368. #vacationform .listelement input {
  369. vertical-align: top;
  370. border: 0;
  371. }
  372. #vacationform input.button {
  373. margin-left: 10px;
  374. }
  375. /* RAW editor and CodeMirror overrides */
  376. .raweditor textarea {
  377. border: none;
  378. border-radius: 0;
  379. max-width: none !important;
  380. box-shadow: none;
  381. font-family: monospace;
  382. width: 99%;
  383. min-height: 300px;
  384. }
  385. .raweditor textarea,
  386. .raweditor .CodeMirror {
  387. position: absolute;
  388. top: 34px;
  389. bottom: 45px;
  390. right: 0;
  391. left: 0;
  392. height: auto;
  393. background-color: #fdfdfd;
  394. border-bottom: 1px solid #eee;
  395. }
  396. .raweditor .CodeMirror-linebackground.line-error {
  397. background-color: #f00;
  398. opacity: 0.4;
  399. }
  400. .raweditor .errorGutter {
  401. width: 0.8em;
  402. }
  403. .raweditor #footer {
  404. position: absolute;
  405. bottom: 5px;
  406. }
  407. body.iframe.raweditor {
  408. min-width: 100px;
  409. overflow: hidden;
  410. }