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.

styles.css 53KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069
  1. /**
  2. * Roundcube webmail styles for skin "Larry"
  3. *
  4. * Copyright (c) 2012-2017, The Roundcube Dev Team
  5. * Screendesign by FLINT / Büro für Gestaltung, bueroflint.com
  6. *
  7. * The contents are subject to the Creative Commons Attribution-ShareAlike
  8. * License. It is allowed to copy, distribute, transmit and to adapt the work
  9. * by keeping credits to the original autors in the README file.
  10. * See http://creativecommons.org/licenses/by-sa/3.0/ for details.
  11. */
  12. body {
  13. font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
  14. font-size: 11px;
  15. color: #333;
  16. background: #cad2d9;
  17. margin: 0;
  18. }
  19. body.noscroll {
  20. /* also avoids bounce effect in Chrome and Safari */
  21. overflow: hidden;
  22. }
  23. .iphone body.noscroll {
  24. /* revert on iPhone (#1490551) */
  25. overflow: auto;
  26. }
  27. a {
  28. color: #0069a6;
  29. }
  30. a:visited {
  31. color: #0186ba;
  32. }
  33. img {
  34. border: 0;
  35. }
  36. .voice {
  37. position: absolute;
  38. border: 0;
  39. clip: rect(0 0 0 0);
  40. width: 1px;
  41. height: 1px;
  42. margin: -1px;
  43. padding: 0;
  44. overflow: hidden;
  45. }
  46. input,
  47. textarea,
  48. select,
  49. button {
  50. font-family: inherit;
  51. font-size: inherit;
  52. vertical-align: middle;
  53. }
  54. input[type="text"],
  55. input[type="password"],
  56. textarea {
  57. margin: 0; /* Safari by default adds a margin */
  58. padding: 4px;
  59. border: 1px solid #b2b2b2;
  60. border-radius: 4px;
  61. }
  62. input[type="text"]:focus,
  63. input[type="password"]:focus,
  64. input.button:focus,
  65. textarea:focus {
  66. border-color: #4787b1;
  67. box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9);
  68. outline: none;
  69. }
  70. input[type="text"]:required,
  71. input[type="password"]:required {
  72. border-color: #4787b1;
  73. }
  74. input.placeholder,
  75. textarea.placeholder {
  76. color: #aaa;
  77. }
  78. .bold {
  79. font-weight: bold;
  80. }
  81. /* fixes vertical alignment of checkboxes and labels */
  82. label input + span {
  83. vertical-align: middle;
  84. }
  85. .noselect {
  86. user-select: none;
  87. -moz-user-select: none;
  88. -khtml-user-select: none;
  89. -ms-user-select: none;
  90. -webkit-user-select: none;
  91. }
  92. /*** buttons ***/
  93. input.button {
  94. display: inline-block;
  95. margin: 0 2px;
  96. padding: 4px 8px;
  97. color: #525252;
  98. border: 1px solid #c0c0c0;
  99. border-radius: 4px;
  100. background: #f7f7f7;
  101. text-decoration: none;
  102. outline: none;
  103. }
  104. .formbuttons input.button {
  105. color: #ddd;
  106. font-size: 110%;
  107. padding: 4px 12px;
  108. border-color: #465864;
  109. border-radius: 5px;
  110. background: #666666;
  111. box-shadow: 0 1px 1px 0 #ccc;
  112. }
  113. .formbuttons input.button:hover,
  114. .formbuttons input.button:focus,
  115. input.button.mainaction:hover,
  116. input.button.mainaction:focus {
  117. color: #f2f2f2;
  118. border-color: #465864;
  119. box-shadow: 0 0 5px 2px rgba(71,135,177, 0.6);
  120. }
  121. .formbuttons input.button:active {
  122. color: #fff;
  123. background: #5f5f5f;
  124. }
  125. input.button.mainaction {
  126. color: #ededed;
  127. border-color: #1f262c;
  128. background: #2c2f33;
  129. }
  130. input.button.mainaction:active {
  131. color: #fff;
  132. background: #515151;
  133. background: -moz-linear-gradient(top, #2a2e31 0%, #505050 100%);
  134. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2a2e31), color-stop(100%,#505050));
  135. background: -ms-linear-gradient(top, #2a2e31 0%, #505050 100%);
  136. background: linear-gradient(to bottom, #2a2e31 0%, #505050 100%);
  137. }
  138. input.button[disabled],
  139. input.button[disabled]:hover,
  140. input.button.mainaction[disabled] {
  141. color: #aaa !important;
  142. }
  143. input.mainaction {
  144. font-weight: bold;
  145. }
  146. form.smart-upload,
  147. input.smart-upload {
  148. visibility: hidden;
  149. width: 1px;
  150. height: 1px;
  151. opacity: 0;
  152. }
  153. /** link buttons **/
  154. a.button,
  155. .buttongroup {
  156. display: inline-block;
  157. margin: 0 2px;
  158. padding: 2px 5px;
  159. color: #525252;
  160. border: 1px solid #c6c6c6;
  161. border-radius: 4px;
  162. background: #e6e6e6;
  163. text-decoration: none;
  164. }
  165. .buttongroup {
  166. padding: 0;
  167. white-space: nowrap;
  168. }
  169. a.button:focus,
  170. input.button:focus {
  171. border-color: #017db6;
  172. box-shadow: 0 0 2px 1px rgba(71,135,177, 0.6);
  173. outline: none;
  174. }
  175. label.disabled,
  176. a.button.disabled {
  177. color: #999;
  178. }
  179. a.button.disabled,
  180. input.button.disabled,
  181. input.button[disabled],
  182. a.button.disabled:hover,
  183. input.button.disabled:hover,
  184. input.button[disabled]:hover {
  185. border-color: #c6c6c6;
  186. }
  187. a.button.disabled span.inner {
  188. opacity: 0.4;
  189. }
  190. .buttongroup a.button {
  191. margin: 0;
  192. border-width: 0 1px 0 0;
  193. border-radius: 0;
  194. background: none;
  195. }
  196. .buttongroup a.button.first,
  197. .buttongroup a.button:first-child {
  198. border-radius: 4px 0 0 4px;
  199. border-left: 0;
  200. }
  201. .buttongroup a.button.last,
  202. .buttongroup a.button:last-child {
  203. border-radius: 0 4px 4px 0;
  204. border-right: 0;
  205. }
  206. a.button.pressed,
  207. a.button:active,
  208. input.button:active {
  209. background: #f7f7f7;
  210. }
  211. .pagenav.dark a.button {
  212. font-weight: bold;
  213. border: 0;
  214. background: transparent;
  215. margin: 0;
  216. }
  217. .pagenav.dark a.button.pressed {
  218. background: #d8d8d8;
  219. }
  220. .buttongroup a.button.selected,
  221. .buttongroup a.button.selected:hover {
  222. background: #8a8a8a;
  223. border-right-color: #8a8a8a;
  224. border-left-color: #555;
  225. }
  226. .buttongroup a.button:focus,
  227. .buttongroup a.button.selected:focus {
  228. background: #f2f2f2;
  229. background: -moz-linear-gradient(top, #49b3d2 0, #66bcd9 100%);
  230. background: -webkit-gradient(linear, left top, left bottom, color-stop(0,#49b3d2), color-stop(100%,#66bcd9));
  231. background: -ms-linear-gradient(top, #49b3d2 0, #66bcd9 100%);
  232. background: linear-gradient(to bottom, #49b3d2 0, #66bcd9 100%);
  233. }
  234. .pagenav a.button {
  235. padding: 1px 3px;
  236. height: 16px;
  237. vertical-align: middle;
  238. margin-bottom: 1px;
  239. }
  240. .pagenav .buttongroup a.button,
  241. .pagenav .buttongroup a.button:hover {
  242. padding: 1px 5px;
  243. margin-bottom: 0;
  244. }
  245. a.button span.icon,
  246. .pagenav a.button span.inner {
  247. display: inline-block;
  248. width: 16px;
  249. height: 13px;
  250. text-indent: 1000px;
  251. overflow: hidden;
  252. background: url(images/buttons.png?v=d70c.9130) -6px -211px no-repeat;
  253. }
  254. a.button.prevpage span.icon,
  255. .pagenav a.prevpage span.inner {
  256. background-position: -7px -226px;
  257. }
  258. a.button.nextpage span.icon,
  259. .pagenav a.nextpage span.inner {
  260. background-position: -28px -226px;
  261. }
  262. a.button.lastpage span.icon,
  263. .pagenav a.lastpage span.inner {
  264. background-position: -28px -211px;
  265. }
  266. a.button.pageup span.icon,
  267. .pagenav a.pageup span.inner {
  268. background-position: -7px -241px;
  269. }
  270. a.button.pagedown span.icon,
  271. .pagenav a.pagedown span.inner {
  272. background-position: -29px -241px;
  273. }
  274. a.button.reply span.icon,
  275. .pagenav a.reply span.inner {
  276. background-position: -7px -256px;
  277. }
  278. a.button.forward span.icon,
  279. .pagenav a.forward span.inner {
  280. background-position: -29px -256px;
  281. }
  282. a.button.replyall span.icon,
  283. .pagenav a.replyall span.inner {
  284. background-position: -7px -271px;
  285. }
  286. a.button.extwin span.icon,
  287. .pagenav a.extwin span.inner {
  288. background-position: -29px -271px;
  289. }
  290. a.button.changeformat.html span.icon,
  291. .pagenav a.changeformat.html span.inner {
  292. background-position: -7px -1859px;
  293. }
  294. a.button.changeformat.html.selected span.icon,
  295. .pagenav a.changeformat.html.selected span.inner {
  296. background-position: -29px -1859px;
  297. }
  298. a.button.changeformat.text span.icon,
  299. .pagenav a.changeformat.text span.inner {
  300. background-position: -7px -1874px;
  301. }
  302. a.button.changeformat.text.selected span.icon,
  303. .pagenav a.changeformat.text.selected span.inner {
  304. background-position: -29px -1874px;
  305. }
  306. a.button.add span.icon {
  307. background-position: -7px -2009px;
  308. }
  309. a.button.delete span.icon {
  310. background-position: -29px -2009px;
  311. }
  312. .pagenav .countdisplay {
  313. display: inline-block;
  314. padding: 3px 1em 0 1em;
  315. min-width: 16em;
  316. }
  317. .pagenavbuttons {
  318. position: relative;
  319. top: -2px;
  320. }
  321. .pagenav .pagejumper {
  322. text-align: center;
  323. padding: 3px 0;
  324. cursor: default;
  325. }
  326. a.iconbutton {
  327. display: inline-block;
  328. width: 20px;
  329. height: 18px;
  330. text-decoration: none;
  331. text-indent: -5000px;
  332. background: url(images/buttons.png?v=d70c.9130) -1000px 0 no-repeat;
  333. }
  334. a.iconbutton.disabled {
  335. opacity: 0.4;
  336. cursor: default;
  337. }
  338. a.iconbutton.searchicon,
  339. a.iconbutton.searchoptions {
  340. width: 24px;
  341. background-position: -2px -317px;
  342. }
  343. a.iconbutton.searchicon {
  344. width: 15px;
  345. }
  346. a.iconbutton.reset {
  347. width: 24px;
  348. background-position: -25px -317px;
  349. }
  350. a.iconbutton.remove,
  351. a.iconbutton.cancel {
  352. background-position: -7px -378px;
  353. }
  354. a.iconbutton.delete {
  355. background-position: -7px -338px;
  356. }
  357. a.iconbutton.add {
  358. background-position: -7px -358px;
  359. }
  360. a.iconbutton.remove {
  361. background-position: -7px -379px;
  362. }
  363. a.iconbutton.cancel {
  364. background-position: -7px -398px;
  365. }
  366. a.iconbutton.edit {
  367. background-position: -7px -418px;
  368. }
  369. a.iconbutton.upload {
  370. background-position: -6px -438px;
  371. }
  372. a.iconlink {
  373. display: inline-block;
  374. color: #888;
  375. text-decoration: none;
  376. white-space: nowrap;
  377. padding: 2px 8px 2px 20px;
  378. background: url(images/buttons.png?v=d70c.9130) -1000px 0 no-repeat;
  379. }
  380. a.iconlink:hover {
  381. text-decoration: underline;
  382. }
  383. a.iconlink.delete {
  384. background-position: -7px -337px;
  385. }
  386. a.iconlink.add {
  387. background-position: -7px -357px;
  388. }
  389. a.iconlink.remove {
  390. background-position: -7px -378px;
  391. }
  392. a.iconlink.cancel {
  393. background-position: -7px -397px;
  394. }
  395. a.iconlink.edit {
  396. background-position: -7px -417px;
  397. }
  398. a.iconlink.upload {
  399. background-position: -6px -437px;
  400. }
  401. /*** message bar ***/
  402. #message div.loading,
  403. #message div.uploading,
  404. #message div.warning,
  405. #message div.error,
  406. #message div.notice,
  407. #message div.confirmation,
  408. #message-objects div.notice {
  409. color: #555;
  410. font-weight: bold;
  411. padding: 6px 30px 6px 25px;
  412. display: inline-block;
  413. white-space: nowrap;
  414. background: url(images/messages.png?v=72e9.1264) 0 5px no-repeat;
  415. cursor: default;
  416. }
  417. #message div.warning {
  418. color: #960;
  419. background-position: 0 -86px;
  420. }
  421. #message div.error {
  422. color: #cf2734;
  423. background-position: 0 -57px;
  424. }
  425. #message div.confirmation {
  426. color: #093;
  427. background-position: 0 -25px;
  428. }
  429. #message div.loading {
  430. background: url(images/ajaxloader.gif?v=c252.1434) 2px 6px no-repeat;
  431. }
  432. #message div a,
  433. #message div span {
  434. padding-right: 0.5em;
  435. text-decoration: none;
  436. }
  437. #message div a:hover {
  438. text-decoration: underline;
  439. cursor: pointer;
  440. }
  441. #message.statusbar {
  442. display: none;
  443. position: absolute;
  444. bottom: 0;
  445. left: 0;
  446. right: 0;
  447. height: 27px;
  448. padding-left: 8px;
  449. border-top: 1px solid #ddd;
  450. border-radius: 0 0 4px 4px;
  451. background: #eaeaea;
  452. background: -moz-linear-gradient(top, #eaeaea 0%, #c8c8c8 100%);
  453. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaeaea), color-stop(100%,#c8c8c8));
  454. background: -ms-linear-gradient(top, #eaeaea 0%, #c8c8c8 100%);
  455. background: linear-gradient(to bottom, #eaeaea 0%, #c8c8c8 100%);
  456. white-space: nowrap;
  457. overflow: hidden;
  458. text-overflow: ellipsis;
  459. }
  460. #messagestack {
  461. position: absolute;
  462. bottom: 20px;
  463. right: 12px;
  464. z-index: 50000;
  465. width: auto;
  466. height: auto;
  467. max-height: 85%;
  468. overflow-y: auto;
  469. padding: 2px;
  470. }
  471. #messagestack div {
  472. display: block;
  473. position: relative;
  474. width: 280px;
  475. height: auto;
  476. min-height: 16px;
  477. margin: 3px 2px 5px 2px;
  478. padding: 8px 10px 7px 30px;
  479. cursor: default;
  480. font-size: 12px;
  481. font-weight: bold;
  482. border-radius: 4px;
  483. border: 1px solid #444;
  484. color: #ebebeb;
  485. background: rgba(64,64,64,0.85);
  486. background: -moz-linear-gradient(top, rgba(64,64,64,0.85) 0%, rgba(48,48,48,0.9) 100%);
  487. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(64,64,64,0.85)), color-stop(100%,rgba(48,48,48,0.9)));
  488. background: -webkit-linear-gradient(top, rgba(64,64,64,0.85) 0%, rgba(48,48,48,0.85) 100%);
  489. background: -ms-linear-gradient(top, rgba(64,64,64,0.85) 0%, rgba(48,48,48,0.85) 100%);
  490. background: linear-gradient(to bottom, rgba(64,64,64,0.85) 0%, rgba(48,48,48,0.85) 100%);
  491. }
  492. #messagestack div:after {
  493. content: "";
  494. position: absolute;
  495. display: block;
  496. top: 0;
  497. left: 4px;
  498. width: 20px;
  499. height: 24px;
  500. background: url(images/messages_dark.png?v=8e53.601) 0 7px no-repeat;
  501. }
  502. #messagestack div.error {
  503. color: #ff615d;
  504. }
  505. #messagestack div.error:after {
  506. background-position: 0 -55px;
  507. }
  508. #messagestack div.warning {
  509. color: #f4bf0e;
  510. }
  511. #messagestack div.warning:after {
  512. background-position: 0 -84px;
  513. }
  514. #messagestack div.confirmation {
  515. color: #00e05a;
  516. }
  517. #messagestack div.confirmation:after {
  518. background-position: 0 -25px;
  519. }
  520. #messagestack div.uploading,
  521. #messagestack div.loading {
  522. color: #ddd;
  523. }
  524. #messagestack div.uploading:after,
  525. #messagestack div.loading:after {
  526. top: 4px;
  527. left: 6px;
  528. background: url(images/ajaxloader_dark.gif?v=cf1b.1849) 0 4px no-repeat;
  529. }
  530. #messagestack div.voice {
  531. position: absolute;
  532. top: -1000px;
  533. }
  534. #messagestack div a {
  535. color: #94c0da;
  536. }
  537. #messagestack div a:hover {
  538. text-decoration: underline;
  539. cursor: pointer;
  540. }
  541. .ui-dialog.error .ui-dialog-title,
  542. .ui-dialog.warning .ui-dialog-title,
  543. .ui-dialog.confirmation .ui-dialog-title {
  544. padding-left: 25px;
  545. background: url(images/messages.png?v=72e9.1264) 0 5px no-repeat;
  546. }
  547. .ui-dialog.warning .ui-dialog-title {
  548. color: #960;
  549. background-position: 0 -91px;
  550. }
  551. .ui-dialog.error .ui-dialog-title {
  552. color: #cf2734;
  553. background-position: 0 -62px;
  554. }
  555. .ui-dialog.confirmation .ui-dialog-title {
  556. color: #093;
  557. background-position: 0 -32px;
  558. }
  559. .ui-autocomplete {
  560. max-height: 160px;
  561. overflow-x: hidden;
  562. overflow-y: auto;
  563. }
  564. /*** basic page layout ***/
  565. #header {
  566. overflow-x: hidden; /* Chrome bug #1488851 */
  567. }
  568. #topline {
  569. height: 18px;
  570. background-color: #333333;
  571. border-bottom: 1px solid #383838;
  572. padding: 2px 0 2px 10px;
  573. color: #aaa;
  574. text-align: center;
  575. }
  576. #topnav {
  577. position: relative;
  578. height: 46px;
  579. margin-bottom: 10px;
  580. padding: 0 0 0 10px;
  581. background: #1c1c1c;
  582. }
  583. #topline a,
  584. #topnav a {
  585. color: #eee;
  586. text-decoration: none;
  587. }
  588. #topline a:hover {
  589. text-decoration: underline;
  590. }
  591. #toplogo {
  592. padding-top: 2px;
  593. cursor: pointer;
  594. border: none;
  595. }
  596. .topleft {
  597. float: left;
  598. }
  599. .topright {
  600. float: right;
  601. }
  602. .closelink {
  603. display: inline-block;
  604. padding: 2px 10px 2px 20px;
  605. }
  606. #topline span.username {
  607. padding-right: 1em;
  608. }
  609. #topline .topleft a {
  610. display: inline-block;
  611. padding: 2px 0.8em 0 0;
  612. color: #aaa;
  613. }
  614. #topline a.button-logout {
  615. display: inline-block;
  616. padding: 2px 10px 2px 20px;
  617. background: url(images/buttons.png?v=d70c.9130) -6px -193px no-repeat;
  618. color: #fff;
  619. }
  620. #taskbar .button-logout {
  621. display: none;
  622. }
  623. #taskbar a.button-logout span.button-inner {
  624. background-position: -2px -1791px;
  625. }
  626. #taskbar a.button-logout:hover span.button-inner {
  627. background-position: -2px -1829px;
  628. }
  629. /*** minimal version of the page header ***/
  630. .minimal #topline {
  631. position: fixed;
  632. top: -18px;
  633. background: #444;
  634. z-index: 5000;
  635. width: 100%;
  636. height: 22px;
  637. -moz-box-sizing: border-box;
  638. box-sizing: border-box;
  639. }
  640. .minimal #topline:hover {
  641. top: 0px;
  642. opacity: 0.94;
  643. -webkit-transition: top 0.3s ease-in-out;
  644. -moz-transition: top 0.3s ease-in-out;
  645. transition: top 0.3s ease-in-out;
  646. }
  647. .extwin #topline,
  648. .extwin #topline:hover {
  649. position: static;
  650. top: 0px;
  651. height: 18px;
  652. width: auto;
  653. -moz-box-sizing: content-box;
  654. box-sizing: content-box;
  655. opacity: 0.999;
  656. }
  657. .minimal #topline a.button-logout {
  658. display: none;
  659. }
  660. .minimal #topline span.username {
  661. display: inline-block;
  662. padding-top: 2px;
  663. }
  664. .minimal #topnav {
  665. position: relative;
  666. top: 4px;
  667. height: 42px;
  668. }
  669. .minimal #taskbar a {
  670. position: relative;
  671. padding: 10px 10px 0 6px;
  672. height: 32px;
  673. }
  674. .minimal #taskbar .button-logout {
  675. display: inline-block;
  676. }
  677. .minimal #taskbar .button-inner {
  678. top: -4px;
  679. padding: 0;
  680. height: 24px !important;
  681. width: 27px;
  682. text-indent: -5000px;
  683. }
  684. #taskbar .tooltip {
  685. display: none;
  686. }
  687. .minimal #taskbar .tooltip {
  688. position: absolute;
  689. top: -500px;
  690. right: 2px;
  691. display: inline-block;
  692. padding: 2px 8px 3px 8px;
  693. background: #444;
  694. color: #eee;
  695. font-weight: bold;
  696. white-space: nowrap;
  697. box-shadow: 0 1px 4px 0 #333;
  698. z-index: 200;
  699. white-space: nowrap;
  700. }
  701. .minimal #taskbar .tooltip:after {
  702. content: "";
  703. position: absolute;
  704. top: -4px;
  705. right: 15px;
  706. border-style: solid;
  707. border-width: 0 4px 4px;
  708. border-color: #444 transparent;
  709. /* reduce the damage in FF3.0 */
  710. display: block;
  711. width: 0;
  712. z-index: 251;
  713. }
  714. .minimal #taskbar a:hover .tooltip {
  715. display: block;
  716. top: 39px;
  717. }
  718. /*** taskbar ***/
  719. #taskbar {
  720. position: relative;
  721. padding-right: 18px;
  722. }
  723. #taskbar a {
  724. display: inline-block;
  725. height: 34px;
  726. padding: 12px 10px 0 6px;
  727. }
  728. #taskbar a span.button-inner {
  729. display: inline-block;
  730. font-size: 110%;
  731. font-weight: normal;
  732. padding: 5px 0 0 34px;
  733. height: 19px;
  734. background: url(images/buttons.png?v=d70c.9130) -1000px 0 no-repeat;
  735. }
  736. #taskbar a:focus {
  737. color: #fff;
  738. background-color: rgba(73,180,210,0.7);
  739. outline: none;
  740. }
  741. #taskbar a.button-selected {
  742. color: #20a6fb;
  743. background-color: #2c2c2c;
  744. }
  745. #taskbar a.button-mail span.button-inner {
  746. background-position: 0 2px;
  747. }
  748. #taskbar a.button-mail:hover span.button-inner,
  749. #taskbar a.button-mail.button-selected span.button-inner {
  750. background-position: 0 -22px;
  751. }
  752. #taskbar a.button-addressbook span.button-inner {
  753. background-position: 0 -48px;
  754. }
  755. #taskbar a.button-addressbook:hover span.button-inner,
  756. #taskbar a.button-addressbook.button-selected span.button-inner {
  757. background-position: 0 -72px;
  758. }
  759. #taskbar a.button-settings span.button-inner {
  760. background-position: 0 -96px;
  761. }
  762. #taskbar a.button-settings:hover span.button-inner,
  763. #taskbar a.button-settings.button-selected span.button-inner {
  764. background-position: 0 -120px;
  765. }
  766. #taskbar a.button-calendar span.button-inner {
  767. background-position: 0 -144px;
  768. }
  769. #taskbar a.button-calendar:hover span.button-inner,
  770. #taskbar a.button-calendar.button-selected span.button-inner {
  771. background-position: 0 -168px;
  772. }
  773. #taskbar .minmodetoggle {
  774. position: absolute;
  775. top: 0;
  776. right: 0;
  777. display: block;
  778. width: 19px;
  779. height: 46px;
  780. cursor: pointer;
  781. background: url(images/buttons.png?v=d70c.9130) -35px -1778px no-repeat;
  782. }
  783. .minimal #taskbar .minmodetoggle {
  784. height: 42px;
  785. background-position: -35px -1820px;
  786. }
  787. #mainscreen {
  788. position: absolute;
  789. top: 88px;
  790. left: 10px;
  791. right: 10px;
  792. bottom: 20px;
  793. }
  794. #mainscreencontent {
  795. position: absolute;
  796. top: 42px;
  797. left: 0;
  798. right: 0;
  799. bottom: 0;
  800. }
  801. #mainscreen.offset {
  802. top: 132px;
  803. }
  804. #mainscreen .offset {
  805. top: 42px;
  806. }
  807. .minimal #mainscreen {
  808. top: 62px;
  809. }
  810. .minimal #mainscreen.offset {
  811. top: 102px;
  812. }
  813. .extwin #mainscreen {
  814. top: 40px;
  815. }
  816. .extwin #mainscreen.offset {
  817. top: 86px;
  818. }
  819. .uibox {
  820. border: 1px solid #b2b8bf;
  821. border-radius: 4px;
  822. overflow: hidden;
  823. background: #fff;
  824. }
  825. .minwidth {
  826. min-width: 1024px;
  827. }
  828. .scroller {
  829. overflow: auto;
  830. }
  831. .watermark {
  832. background-image: url(images/watermark.jpg?v=e784.5000);
  833. background-position: center;
  834. background-repeat: no-repeat;
  835. }
  836. /* fix scrolling within iframes in webkit browsers on touch devices */
  837. @media screen and (-webkit-min-device-pixel-ratio:0) and (max-device-width:1024px) {
  838. .iframebox {
  839. overflow: auto;
  840. -webkit-overflow-scrolling: touch;
  841. }
  842. }
  843. /*** lists ***/
  844. .listbox {
  845. background: #d9ecf4;
  846. overflow: hidden;
  847. }
  848. .listbox .scroller {
  849. position: absolute;
  850. top: 0;
  851. left: 0;
  852. width: 100%;
  853. bottom: 0;
  854. overflow-x: hidden;
  855. overflow-y: auto;
  856. }
  857. .listbox .scroller.withfooter {
  858. bottom: 42px;
  859. }
  860. .listbox .boxtitle + .scroller {
  861. top: 34px;
  862. }
  863. .boxtitle,
  864. .uibox .listing thead th,
  865. .uibox .listing thead td {
  866. font-size: 12px;
  867. font-weight: bold;
  868. padding: 7px 8px 6px 8px;
  869. line-height: 20px;
  870. margin: 0;
  871. border-bottom: 1px solid #bbd3da;
  872. white-space: nowrap;
  873. }
  874. .uibox .listing thead th,
  875. .uibox .listing thead td {
  876. padding-bottom: 8px;
  877. height: auto;
  878. }
  879. .uibox .boxtitle,
  880. .uibox .listing thead th,
  881. .uibox .listing thead td {
  882. background: #b0ccd7;
  883. color: #004458;
  884. border-radius: 4px 4px 0 0;
  885. }
  886. .listbox .listitem,
  887. .listbox .tablink,
  888. .listing tbody td,
  889. .listing li {
  890. display: block;
  891. border-bottom: 1px solid #bbd3da;
  892. cursor: default;
  893. font-weight: normal;
  894. }
  895. .listbox .listitem a,
  896. .listbox .listitem span,
  897. .listbox .tablink a,
  898. .listing tbody td,
  899. .listing li a {
  900. display: block;
  901. color: #376572;
  902. text-decoration: none;
  903. cursor: default;
  904. padding: 5px 8px;
  905. line-height: 17px;
  906. height: 17px;
  907. white-space: nowrap;
  908. }
  909. .listing tbody td {
  910. display: table-cell;
  911. min-height: 14px;
  912. outline: none;
  913. }
  914. .listing tbody td a {
  915. color: #376572;
  916. text-decoration: none;
  917. }
  918. .webkit .listing tbody td {
  919. height: 14px;
  920. }
  921. /* This padding-left minus the focused padding left should be half of the focused border-left */
  922. .listing thead tr td:first-child,
  923. .listing tbody tr td:first-child {
  924. border-left: 2px solid transparent;
  925. padding-left: 6px;
  926. }
  927. .listing.iconized thead tr td:first-child,
  928. .listing.iconized tbody tr td:first-child {
  929. padding-left: 34px;
  930. }
  931. /* because of border-collapse, we make the left border twice what we want it to be - half will be hidden to the left */
  932. .listing.focus tbody tr.focused > td:first-child {
  933. border-left: 2px solid #739da8;
  934. }
  935. .listbox .listitem.selected,
  936. .listbox .tablink.selected,
  937. .listbox .listitem.selected > a,
  938. .listbox .tablink.selected > a,
  939. .listing tbody tr.selected td,
  940. .listing li.selected,
  941. .listing li.selected > a {
  942. color: #004458;
  943. font-weight: bold;
  944. background-color: #c7e3ef;
  945. }
  946. ul.listing {
  947. display: block;
  948. list-style: none;
  949. margin: 0;
  950. padding: 0;
  951. }
  952. ul.listing li {
  953. background-color: #d9ecf4;
  954. overflow: hidden;
  955. text-overflow: ellipsis;
  956. white-space: nowrap;
  957. }
  958. ul.listing li ul {
  959. border-top: 1px solid #bbd3da;
  960. }
  961. ul.listing li.droptarget,
  962. table.listing tr.droptarget td {
  963. background-color: #e8e798;
  964. }
  965. .listbox table.listing {
  966. background-color: #d9ecf4;
  967. }
  968. table.listing,
  969. table.layout {
  970. border: 0;
  971. width: 100%;
  972. border-spacing: 0;
  973. }
  974. table.layout td {
  975. vertical-align: top;
  976. }
  977. ul.treelist li {
  978. position: relative;
  979. }
  980. ul.treelist li ul {
  981. margin: 0;
  982. padding: 0;
  983. }
  984. ul.treelist li ul li:last-child {
  985. border-bottom: 0;
  986. }
  987. ul.treelist li a {
  988. display: block;
  989. padding-left: 20px;
  990. overflow: hidden;
  991. text-overflow: ellipsis;
  992. }
  993. ul.treelist li a:focus,
  994. ul.listing .listitem a:focus,
  995. ul.listing .listitem span:focus,
  996. ul.listing.focus .listitem.focused span {
  997. color: #fff !important;
  998. background-color: rgba(73,180,210,0.6);
  999. outline: none;
  1000. }
  1001. ul.treelist ul li a {
  1002. padding-left: 38px;
  1003. }
  1004. ul.treelist ul ul li a {
  1005. padding-left: 54px;
  1006. }
  1007. ul.treelist.iconized li a {
  1008. padding-left: 36px;
  1009. }
  1010. ul.treelist.iconized ul li a {
  1011. padding-left: 62px;
  1012. }
  1013. ul.treelist.iconized ul ul li a {
  1014. padding-left: 88px;
  1015. }
  1016. ul.treelist.iconized ul ul ul li a {
  1017. padding-left: 114px;
  1018. }
  1019. ul.treelist li div.treetoggle {
  1020. position: absolute;
  1021. top: 7px;
  1022. left: 4px;
  1023. width: 13px;
  1024. height: 13px;
  1025. background: url(images/listicons.png?v=c458.10409) -3px -144px no-repeat;
  1026. cursor: pointer;
  1027. }
  1028. ul.treelist li ul li div.treetoggle {
  1029. left: 22px;
  1030. }
  1031. ul.treelist.iconized li div.treetoggle {
  1032. top: 13px;
  1033. left: 19px;
  1034. }
  1035. ul.treelist.iconized ul li div.treetoggle {
  1036. left: 45px;
  1037. }
  1038. ul.treelist.iconized ul ul li div.treetoggle {
  1039. left: 71px;
  1040. }
  1041. ul.treelist li div.treetoggle.expanded {
  1042. background-position: -3px -168px;
  1043. }
  1044. ul.treelist li.selected > div.collapsed {
  1045. background-position: -23px -144px;
  1046. }
  1047. ul.treelist li.selected > div.expanded {
  1048. background-position: -23px -168px;
  1049. }
  1050. .listbox .boxfooter {
  1051. position: absolute;
  1052. bottom: 0;
  1053. left: 0;
  1054. width: 100%;
  1055. height: 42px;
  1056. border-top: 1px solid #bbd3da;
  1057. background: #d9ecf4;
  1058. white-space: nowrap;
  1059. overflow: hidden;
  1060. }
  1061. .uibox .boxfooter {
  1062. border-radius: 0 0 4px 4px;
  1063. }
  1064. .boxfooter .listbutton {
  1065. display: inline-block;
  1066. text-decoration: none;
  1067. width: 48px;
  1068. border-right: 1px solid #fff;
  1069. background: #c7e3ef;
  1070. padding: 3px 0;
  1071. margin-top: 1px;
  1072. }
  1073. .boxfooter a.listbutton:focus {
  1074. color: #fff;
  1075. background-color: rgba(73,180,210,0.6);
  1076. outline: none;
  1077. }
  1078. .uibox .boxfooter .listbutton:first-child {
  1079. border-radius: 0 0 0 4px;
  1080. }
  1081. .boxfooter .listbutton .inner {
  1082. display: inline-block;
  1083. width: 48px;
  1084. height: 35px;
  1085. text-indent: -5000px;
  1086. background-image: url(images/buttons.png?v=d70c.9130);
  1087. background-position: -1000px 0;
  1088. background-repeat: no-repeat;
  1089. }
  1090. .boxfooter .listbutton.add .inner {
  1091. background-position: 10px -1301px;
  1092. }
  1093. .boxfooter .listbutton.delete .inner {
  1094. background-position: 10px -1342px;
  1095. }
  1096. .boxfooter .listbutton.groupactions .inner {
  1097. background-position: 5px -1382px;
  1098. }
  1099. .boxfooter .listbutton.addto .inner {
  1100. background-position: 5px -1422px;
  1101. }
  1102. .boxfooter .listbutton.addcc .inner {
  1103. background-position: 5px -1462px;
  1104. }
  1105. .boxfooter .listbutton.addbcc {
  1106. width: 54px;
  1107. }
  1108. .boxfooter .listbutton.addbcc .inner {
  1109. width: 54px;
  1110. background-position: 2px -1502px;
  1111. }
  1112. .boxfooter .listbutton.removegroup .inner {
  1113. background-position: 5px -1540px;
  1114. }
  1115. .boxfooter .listbutton.disabled .inner {
  1116. opacity: 0.4;
  1117. }
  1118. .boxfooter .countdisplay {
  1119. display: inline-block;
  1120. position: relative;
  1121. top: 10px;
  1122. color: #69929e;
  1123. padding: 3px 6px;
  1124. }
  1125. .boxpagenav {
  1126. position: absolute;
  1127. top: 10px;
  1128. right: 6px;
  1129. width: auto;
  1130. }
  1131. .boxpagenav a.icon {
  1132. display: inline-block;
  1133. padding: 1px 3px;
  1134. height: 13px;
  1135. width: 14px;
  1136. text-indent: 1000px;
  1137. vertical-align: bottom;
  1138. overflow: hidden;
  1139. background: url(images/buttons.png?v=d70c.9130) -4px -286px no-repeat;
  1140. }
  1141. .boxpagenav a.icon.prevpage {
  1142. background-position: -4px -301px;
  1143. }
  1144. .boxpagenav a.icon.nextpage {
  1145. background-position: -28px -301px;
  1146. }
  1147. .boxpagenav a.icon.lastpage {
  1148. background-position: -28px -286px;
  1149. }
  1150. .boxpagenav a.icon.disabled {
  1151. opacity: 0.4;
  1152. }
  1153. .centerbox {
  1154. width: 40em;
  1155. margin: 16px auto;
  1156. }
  1157. .errorbox {
  1158. width: 40em;
  1159. padding: 20px;
  1160. }
  1161. .errorbox h3 {
  1162. font-size: 16px;
  1163. margin-top: 0;
  1164. }
  1165. /*** Records table ***/
  1166. table.records-table {
  1167. display: table;
  1168. width: 100%;
  1169. table-layout: fixed;
  1170. border-spacing: 0;
  1171. border: 1px solid #bbd3da;
  1172. }
  1173. .boxlistcontent .records-table {
  1174. border: 0;
  1175. }
  1176. .records-table thead th,
  1177. .records-table thead td {
  1178. color: #69939e;
  1179. font-size: 11px;
  1180. font-weight: bold;
  1181. background: #d6eaf3;
  1182. border-left: 1px solid #bbd3da;
  1183. padding: 8px 7px;
  1184. overflow: hidden;
  1185. text-overflow: ellipsis;
  1186. text-align: left;
  1187. }
  1188. .records-table.sortheader thead th,
  1189. .records-table.sortheader thead td {
  1190. padding: 0;
  1191. }
  1192. .records-table thead th a,
  1193. .records-table thead td a,
  1194. .records-table thead th span,
  1195. .records-table thead td span {
  1196. display: block;
  1197. padding: 7px 7px;
  1198. color: #69939e;
  1199. text-decoration: none;
  1200. overflow: hidden;
  1201. text-overflow: ellipsis;
  1202. }
  1203. .records-table thead th a:focus,
  1204. .records-table thead td a:focus {
  1205. color: #fff;
  1206. background-color: rgba(73,180,210,0.7);
  1207. outline: none;
  1208. }
  1209. .records-table tbody td {
  1210. padding: 2px 7px;
  1211. border-bottom: 1px solid #ddd;
  1212. border-left: 1px dotted #bbd3da;
  1213. white-space: nowrap;
  1214. cursor: default;
  1215. overflow: hidden;
  1216. text-overflow: ellipsis;
  1217. background-color: #fff;
  1218. outline: none;
  1219. }
  1220. /* This padding-left minus the focused padding left should be half of the focused border-left */
  1221. .records-table thead tr th:first-child,
  1222. .records-table thead tr td:first-child,
  1223. .records-table tbody tr td:first-child {
  1224. border-left: 2px solid transparent;
  1225. padding-left: 4px;
  1226. }
  1227. /* because of border-collapse, we make the left border twice what we want it to be - half will be hidden to the left */
  1228. .records-table.focus tbody tr.focused > td:first-child {
  1229. border-left: 2px solid #49b3d2;
  1230. }
  1231. .records-table tr.selected td {
  1232. color: #fff !important;
  1233. background-color: #4db0d2;
  1234. }
  1235. .records-table.focus tr.selected td {
  1236. background-color: #017db6 !important;
  1237. }
  1238. .records-table tr.selected td a,
  1239. .records-table tr.selected td span {
  1240. color: #fff !important;
  1241. }
  1242. .records-table tr.deleted td,
  1243. .records-table tr.deleted td a {
  1244. color: #ccc !important;
  1245. }
  1246. /*** iFrames ***/
  1247. #aboutframe {
  1248. width: 97%;
  1249. height: 100%;
  1250. border: 0;
  1251. padding: 0;
  1252. }
  1253. body.iframe {
  1254. background: #fff;
  1255. margin: 38px 0 10px 0;
  1256. }
  1257. body.iframe.error {
  1258. background: #ededed;
  1259. }
  1260. body.iframe.floatingbuttons {
  1261. margin-bottom: 40px;
  1262. }
  1263. body.iframe.fullheight {
  1264. margin: 0;
  1265. }
  1266. .contentbox .boxtitle,
  1267. body.iframe .boxtitle {
  1268. color: #777;
  1269. background: #efefef;
  1270. border-bottom: 1px solid #d0d0d0;
  1271. }
  1272. body.iframe .boxtitle {
  1273. position: fixed;
  1274. top: 0;
  1275. left: 0;
  1276. width: 100%;
  1277. z-index: 100;
  1278. }
  1279. body.iframe .footerleft.floating,
  1280. #composeview-bottom .formbuttons.floating {
  1281. position: fixed;
  1282. left: 0;
  1283. bottom: 0;
  1284. width: 100%;
  1285. z-index: 110;
  1286. background: #fff;
  1287. padding-top: 8px;
  1288. padding-bottom: 12px;
  1289. }
  1290. body.iframe .footerleft.floating:before,
  1291. #composeview-bottom .formbuttons.floating:before {
  1292. content: " ";
  1293. position: absolute;
  1294. top: -6px;
  1295. left: 0;
  1296. width: 100%;
  1297. height: 6px;
  1298. background: url(images/overflowshadow.png?v=ac21.201) top center no-repeat;
  1299. }
  1300. .boxcontent {
  1301. padding: 10px;
  1302. }
  1303. .boxcontent .boxwarning {
  1304. margin: 0 0 10px;
  1305. display: block;
  1306. color: #960;
  1307. border: 1px solid #ffdf0e;
  1308. background: url(images/messages.png?v=72e9.1264) #fef893 5px -85px no-repeat;
  1309. padding: 6px 12px 6px 30px;
  1310. }
  1311. .contentbox .scroller {
  1312. position: absolute;
  1313. top: 34px;
  1314. left: 0;
  1315. right: 0;
  1316. bottom: 0px;
  1317. overflow: auto;
  1318. }
  1319. .iframebox {
  1320. position: absolute;
  1321. top: 0;
  1322. left: 0;
  1323. right: 0;
  1324. bottom: 0px;
  1325. }
  1326. .footerleft {
  1327. padding: 0 12px 4px 12px;
  1328. }
  1329. .propform fieldset {
  1330. margin-bottom: 20px;
  1331. border: 0;
  1332. padding: 0;
  1333. }
  1334. .propform fieldset legend {
  1335. display: block;
  1336. font-size: 14px;
  1337. font-weight: bold;
  1338. padding-bottom: 10px;
  1339. margin-bottom: 0;
  1340. }
  1341. .propform fieldset fieldset legend {
  1342. color: #666;
  1343. font-size: 12px;
  1344. }
  1345. .propform div.prop {
  1346. margin-bottom: 0.5em;
  1347. }
  1348. .propform div.prop.block label {
  1349. display: block;
  1350. margin-bottom: 0.3em;
  1351. }
  1352. .propform div.prop.block input,
  1353. .propform div.prop.block textarea {
  1354. width: 95%;
  1355. }
  1356. .propform a.disabled {
  1357. color: #999;
  1358. text-decoration: none;
  1359. cursor: default;
  1360. }
  1361. fieldset.floating {
  1362. float: left;
  1363. margin-right: 10px;
  1364. margin-bottom: 10px;
  1365. }
  1366. table.propform {
  1367. width: 100%;
  1368. border-spacing: 0;
  1369. border-collapse: collapse;
  1370. }
  1371. ul.proplist li,
  1372. table.propform td {
  1373. width: 80%;
  1374. padding: 4px 10px;
  1375. background: #eee;
  1376. border-bottom: 2px solid #fff;
  1377. }
  1378. table.propform td.title {
  1379. width: 20%;
  1380. color: #333;
  1381. padding-right: 20px;
  1382. white-space: nowrap;
  1383. }
  1384. table.propform .mceLayout td {
  1385. padding: 0;
  1386. border-bottom: 0;
  1387. }
  1388. ul.proplist {
  1389. list-style: none;
  1390. margin: 0;
  1391. padding: 0;
  1392. }
  1393. ul.proplist li {
  1394. width: auto;
  1395. }
  1396. #pluginbody {
  1397. position: absolute;
  1398. top: 0;
  1399. left: 0;
  1400. right: 0;
  1401. bottom: 0;
  1402. }
  1403. /*** Login form ***/
  1404. #login-form {
  1405. position: relative;
  1406. width: 580px;
  1407. margin: 20ex auto 2ex auto;
  1408. }
  1409. #login-form .box-inner {
  1410. width: 430px;
  1411. background: #404040;
  1412. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #404040), color-stop(100%, #2e2e2e));
  1413. background: -ms-linear-gradient(top, #404040 0%, #2e2e2e 100%);
  1414. background: linear-gradient(to bottom, #404040 0%, #2e2e2e 100%);
  1415. margin: 0 50px;
  1416. padding: 10px 24px 24px 24px;
  1417. border-radius: 6px;
  1418. }
  1419. #login-form .box-bottom {
  1420. margin-top: -3px;
  1421. padding-top: 10px;
  1422. }
  1423. #login-form .noscriptwarning {
  1424. margin: 0 auto;
  1425. width: 430px;
  1426. color: #cf2734;
  1427. font-size: 110%;
  1428. font-weight: bold;
  1429. }
  1430. #login-form td.input {
  1431. width: 80%;
  1432. padding: 8px;
  1433. }
  1434. #login-form input[type="text"],
  1435. #login-form input[type="password"] {
  1436. width: 100%;
  1437. border-color: #666;
  1438. }
  1439. #login-form input.button {
  1440. color: #444;
  1441. border-color: #f9f9f9;
  1442. background-color: #f9f9f9;
  1443. }
  1444. #login-form input.button:active {
  1445. color: #333;
  1446. background-color: #dcdcdc;
  1447. }
  1448. #login-form form table {
  1449. width: 98%;
  1450. }
  1451. #login-form td.title {
  1452. width: 20%;
  1453. white-space: nowrap;
  1454. color: #cecece;
  1455. text-align: right;
  1456. padding-right: 1em;
  1457. }
  1458. #login-form p.formbuttons {
  1459. margin-top: 2em;
  1460. text-align: center;
  1461. }
  1462. #login-form #logo {
  1463. margin-bottom: 20px;
  1464. border: none;
  1465. }
  1466. #login-form #message {
  1467. min-height: 40px;
  1468. padding: 5px 25px;
  1469. text-align: center;
  1470. font-size: 1.1em;
  1471. }
  1472. #login-form #message div {
  1473. display: inline-block;
  1474. padding-right: 0;
  1475. font-size: 12px;
  1476. }
  1477. #bottomline {
  1478. font-size: 90%;
  1479. text-align: center;
  1480. margin-top: 2em;
  1481. }
  1482. /*** quicksearch **/
  1483. .searchbox {
  1484. position: relative;
  1485. }
  1486. #quicksearchbar {
  1487. position: absolute;
  1488. right: 2px;
  1489. top: 2px;
  1490. width: 240px;
  1491. }
  1492. .searchbox input,
  1493. #quicksearchbar input {
  1494. width: 176px;
  1495. margin: 0;
  1496. padding: 3px 30px 3px 34px;
  1497. height: 18px;
  1498. background: #f1f1f1;
  1499. border-color: #ababab;
  1500. font-weight: bold;
  1501. font-size: 11px;
  1502. }
  1503. .searchbox .searchicon,
  1504. .searchbox #searchmenulink,
  1505. #quicksearchbar #searchmenulink {
  1506. position: absolute;
  1507. top: 5px;
  1508. left: 6px;
  1509. }
  1510. .searchbox #searchreset,
  1511. .searchbox .iconbutton.reset,
  1512. #quicksearchbar #searchreset {
  1513. position: absolute;
  1514. top: 4px;
  1515. right: 1px;
  1516. }
  1517. .listsearchbox {
  1518. padding: 4px;
  1519. background: #c7e3ef;
  1520. display: none;
  1521. }
  1522. .listsearchbox input {
  1523. width: 100%;
  1524. height: 26px;
  1525. -moz-box-sizing: border-box;
  1526. box-sizing: border-box;
  1527. }
  1528. /*** toolbar ***/
  1529. .toolbar .spacer {
  1530. display: inline-block;
  1531. width: 24px;
  1532. height: 40px;
  1533. padding: 0;
  1534. }
  1535. .toolbar a.button {
  1536. text-align: center;
  1537. font-size: 10px;
  1538. color: #555;
  1539. min-width: 50px;
  1540. max-width: 70px;
  1541. height: 13px;
  1542. overflow: hidden;
  1543. text-overflow: ellipsis;
  1544. white-space: nowrap;
  1545. padding: 28px 2px 0 2px;
  1546. background: url(images/buttons.png?v=d70c.9130) -100px 0 no-repeat transparent;
  1547. border: 0;
  1548. border-radius: 0;
  1549. }
  1550. .dropbutton .dropbuttontip:focus,
  1551. .toolbar a.button:focus {
  1552. color: #fff;
  1553. background-color: rgba(30,150,192, 0.5);
  1554. border-radius: 3px;
  1555. }
  1556. .toolbar a.button.disabled {
  1557. opacity: 0.4;
  1558. }
  1559. .toolbar a.button.selected {
  1560. color: #1978a1;
  1561. }
  1562. .toolbar a.button.selected:focus {
  1563. color: #fff;
  1564. }
  1565. .toolbar a.button.hidden {
  1566. display: none;
  1567. }
  1568. .dropbutton {
  1569. display: inline-block;
  1570. position: relative;
  1571. }
  1572. .dropbutton .dropbuttontip {
  1573. display: block;
  1574. position: absolute;
  1575. right: 0;
  1576. top: 0;
  1577. height: 41px;
  1578. width: 18px;
  1579. overflow: hidden;
  1580. text-indent: -5000px;
  1581. background: url(images/buttons.png?v=d70c.9130) 0 -1255px no-repeat;
  1582. cursor: pointer;
  1583. outline: none;
  1584. }
  1585. .dropbutton .dropbuttontip:focus,
  1586. .dropbutton .dropbuttontip:hover {
  1587. background-position: -26px -1255px;
  1588. }
  1589. .dropbutton a.button.disabled + .dropbuttontip {
  1590. opacity: 0.5;
  1591. }
  1592. .dropbutton a.button.disabled + .dropbuttontip:hover {
  1593. background-position: 0 -1255px;
  1594. }
  1595. .dropbutton a.button {
  1596. margin-left: 0;
  1597. padding-left: 0;
  1598. margin-right: 0;
  1599. padding-right: 0;
  1600. }
  1601. .toolbar a.button.back {
  1602. background-position: 0 -1216px;
  1603. }
  1604. .toolbar a.button.checkmail {
  1605. background-position: center -1176px;
  1606. }
  1607. .toolbar a.button.compose {
  1608. background-position: center -530px;
  1609. }
  1610. .toolbar a.button.reply {
  1611. background-position: center -570px;
  1612. }
  1613. .toolbar a.button.reply-all {
  1614. min-width: 64px;
  1615. background-position: 0 -610px;
  1616. }
  1617. .toolbar a.button.forward {
  1618. min-width: 64px;
  1619. background-position: 0 -650px;
  1620. }
  1621. .toolbar a.button.delete {
  1622. background-position: center -690px;
  1623. }
  1624. .toolbar a.button.archive {
  1625. background-position: center -730px;
  1626. }
  1627. .toolbar a.button.junk {
  1628. background-position: center -770px;
  1629. }
  1630. .toolbar a.button.print {
  1631. background-position: center -810px;
  1632. }
  1633. .toolbar a.button.markmessage {
  1634. background-position: center -1094px;
  1635. }
  1636. .toolbar a.button.move {
  1637. background-position: center -1971px;
  1638. }
  1639. .toolbar a.button.more {
  1640. background-position: center -850px;
  1641. }
  1642. .toolbar a.button.attach {
  1643. background-position: center -890px;
  1644. }
  1645. .toolbar a.button.spellcheck {
  1646. min-width: 64px;
  1647. background-position: 0 -930px;
  1648. }
  1649. .toolbar a.button.spellcheck.selected {
  1650. background-position: 0 -1620px;
  1651. color: #1978a1;
  1652. }
  1653. .toolbar a.button.insertsig {
  1654. background-position: center -1135px;
  1655. }
  1656. .toolbar a.button.search {
  1657. background-position: center -970px;
  1658. }
  1659. .toolbar a.button.import {
  1660. background-position: center -1012px;
  1661. }
  1662. .toolbar a.button.export {
  1663. min-width: 64px;
  1664. background-position: 0 -1054px;
  1665. }
  1666. .toolbar a.button.send {
  1667. background-position: center -1660px;
  1668. }
  1669. .toolbar a.button.savedraft {
  1670. background-position: center -1700px;
  1671. }
  1672. .toolbar a.button.close {
  1673. background-position: 0 -1745px;
  1674. }
  1675. .toolbar a.button.download {
  1676. background-position: center -1892px;
  1677. }
  1678. .toolbar a.button.responses {
  1679. background-position: center -1932px;
  1680. }
  1681. .toolbar a.button.encrypt {
  1682. background-position: center -2025px;
  1683. }
  1684. .toolbar a.button.encrypt.selected {
  1685. background-position: center -2065px;
  1686. }
  1687. a.menuselector {
  1688. display: inline-block;
  1689. border: 1px solid #ababab;
  1690. border-radius: 4px;
  1691. background: #f1f1f1;
  1692. text-decoration: none;
  1693. color: #333;
  1694. cursor: pointer;
  1695. white-space: nowrap;
  1696. }
  1697. a.menuselector .handle {
  1698. display: inline-block;
  1699. padding: 0 32px 0 6px;
  1700. height: 20px;
  1701. line-height: 19px;
  1702. background: url(images/selector.png?v=0d5b.118) right center no-repeat;
  1703. border-radius: 4px;
  1704. }
  1705. a.menuselector:active {
  1706. background: #dddddd;
  1707. background: -moz-linear-gradient(top, #dddddd 0%, #f8f8f8 100%);
  1708. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dddddd), color-stop(100%,#f8f8f8));
  1709. background: -ms-linear-gradient(top, #dddddd 0%, #f8f8f8 100%);
  1710. background: linear-gradient(to bottom, #dddddd 0%, #f8f8f8 100%);
  1711. text-decoration: none;
  1712. }
  1713. select.decorated {
  1714. position: relative;
  1715. z-index: 10;
  1716. opacity: 0;
  1717. height: 22px;
  1718. cursor: pointer;
  1719. -khtml-appearance: none;
  1720. -webkit-appearance: none;
  1721. border: 0;
  1722. }
  1723. html.opera select.decorated {
  1724. opacity: 1;
  1725. }
  1726. select.decorated option {
  1727. color: #fff;
  1728. background: #444;
  1729. border: 0;
  1730. border-top: 1px solid #5a5a5a;
  1731. border-bottom: 1px solid #333;
  1732. padding: 4px 6px;
  1733. outline: none;
  1734. cursor: default;
  1735. }
  1736. a.menuselector:focus,
  1737. a.menuselector.focus,
  1738. a.iconbutton:focus,
  1739. .pagenav a.button:focus {
  1740. border-color: #0883d0;
  1741. box-shadow: 0 0 4px 2px rgba(71,135,177, 0.8);
  1742. outline: none;
  1743. }
  1744. /*** quota indicator ***/
  1745. #quotadisplay {
  1746. left: 6px;
  1747. height: 18px;
  1748. font-size: 12px;
  1749. font-weight: bold;
  1750. padding-left: 30px;
  1751. background: url(images/quota.png?v=aaa4.1389) -100px 0 no-repeat;
  1752. }
  1753. #quotadisplay.p90,
  1754. #quotadisplay.p100 {
  1755. color: #e03221;
  1756. }
  1757. table.quota-info {
  1758. border-spacing: 0;
  1759. border-collapse: collapse;
  1760. table-layout: fixed;
  1761. margin: 5px;
  1762. }
  1763. table.quota-info td,
  1764. table.quota-info th {
  1765. color: white;
  1766. border: 1px solid lightgrey;
  1767. padding: 2px 3px;
  1768. text-align: center;
  1769. min-width: 80px;
  1770. }
  1771. table.quota-info td.name {
  1772. text-align: left;
  1773. }
  1774. table.quota-info td.root {
  1775. font-style: italic;
  1776. }
  1777. /*** popup menus ***/
  1778. .popupmenu,
  1779. #rcmKSearchpane {
  1780. display: none;
  1781. position: absolute;
  1782. top: 32px;
  1783. left: 90px;
  1784. width: auto;
  1785. max-height: 70%;
  1786. overflow: -moz-scrollbars-vertical;
  1787. overflow-y: auto;
  1788. background: #444;
  1789. z-index: 240;
  1790. border-radius: 4px;
  1791. box-shadow: 0 2px 6px 0 #333;
  1792. }
  1793. .popupmenu.dropdown {
  1794. border-radius: 0 0 4px 4px;
  1795. border-top: 0;
  1796. }
  1797. .popupmenu > .buttons {
  1798. border-top: 1px solid #5a5a5a;
  1799. height: 25px;
  1800. padding-top: 5px;
  1801. text-align: center;
  1802. }
  1803. ul.toolbarmenu,
  1804. ul.toolbarmenu ul,
  1805. #rcmKSearchpane ul {
  1806. margin: 0;
  1807. padding: 0;
  1808. list-style: none;
  1809. }
  1810. .googie_list td,
  1811. ul.toolbarmenu li,
  1812. #rcmKSearchpane ul li {
  1813. color: #fff;
  1814. white-space: nowrap;
  1815. min-width: 130px;
  1816. margin: 0;
  1817. border-top: 1px solid #5a5a5a;
  1818. }
  1819. .googie_list tr:first-child td,
  1820. ul.toolbarmenu > li:first-child,
  1821. select.decorated option:first-child {
  1822. border-top: 0;
  1823. }
  1824. .googie_list tr:last-child td,
  1825. ul.toolbarmenu > li:last-child,
  1826. select.decorated option:last-child {
  1827. border-bottom: 0;
  1828. }
  1829. .googie_list td span,
  1830. ul.toolbarmenu li a {
  1831. display: block;
  1832. color: #666;
  1833. text-decoration: none;
  1834. min-height: 14px;
  1835. padding: 6px 16px 6px 10px;
  1836. }
  1837. .googie_list td span {
  1838. padding: 3px 10px;
  1839. }
  1840. .googie_list td span,
  1841. ul.toolbarmenu li a.active {
  1842. color: #fff;
  1843. cursor: default;
  1844. }
  1845. .googie_list td.googie_list_onhover,
  1846. ul.toolbarmenu li a.active:hover,
  1847. ul.toolbarmenu li a.active:focus,
  1848. #rcmKSearchpane ul li.selected,
  1849. #pagejump-selector ul li.selected,
  1850. select.decorated option:hover,
  1851. select.decorated option[selected='selected'] {
  1852. background-color: #0883d0;
  1853. outline: none;
  1854. }
  1855. ul.toolbarmenu.iconized li a,
  1856. ul.toolbarmenu.selectable li a {
  1857. padding-left: 30px;
  1858. }
  1859. ul.toolbarmenu.selectable li a.selected {
  1860. background: url(images/messages.png?v=72e9.1264) 4px -27px no-repeat;
  1861. }
  1862. ul.toolbarmenu li label {
  1863. display: block;
  1864. color: #fff;
  1865. padding: 4px 8px;
  1866. }
  1867. ul.toolbarmenu li.separator label {
  1868. color: #bbb;
  1869. font-style: italic;
  1870. padding: 0 8px;
  1871. line-height: 17px;
  1872. }
  1873. ul.toolbarmenu li input {
  1874. margin: 0;
  1875. }
  1876. ul.toolbarmenu li a.icon {
  1877. color: #eee;
  1878. padding: 2px 6px;
  1879. }
  1880. ul.toolbarmenu li span.icon,
  1881. #rcmKSearchpane ul li i.icon {
  1882. display: block;
  1883. min-height: 14px;
  1884. padding: 4px 4px 1px 24px;
  1885. height: 17px;
  1886. background-image: url(images/listicons.png?v=c458.10409);
  1887. background-position: -100px 0;
  1888. background-repeat: no-repeat;
  1889. opacity: 0.2;
  1890. }
  1891. ul.toolbarmenu li a.active span.icon {
  1892. opacity: 0.99;
  1893. }
  1894. ul.toolbarmenu li span.read {
  1895. background-position: 0 -1220px;
  1896. }
  1897. ul.toolbarmenu li span.unread {
  1898. background-position: 0 -1196px;
  1899. }
  1900. ul.toolbarmenu li span.flagged {
  1901. background-position: 0 -1244px;
  1902. }
  1903. ul.toolbarmenu li span.unflagged {
  1904. background-position: 0 -1268px;
  1905. }
  1906. ul.toolbarmenu li span.mail {
  1907. background-position: 0 -1293px;
  1908. }
  1909. ul.toolbarmenu li span.list {
  1910. background-position: 0 -1317px;
  1911. }
  1912. ul.toolbarmenu li span.invert {
  1913. background-position: 0 -1340px;
  1914. }
  1915. ul.toolbarmenu li span.cross {
  1916. background-position: 0 -1365px;
  1917. }
  1918. ul.toolbarmenu li span.print {
  1919. background-position: 0 -1436px;
  1920. }
  1921. ul.toolbarmenu li span.download {
  1922. background-position: 0 -1412px;
  1923. }
  1924. ul.toolbarmenu li span.rename {
  1925. background-position: 0 -2295px;
  1926. }
  1927. ul.toolbarmenu li span.edit {
  1928. background-position: 0 -1388px;
  1929. }
  1930. ul.toolbarmenu li span.viewsource {
  1931. background-position: 0 -1460px;
  1932. }
  1933. ul.toolbarmenu li span.extwin {
  1934. background-position: 0 -1484px;
  1935. }
  1936. ul.toolbarmenu li span.conversation {
  1937. background-position: 0 -1532px;
  1938. }
  1939. ul.toolbarmenu li span.move {
  1940. background-position: 0 -2126px;
  1941. }
  1942. ul.toolbarmenu li span.copy {
  1943. background-position: 0 -2150px;
  1944. }
  1945. #pagejump-selector {
  1946. max-height: 250px;
  1947. overflow-x: hidden;
  1948. }
  1949. #pagejump-selector ul li {
  1950. min-width: 45px;
  1951. padding: 4px 6px;
  1952. cursor: default;
  1953. }
  1954. #snippetslist {
  1955. max-width: 200px;
  1956. }
  1957. #snippetslist li a {
  1958. overflow: hidden;
  1959. text-overflow: ellipsis;
  1960. }
  1961. #rcmKSearchpane {
  1962. border-radius: 0 0 4px 4px;
  1963. border-top: 0;
  1964. }
  1965. #rcmKSearchpane ul li {
  1966. text-decoration: none;
  1967. min-height: 14px;
  1968. padding: 6px 10px 6px 28px;
  1969. border: 0;
  1970. cursor: default;
  1971. position: relative;
  1972. }
  1973. #rcmKSearchpane ul li i.icon {
  1974. opacity: 0.99;
  1975. position: absolute;
  1976. top: 4px;
  1977. left: 5px;
  1978. width: 18px;
  1979. height: 18px;
  1980. padding: 0;
  1981. background-position: -1px -2223px;
  1982. }
  1983. #rcmKSearchpane ul li.group i.icon {
  1984. background-position: -1px -2247px;
  1985. }
  1986. .popupdialog {
  1987. display: none;
  1988. padding: 10px;
  1989. }
  1990. .popupdialog .formbuttons {
  1991. margin: 20px 0 4px 0;
  1992. }
  1993. .ui-dialog .prompt input {
  1994. display: block;
  1995. margin: 8px 0;
  1996. }
  1997. .hint {
  1998. margin: 4px 0;
  1999. color: #999;
  2000. }
  2001. .splitter {
  2002. user-select: none;
  2003. -moz-user-select: none;
  2004. -khtml-user-select: none;
  2005. position: absolute;
  2006. background: url(images/splitter.png?v=6d32.134) center no-repeat;
  2007. }
  2008. .splitter-h {
  2009. height: 10px;
  2010. width: 100%;
  2011. cursor: n-resize;
  2012. cursor: row-resize;
  2013. background-position: center 0;
  2014. }
  2015. .splitter-v {
  2016. width: 10px;
  2017. height: 100%;
  2018. cursor: e-resize;
  2019. cursor: col-resize;
  2020. background-position: 0 center;
  2021. }
  2022. #rcmdraglayer {
  2023. min-width: 260px;
  2024. width: auto !important;
  2025. width: 260px;
  2026. padding: 6px 8px;
  2027. background: #444;
  2028. border: 1px solid #555;
  2029. border-radius: 4px;
  2030. box-shadow: 0 2px 6px 0 #333;
  2031. z-index: 250;
  2032. color: #ccc;
  2033. white-space: nowrap;
  2034. opacity: 0.92;
  2035. }
  2036. #rcmdraglayer:after {
  2037. content: "";
  2038. position: absolute;
  2039. top: 6px;
  2040. left: -6px;
  2041. border-style: solid;
  2042. border-width: 6px 6px 6px 0;
  2043. border-color: transparent #444;
  2044. /* reduce the damage in FF3.0 */
  2045. display: block;
  2046. width: 0;
  2047. z-index: 251;
  2048. }
  2049. .draglayercopy:before {
  2050. position: absolute;
  2051. bottom: -6px;
  2052. left: -6px;
  2053. content: " ";
  2054. width: 16px;
  2055. height: 16px;
  2056. background: url(images/buttons.png?v=d70c.9130) -7px -358px no-repeat;
  2057. z-index: 255;
  2058. }
  2059. .popup label > input {
  2060. margin-left: 10px;
  2061. }
  2062. /*** folder selector ***/
  2063. #folder-selector {
  2064. z-index: 1000;
  2065. }
  2066. #folder-selector li a span {
  2067. background: url(images/listicons.png?v=c458.10409) 4px -2021px no-repeat;
  2068. display: block;
  2069. height: 17px;
  2070. min-height: 14px;
  2071. padding: 4px 4px 1px 28px;
  2072. overflow: hidden;
  2073. max-width: 120px;
  2074. text-overflow: ellipsis;
  2075. }
  2076. #folder-selector li a.virtual {
  2077. opacity: .2;
  2078. }
  2079. #folder-selector li a.inbox span {
  2080. background-position: 4px -2049px;
  2081. }
  2082. #folder-selector li a.drafts span {
  2083. background-position: 4px -1388px;
  2084. }
  2085. #folder-selector li a.sent span {
  2086. background-position: 4px -2074px;
  2087. }
  2088. #folder-selector li a.trash span {
  2089. background-position: 4px -1508px;
  2090. }
  2091. #folder-selector li a.junk span {
  2092. background-position: 4px -2100px;
  2093. }
  2094. /*** folders list ***/
  2095. .folderlist li.mailbox a {
  2096. padding-left: 36px;
  2097. white-space: nowrap;
  2098. overflow: hidden;
  2099. text-overflow: ellipsis;
  2100. background-image: url(images/listicons.png?v=c458.10409);
  2101. background-repeat: no-repeat;
  2102. background-position: 6px 3px;
  2103. }
  2104. .folderlist li.mailbox.unread > a {
  2105. padding-right: 36px;
  2106. }
  2107. .folderlist li.mailbox > a:focus,
  2108. .folderlist li.mailbox.selected > a {
  2109. background-position: 6px -21px;
  2110. }
  2111. .folderlist li.mailbox.inbox > a {
  2112. background-position: 6px -189px;
  2113. }
  2114. .folderlist li.mailbox.inbox > a:focus,
  2115. .folderlist li.mailbox.inbox.selected > a {
  2116. background-position: 6px -213px;
  2117. }
  2118. .folderlist li.mailbox.drafts > a {
  2119. background-position: 6px -238px;
  2120. }
  2121. .folderlist li.mailbox.drafts > a:focus,
  2122. .folderlist li.mailbox.drafts.selected > a {
  2123. background-position: 6px -262px;
  2124. }
  2125. .folderlist li.mailbox.sent > a {
  2126. background-position: 6px -286px;
  2127. }
  2128. .folderlist li.mailbox.sent > a:focus,
  2129. .folderlist li.mailbox.sent.selected > a {
  2130. background-position: 6px -310px;
  2131. }
  2132. .folderlist li.mailbox.junk > a {
  2133. background-position: 6px -334px;
  2134. }
  2135. .folderlist li.mailbox.junk > a:focus,
  2136. .folderlist li.mailbox.junk.selected > a {
  2137. background-position: 6px -358px;
  2138. }
  2139. .folderlist li.mailbox.trash > a {
  2140. background-position: 6px -382px;
  2141. }
  2142. .folderlist li.mailbox.trash > a:focus,
  2143. .folderlist li.mailbox.trash.selected > a {
  2144. background-position: 6px -406px;
  2145. }
  2146. .folderlist li.mailbox.trash.empty > a {
  2147. background-position: 6px -1924px;
  2148. }
  2149. .folderlist li.mailbox.trash.empty > a:focus,
  2150. .folderlist li.mailbox.trash.empty.selected > a {
  2151. background-position: 6px -1948px;
  2152. }
  2153. .folderlist li.mailbox.archive > a {
  2154. background-position: 6px -1699px;
  2155. }
  2156. .folderlist li.mailbox.archive > a:focus,
  2157. .folderlist li.mailbox.archive.selected > a {
  2158. background-position: 6px -1723px;
  2159. }
  2160. .folderlist li.mailbox ul li.drafts > a {
  2161. background-position: 23px -238px;
  2162. }
  2163. .folderlist li.mailbox ul li.drafts > a:focus,
  2164. .folderlist li.mailbox ul li.drafts.selected > a {
  2165. background-position: 23px -262px;
  2166. }
  2167. .folderlist li.mailbox ul li.sent > a {
  2168. background-position: 23px -286px;
  2169. }
  2170. .folderlist li.mailbox ul li.sent > a:focus,
  2171. .folderlist li.mailbox ul li.sent.selected > a {
  2172. background-position: 23px -310px;
  2173. }
  2174. .folderlist li.mailbox ul li.junk > a {
  2175. background-position: 23px -334px;
  2176. }
  2177. .folderlist li.mailbox ul li.junk > a:focus,
  2178. .folderlist li.mailbox ul li.junk.selected > a {
  2179. background-position: 23px -358px;
  2180. }
  2181. .folderlist li.mailbox ul li.trash > a {
  2182. background-position: 23px -382px;
  2183. }
  2184. .folderlist li.mailbox ul li.trash > a:focus,
  2185. .folderlist li.mailbox ul li.trash.selected > a {
  2186. background-position: 23px -406px;
  2187. }
  2188. .folderlist li.mailbox ul li.trash.empty > a {
  2189. background-position: 23px -1924px;
  2190. }
  2191. .folderlist li.mailbox ul li.trash.empty > a:focus,
  2192. .folderlist li.mailbox ul li.trash.empty.selected > a {
  2193. background-position: 23px -1948px;
  2194. }
  2195. .folderlist li.mailbox ul li.archive > a {
  2196. background-position: 23px -1699px;
  2197. }
  2198. .folderlist li.mailbox ul li.archive > a:focus,
  2199. .folderlist li.mailbox ul li.archive.selected > a {
  2200. background-position: 23px -1723px;
  2201. }
  2202. .folderlist li.virtual > a {
  2203. color: #aaa;
  2204. }
  2205. .folderlist li.mailbox div.treetoggle {
  2206. top: 13px;
  2207. left: 19px;
  2208. }
  2209. .folderlist li.mailbox ul li:last-child {
  2210. border-bottom: 0;
  2211. }
  2212. /* nested mailboxes */
  2213. .folderlist li.mailbox ul {
  2214. list-style: none;
  2215. margin: 0;
  2216. padding: 0;
  2217. border-top: 1px solid #bbd3da;
  2218. }
  2219. .folderlist li.mailbox ul li a {
  2220. padding-left: 52px; /* 36 + 1 x 16 */
  2221. background-position: 22px -93px; /* 6 + 1 x 16 */
  2222. }
  2223. .folderlist li.mailbox ul li > a:focus,
  2224. .folderlist li.mailbox ul li.selected > a {
  2225. background-position: 22px -117px;
  2226. }
  2227. .folderlist li.mailbox ul li div.treetoggle {
  2228. left: 33px;
  2229. top: 14px;
  2230. }
  2231. .folderlist li.mailbox ul ul li.mailbox a {
  2232. padding-left: 68px; /* 2x */
  2233. background-position: 38px -93px;
  2234. }
  2235. .folderlist li.mailbox ul ul li > a:focus,
  2236. .folderlist li.mailbox ul ul li.selected > a {
  2237. background-position: 38px -117px;
  2238. }
  2239. .folderlist li.mailbox ul ul li div.treetoggle {
  2240. left: 48px;
  2241. }
  2242. .folderlist li.mailbox ul ul ul li.mailbox a {
  2243. padding-left: 84px; /* 3x */
  2244. background-position: 54px -93px;
  2245. }
  2246. .folderlist li.mailbox ul ul ul li > a:focus,
  2247. .folderlist li.mailbox ul ul ul li.selected > a {
  2248. background-position: 54px -117px;
  2249. }
  2250. .folderlist li.mailbox ul ul ul li div.treetoggle {
  2251. left: 64px;
  2252. }
  2253. .folderlist li.mailbox ul ul ul ul li.mailbox a {
  2254. padding-left: 100px; /* 4x */
  2255. background-position: 70px -93px;
  2256. }
  2257. .folderlist li.mailbox ul ul ul ul li > a:focus,
  2258. .folderlist li.mailbox ul ul ul ul li.selected > a {
  2259. background-position: 70px -117px;
  2260. }
  2261. .folderlist li.mailbox ul ul ul ul li div.treetoggle {
  2262. left: 80px;
  2263. }
  2264. /* indent folders on levels > 4 */
  2265. .folderlist li.mailbox ul ul ul ul ul li {
  2266. padding-left: 16px;
  2267. }
  2268. .folderlist li.mailbox ul ul ul ul ul li div.treetoggle {
  2269. left: 96px;
  2270. }
  2271. /*** attachment list ***/
  2272. .attachmentslist {
  2273. list-style: none;
  2274. margin: 0;
  2275. padding: 0;
  2276. overflow: hidden;
  2277. text-overflow: ellipsis;
  2278. }
  2279. .attachmentslist li {
  2280. display: block;
  2281. position: relative;
  2282. background: url(images/filetypes.png?v=a0f5.4718) 0 0 no-repeat;
  2283. margin-bottom: 1px;
  2284. line-height: 24px;
  2285. }
  2286. .attachmentslist li.txt,
  2287. .attachmentslist li.text {
  2288. background-position: 0 -416px;
  2289. }
  2290. .attachmentslist li.pdf {
  2291. background-position: 0 -26px;
  2292. }
  2293. .attachmentslist li.doc,
  2294. .attachmentslist li.docx,
  2295. .attachmentslist li.msword {
  2296. background-position: 0 -52px;
  2297. }
  2298. .attachmentslist li.odt {
  2299. background-position: 0 -78px;
  2300. }
  2301. .attachmentslist li.xls,
  2302. .attachmentslist li.xlsx,
  2303. .attachmentslist li.msexcel {
  2304. background-position: 0 -104px;
  2305. }
  2306. .attachmentslist li.ods {
  2307. background-position: 0 -130px;
  2308. }
  2309. .attachmentslist li.zip,
  2310. .attachmentslist li.gz {
  2311. background-position: 0 -156px;
  2312. }
  2313. .attachmentslist li.rar {
  2314. background-position: 0 -182px;
  2315. }
  2316. .attachmentslist li.image {
  2317. background-position: 0 -208px;
  2318. }
  2319. .attachmentslist li.jpg,
  2320. .attachmentslist li.jpeg {
  2321. background-position: 0 -234px;
  2322. }
  2323. .attachmentslist li.png {
  2324. background-position: 0 -260px;
  2325. }
  2326. .attachmentslist li.m4p {
  2327. background-position: 0 -286px;
  2328. }
  2329. .attachmentslist li.mp3,
  2330. .attachmentslist li.audio {
  2331. background-position: 0 -312px;
  2332. }
  2333. .attachmentslist li.video {
  2334. background-position: 0 -338px;
  2335. }
  2336. .attachmentslist li.ics,
  2337. .attachmentslist li.calendar {
  2338. background-position: 0 -364px;
  2339. }
  2340. .attachmentslist li.vcard {
  2341. background-position: 0 -390px;
  2342. }
  2343. .attachmentslist li.sig,
  2344. .attachmentslist li.pgp-signature,
  2345. .attachmentslist li.pkcs7-signature {
  2346. background-position: 0 -442px;
  2347. }
  2348. .attachmentslist li.html {
  2349. background-position: 0 -468px;
  2350. }
  2351. .attachmentslist li.eml,
  2352. .attachmentslist li.rfc822 {
  2353. background-position: 0 -494px;
  2354. }
  2355. .attachmentslist li.ppt,
  2356. .attachmentslist li.pptx,
  2357. .attachmentslist li.ppsx,
  2358. .attachmentslist li.vnd.mspowerpoint {
  2359. background-position: 0 -520px;
  2360. }
  2361. .attachmentslist li.odp,
  2362. .attachmentslist li.otp {
  2363. background-position: 0 -546px;
  2364. }
  2365. .attachmentslist li.application.asc {
  2366. background-position: 0 -598px;
  2367. }
  2368. .attachmentslist li.application.pgp-keys {
  2369. background-position: 0 -572px;
  2370. }
  2371. .attachmentslist li a {
  2372. display: block;
  2373. color: #333;
  2374. font-weight: bold;
  2375. padding: 3px 15px 3px 30px;
  2376. text-decoration: none;
  2377. white-space: nowrap;
  2378. overflow: hidden;
  2379. text-overflow: ellipsis;
  2380. line-height: 20px;
  2381. outline: none;
  2382. }
  2383. .attachmentslist li a.drop {
  2384. background: url(images/buttons.png?v=d70c.9130) no-repeat scroll center -1570px;
  2385. width: 14px;
  2386. height: 20px;
  2387. cursor: pointer;
  2388. position: absolute;
  2389. right: 0;
  2390. top: 0;
  2391. padding: 0;
  2392. overflow: hidden;
  2393. text-indent: -5000px;
  2394. outline: none;
  2395. }
  2396. #compose-attachments .attachmentslist li a.drop {
  2397. right: 24px;
  2398. }
  2399. .attachmentslist li a:focus,
  2400. .attachmentslist li a.drop:focus {
  2401. background-color: rgba(30,150,192, 0.5);
  2402. border-radius: 2px;
  2403. }
  2404. #compose-attachments ul li {
  2405. padding-right: 24px;
  2406. }
  2407. .attachmentslist li a:hover {
  2408. text-decoration: underline;
  2409. }
  2410. .attachmentslist li.uploading {
  2411. background: url(images/ajaxloader.gif?v=c252.1434) 4px 4px no-repeat;
  2412. padding-left: 30px;
  2413. }
  2414. .attachmentslist li a.delete,
  2415. .attachmentslist li a.cancelupload {
  2416. position: absolute;
  2417. top: 4px;
  2418. right: 0;
  2419. width: 20px;
  2420. height: 18px;
  2421. padding: 0;
  2422. text-decoration: none;
  2423. text-indent: -5000px;
  2424. background-image: url(images/buttons.png?v=d70c.9130);
  2425. background-position: -6px -338px;
  2426. background-repeat: no-repeat;
  2427. }
  2428. .attachmentslist li a.cancelupload {
  2429. background-position: -6px -378px;
  2430. }
  2431. /*** fieldset tabs ***/
  2432. .tabbed.ui-tabs {
  2433. padding: 0;
  2434. border: 0 !important;
  2435. background: none;
  2436. }
  2437. .ui-dialog .tabbed.ui-tabs {
  2438. margin: -12px -8px 0 -8px;
  2439. }
  2440. .boxcontent.tabbed.ui-tabs {
  2441. padding: 10px;
  2442. }
  2443. .ui-tabs .tabsbar.ui-tabs-nav {
  2444. margin-bottom: 4px;
  2445. }
  2446. .ui-dialog-content .ui-tabs .tabsbar.ui-tabs-nav {
  2447. margin-bottom: 0;
  2448. }
  2449. .tabsbar .tablink:last-child {
  2450. background: none;
  2451. }
  2452. .tabsbar .tablink:last-child a {
  2453. border-right: 0;
  2454. }
  2455. .ui-tabs .ui-tabs-nav li.tablink a {
  2456. background: #fff;
  2457. }
  2458. .ui-tabs fieldset.ui-tabs-panel {
  2459. border: 0;
  2460. padding: 0;
  2461. margin-left: 0;
  2462. background: none;
  2463. }
  2464. .ui-dialog .propform .ui-tabs-panel {
  2465. display: block;
  2466. background: #efefef;
  2467. padding: 0.5em 1em;
  2468. }
  2469. #image-selector-form.droptarget {
  2470. background: url(images/filedrop.png?v=be5d.415) center bottom no-repeat;
  2471. }
  2472. /** Common TinyMCE fixes **/
  2473. .mce-btn-small .mce-ico {
  2474. display: inline; /* for old Firefox */
  2475. }
  2476. .mce-btn-small i {
  2477. line-height: 16px !important;
  2478. vertical-align: text-top !important;
  2479. }
  2480. _:not(), _:-moz-handler-blocked, .mozilla .mce-btn-small i {
  2481. line-height: 20px !important;
  2482. }
  2483. .mce-textbox {
  2484. border-radius: 0;
  2485. box-shadow: none;
  2486. }
  2487. .mce-textbox:focus {
  2488. box-shadow: none;
  2489. outline: none;
  2490. }
  2491. /** PGP Key import dialog **/
  2492. .pgpkeyimport div.key {
  2493. position: relative;
  2494. margin-bottom: 2px;
  2495. padding: 1em;
  2496. background-color: #ebebeb;
  2497. }
  2498. .pgpkeyimport div.key.revoked,
  2499. .pgpkeyimport div.key.disabled {
  2500. color: #a0a0a0;
  2501. }
  2502. .pgpkeyimport div.key label {
  2503. display: inline-block;
  2504. margin-right: 0.5em;
  2505. }
  2506. .pgpkeyimport div.key label:after {
  2507. content: ":";
  2508. }
  2509. .pgpkeyimport div.key label + a,
  2510. .pgpkeyimport div.key label + span {
  2511. display: inline-block;
  2512. margin-right: 2em;
  2513. white-space: nowrap;
  2514. }
  2515. .pgpkeyimport div.key label + a {
  2516. font-weight: bold;
  2517. }
  2518. .pgpkeyimport ul.uids {
  2519. margin: 1em 0 0 0;
  2520. padding: 0;
  2521. }
  2522. .pgpkeyimport li.uid {
  2523. border: 0;
  2524. padding: 0.3em;
  2525. }
  2526. .pgpkeyimport div.key input.button.importkey {
  2527. position: absolute;
  2528. top: 0.8em;
  2529. right: 0.8em;
  2530. padding: 4px 6px;
  2531. }
  2532. .pgpkeyimport div.key input.button[disabled] {
  2533. display: none;
  2534. }