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 62KB

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