index.css 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065
  1. /* Styles for the general looks for the Curve theme.
  2. ------------------------------------------------------- */
  3. /* Normal, standard links. */
  4. a:link, a:visited {
  5. color: #346;
  6. text-decoration: none;
  7. }
  8. a:hover {
  9. text-decoration: underline;
  10. cursor: pointer;
  11. }
  12. /* Links that open in a new window. */
  13. a.new_win:link, a.new_win:visited {
  14. color: #346;
  15. text-decoration: none;
  16. }
  17. a.new_win:hover {
  18. text-decoration: underline;
  19. }
  20. html {
  21. background: #3e5a78;
  22. }
  23. /* Set a font-size that will look the same in all browsers. */
  24. body {
  25. background: #E9EEF2;
  26. /* Start with the best Vista/W7 font, then go to best Mac and Linux, then the old fallbacks.........*/
  27. /* Font size is specifically chosen to be exactly 10 point. There are sound reasons for this (hinting, ClearType, etc). */
  28. font: 83.33%/150% "Segoe UI", "Helvetica Neue", "Liberation Sans", "Nimbus Sans L", Arial, sans-serif;
  29. /* Use dark grey for the text. Pure black (#000) is not as good: http://informationarchitects.net/blog/100e2r/
  30. /* Quote: "for screen design, an overly strong contrast is not ideal either, as the text starts to flicker. Benchmark: #333 on #fff"
  31. /* #333 on #fff is the standard, but we aren't always on #fff so use #222 for standard weight. */
  32. color: #222;
  33. margin: 0 auto;
  34. padding: 0;
  35. position: relative;
  36. float: left;
  37. width: 100%;
  38. }
  39. /* Help popups require a different styling of the body element. */
  40. /* Deprecated? */
  41. body#help_popup {
  42. padding: 12px;
  43. }
  44. /* Tables should show empty cells. */
  45. table {
  46. empty-cells: show;
  47. }
  48. /* Box sizing for the masses. Very handy for stabilising fluid layouts. */
  49. /* Makes sense to default most elements to zero padding and margin. */
  50. /* <p> is a possible exception for margins. Must test that one a bit. */
  51. /* IMPORTANT: Do not declare div globally here. Doing that does odd things to jQuery menus. */
  52. p, ul, ol, li, dl, dd ,dt, fieldset, form {
  53. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  54. padding: 0;
  55. margin: 0;
  56. }
  57. /* Set list-style to none by default. Best in most places.*/
  58. ul, ol, li {
  59. list-style: none;
  60. }
  61. /* I think the reset class can be deprecated. */
  62. /* Must test interitance thoroughly to be sure. */
  63. /* A quick reset list class. */
  64. ul.reset, ul.reset li {
  65. padding: 0;
  66. margin: 0;
  67. list-style: none;
  68. }
  69. /* We can style the different types of input buttons to be uniform throughout different browsers and their color themes.
  70. .button_submit - covers input[type=submit], input[type=button], button[type=submit] and button[type=button] in all browsers
  71. .button_link - covers links to make them look like a submit button
  72. .button_reset - covers input[type=reset] and button[type=reset] throughout all browsers
  73. .input_check - covers input[type=checkbox] throughout all browsers
  74. .input_radio - covers input[type=radio] throughout all browsers
  75. .input_text - covers input[type=text] throughout all browsers
  76. .input_file - covers input[type=file] throughout all browsers
  77. */
  78. /* Thought it made sense to declare box-sizing here too. */
  79. input, button, select, textarea, textarea.editor {
  80. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  81. background: #fff;
  82. outline: none !important;
  83. border: 1px solid #bbb;
  84. vertical-align: middle;
  85. border-radius: 3px;
  86. box-shadow: 0 2px 5px rgba(0,0,0,0.05) inset;
  87. padding: 3px;
  88. }
  89. /* Apply the font only to these elements. */
  90. input, button, select {
  91. font-size: 0.9em;
  92. }
  93. select {
  94. padding: 2px;
  95. }
  96. select option {
  97. padding: 0em 4px 0 4px;
  98. }
  99. input:hover, textarea:hover, button:hover, select:hover {
  100. outline: none !important;
  101. border: 1px solid #999;
  102. }
  103. textarea:hover, textarea.editor:hover {
  104. background: #fbfbfb;
  105. }
  106. input:focus, textarea:focus, button:focus, select:focus, textarea.editor:focus {
  107. outline:none !important;
  108. border: 1px solid #999;
  109. box-shadow: 0 2px 5px rgba(0,0,0,0.1) inset;
  110. }
  111. /* Buttons should be styled a bit differently, in order to make them look more button'ish. */
  112. #frmLogin input.button_submit, #guest_form input.button_submit, #calendar_navigation input.button_submit {
  113. float: none;
  114. margin-left: inherit;
  115. }
  116. .button_submit, .button_reset, .button_link {
  117. margin: 0 0 0 12px;
  118. padding: 2px 4px;
  119. float: right;
  120. cursor: pointer;
  121. background: #fff url(../images/theme/lower_section.png) 0 45% repeat-x;
  122. border: 1px solid #ccc;
  123. border-right: 1px solid #bbb;
  124. border-bottom: 1px solid #aaa;
  125. border-radius: 1px;
  126. box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  127. /* font-weight: bold;*/
  128. /* color: #444;*/
  129. /* [WIP]*/
  130. -moz-transition: all 0.05s linear 0.05s;
  131. }
  132. .button_submit:hover, .button_reset:hover, .button_link:hover {
  133. background: #fff url(../images/theme/upper_section.png) 0 45% repeat-x;
  134. color: #af6700;
  135. border: 1px solid #ccc;
  136. border-left: 1px solid #bbb;
  137. border-top: 1px solid #aaa;
  138. box-shadow: -1px -1px 2px rgba(0,0,0,0.07), -1px -2px 4px rgba(255,255,255,0.33) inset;
  139. /* [WIP]*/
  140. -moz-transition: all 0.05s linear 0.05s;
  141. }
  142. /*.button_link {
  143. padding: 4px 5px 4px 4px;
  144. font: 95%/115% verdana, Helvetica, sans-serif;
  145. float: right;
  146. border-radius: 3px;
  147. }*/
  148. a.button_link {
  149. color: #333;
  150. margin: 0 !important;
  151. }
  152. .button_link:hover {
  153. text-decoration: none;
  154. }
  155. /* the new "button" */
  156. a.new_posts, span.new_posts {
  157. color: #fff;
  158. font-weight: bold;
  159. line-height: 1.12px;
  160. border-radius: 2px;
  161. background: orange;
  162. color: #fff;
  163. }
  164. span.new_posts {
  165. display: inline;
  166. margin: 0 5px 0 -2px;
  167. padding: 0 4px 1px 4px;
  168. font-size: 9px;
  169. font-family: verdana, sans-serif; /*[WIP] Might add extra fallbacks. Possibly monospace. */
  170. box-shadow: 1px 2px 2px rgba(0,0,0,0.1), 0 -2px 4px rgba(0,0,0,0.1) inset;
  171. }
  172. a span.new_posts:hover {
  173. text-decoration: underline;
  174. }
  175. /* All input elements that are checkboxes or radio buttons shouldn't have a border around them. */
  176. input.input_check, input.input_radio {
  177. border: none;
  178. background: none;
  179. vertical-align: top;
  180. }
  181. h3.catbg input.input_check {
  182. margin: 0 7px 0 7px;
  183. }
  184. /* Give disabled text input elements a different background color. */
  185. input[disabled].input_text {
  186. background: #eee;
  187. }
  188. /* Standard horizontal rule.. ([hr], etc.) */
  189. hr, hr.hrcolor {
  190. border: none;
  191. margin: 12px 0;
  192. height: 2px;
  193. background: #fff;
  194. background-color: #fff;
  195. box-shadow: 0 1px 0 #bbb inset;
  196. }
  197. /* Default color on these tags. */
  198. h1, h2, h3, h4, h5, h6 {
  199. font-size: 1em;
  200. margin: 0;
  201. padding: 0;
  202. }
  203. /* Fieldsets are used to group elements. */
  204. fieldset {
  205. padding: 18px;
  206. margin: 0 0 6px 0;
  207. border: 1px solid #ccc;
  208. border-radius: 3px;
  209. }
  210. fieldset legend {
  211. font-weight: bold;
  212. color: #555;
  213. box-shadow: none;
  214. border: none;
  215. }
  216. .content fieldset {
  217. border: double #ccc;
  218. }
  219. /* Define strong as bold, and em as italics */
  220. /* Note: in some particular places, strong has been redefined as font-weight: 600; */
  221. /* This gives a better effect for those areas, and will default to bold for fonts which do not support numerical font-weight. */
  222. strong {
  223. font-weight: bold;
  224. /* Having bold slightly lighter balances apparent darkness. */
  225. color: #444;
  226. }
  227. em {
  228. font-style: italic;
  229. }
  230. /* Alternative for u tag */
  231. .underline {
  232. text-decoration: underline;
  233. }
  234. /* Common classes to easy styling.
  235. ------------------------------------------------------- */
  236. .floatright {
  237. float: right;
  238. }
  239. .floatleft {
  240. float: left;
  241. }
  242. .floatnone {
  243. float: none;
  244. }
  245. .flow_auto {
  246. overflow: auto;
  247. }
  248. .flow_hidden {
  249. overflow: hidden;
  250. }
  251. .flow_hidden .windowbg, .flow_hidden .windowbg2 {
  252. /*margin-top: 2px;*/
  253. }
  254. .clear {
  255. clear: both;
  256. }
  257. .clear_left {
  258. clear: left;
  259. }
  260. .clear_right {
  261. clear: right;
  262. }
  263. /* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
  264. .smalltext, tr.smalltext th {
  265. font-size: 0.9em;
  266. }
  267. .largetext {
  268. font-size: 1.4em;
  269. }
  270. .centertext {
  271. margin: 0 auto;
  272. text-align: center;
  273. }
  274. .righttext {
  275. margin-left: auto;
  276. margin-right: 0;
  277. text-align: right;
  278. }
  279. .lefttext {
  280. margin-left: 0;
  281. margin-right: auto;
  282. text-align: left;
  283. }
  284. .double_height {
  285. line-height: 2em;
  286. }
  287. /* some common padding styles */
  288. .padding {
  289. padding: 8px;
  290. }
  291. .main_section, .lower_padding {
  292. padding-bottom: 6px;
  293. }
  294. /* Some BBC related styles.
  295. ------------------------------------------------------- */
  296. /* A quote, perhaps from another post. */
  297. .bbc_standard_quote, .bbc_alternate_quote {
  298. margin: 0 0 8px 0;
  299. padding: 6px 10px;
  300. font-size: 0.9em;
  301. text-indent: 12px;
  302. background: url(../images/theme/quote.png) 2px 3px no-repeat;
  303. border-radius: 2px;
  304. border: 1px solid #d6dfe2;
  305. border-left: 3px solid #aaa;
  306. border-right: 2px solid #aaa;
  307. overflow: auto;
  308. }
  309. /* Alterate blockquote stylings */
  310. .bbc_standard_quote {
  311. background-color: #e0e6f6;
  312. }
  313. .bbc_alternate_quote {
  314. background-color: #ebf4f8;
  315. }
  316. /* A code block - maybe PHP ;). */
  317. .bbc_code {
  318. display: block;
  319. font-family: "DejaVu Sans Mono", Monaco, Consolas, monospace;
  320. font-size: 0.9em;
  321. background: #f3f3f3;
  322. border: 1px solid #dfdfdf;
  323. border-top: 2px solid #bbb;
  324. border-bottom: 3px solid #aaa;
  325. border-radius: 2px;
  326. margin: 1px 0 6px 0;
  327. padding: 3px 12px;
  328. overflow: auto;
  329. white-space: nowrap;
  330. /* Show a scrollbar after about 6 lines. */
  331. /* This is much better than the old max-height css. */
  332. height: 10em;
  333. resize: vertical;
  334. }
  335. /* The "Quote:" and "Code:" header parts... */
  336. .codeheader, .quoteheader {
  337. color: #666;
  338. font-size: 0.9em;
  339. padding: 0 2px;
  340. }
  341. /* For links to change the code stuff... */
  342. .codeoperation {
  343. font-weight: normal;
  344. }
  345. /* Let's get a bit more flexibility in font sizes for quotes and code. */
  346. /* We just need to stop em compounding when elements are nested. */
  347. .bbc_standard_quote .bbc_alternate_quote, .bbc_alternate_quote .bbc_standard_quote,
  348. .bbc_standard_quote .bbc_code, .bbc_alternate_quote .bbc_code, .bbc_standard_quote .codeheader,
  349. .bbc_alternate_quote .codeheader, .bbc_standard_quote .quoteheader, .bbc_alternate_quote .quoteheader {
  350. font-size: 1em;
  351. }
  352. /* Styling for BBC tags */
  353. .bbc_link:link, .bbc_link:visited {
  354. border-bottom: 1px solid #A8B6CF;
  355. }
  356. .bbc_link:hover {
  357. text-decoration: none;
  358. border-bottom: 1px solid #346;
  359. }
  360. .bbc_size {
  361. line-height: 1.4em;
  362. }
  363. .bbc_color a {
  364. color: inherit;
  365. }
  366. .bbc_img {
  367. border: 0;
  368. }
  369. .bbc_table {
  370. font: inherit;
  371. color: inherit;
  372. }
  373. .bbc_table td {
  374. font: inherit;
  375. color: inherit;
  376. vertical-align: top;
  377. }
  378. .bbc_u {
  379. text-decoration: underline;
  380. }
  381. .bbc_list {
  382. text-align: left;
  383. }
  384. .bbc_tt {
  385. font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
  386. }
  387. /* No image should have a border when linked. */
  388. a img {
  389. border: 0;
  390. }
  391. /* Generally, those [?] icons. This makes your cursor a help icon. */
  392. .help {
  393. cursor: help;
  394. }
  395. .help .icon {
  396. margin: 0;
  397. cursor: help;
  398. opacity: 0.8;
  399. }
  400. .help .icon:hover {
  401. opacity: 1;
  402. }
  403. /* /me uses this a lot. (emote, try typing /me in a post.) */
  404. .meaction {
  405. color: red;
  406. }
  407. /* Highlighted text - such as search results. */
  408. .highlight {
  409. font-weight: bold;
  410. color: #ff7200 !important;
  411. font-size: 1.1em;
  412. }
  413. /* A more discreet highlight color, for selected membergroups etc. */
  414. /* Could be deprecated. */
  415. .highlight2 {
  416. background: #D1E1EF;
  417. color: #222 !important;
  418. }
  419. /* Generic, mostly color-related, classes.
  420. ------------------------------------------------------- */
  421. .titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td {
  422. color: #444;
  423. font-size: 1.1em;
  424. font-weight: bold;
  425. background: #c5cfd9 url(../images/theme/bars.png) 0 -340px repeat-x;
  426. }
  427. .catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th {
  428. color: #fff;
  429. font-size: 1.1em;
  430. font-weight: bold;
  431. background: #99abbf url(../images/theme/bars.png) 0 -170px repeat-x;
  432. }
  433. /* adjust the table versions of headers */
  434. tr.titlebg th, tr.titlebg2 th, td.titlebg, td.titlebg2, tr.catbg th, tr.catbg2 th, td.catbg, td.catbg2 {
  435. padding: 0 6px;
  436. }
  437. tr.titlebg th a:link, tr.titlebg th a:visited, tr.titlebg2 td a:link, tr.titlebg2 td a:visited {
  438. color: #444;
  439. }
  440. tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited {
  441. color: #fff;
  442. }
  443. .catbg select {
  444. height: 2em;
  445. font-size: 0.9em;
  446. padding: 0;
  447. }
  448. /* Alternating backgrounds for posts, and several other sections of the forum. */
  449. .windowbg, #preview_body {
  450. color: #222;
  451. background: #e7eaef;
  452. }
  453. .windowbg2 {
  454. color: #222;
  455. background: #f0f4f7;
  456. }
  457. .windowbg3 {
  458. color: #222;
  459. background: #cacdd3;
  460. }
  461. /* General code for generic divs. Should make them behave. */
  462. div.windowbg, div.windowbg2 {
  463. border-radius: 5px;
  464. overflow: auto;
  465. padding: 10px 0;
  466. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  467. }
  468. /* the page navigation area */
  469. .pagesection {
  470. font-size: 0.9em;
  471. padding: 2px 4px;
  472. overflow: hidden;
  473. margin: 0;
  474. clear: both;
  475. }
  476. div.pagesection div.floatright input, div.pagesection div.floatright select {
  477. margin-top: 3px;
  478. }
  479. .pagelinks {
  480. margin: 8px 0 0 0;
  481. }
  482. .navPages {
  483. padding: 0 1px;
  484. }
  485. .next_page, .previous_page {
  486. text-transform: capitalize;
  487. padding: 0 2px;
  488. }
  489. .current_page strong {
  490. font-size: 1.2em;
  491. padding: 0 4px 0 2px;
  492. color: #b46100;
  493. font-family: verdana, sans-serif;
  494. }
  495. /* Next and previous topic links for Display.template.php. */
  496. .nextlinks {
  497. text-transform: capitalize;
  498. }
  499. /* Go up and go down links. */
  500. .topbottom {
  501. display: block;
  502. cursor: pointer;
  503. background: #fff url(../images/theme/lower_section.png) 0 45% repeat-x;
  504. border: 1px solid #ccc;
  505. border-right: 1px solid #bbb;
  506. border-bottom: 1px solid #aaa;
  507. border-radius: 3px;
  508. box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  509. padding: 2px 7px 1px 7px;
  510. margin: 5px 8px 0 0;
  511. color: #222;
  512. /* [WIP]*/
  513. -moz-transition: all 0.05s linear 0.05s;
  514. }
  515. .topbottom:hover {
  516. text-decoration: none;
  517. background: #fff url(../images/theme/upper_section.png) 0 45% repeat-x;
  518. color: #af6700;
  519. text-decoration: none;
  520. border: 1px solid #ccc;
  521. border-left: 1px solid #bbb;
  522. border-top: 1px solid #aaa;
  523. box-shadow: -1px -1px 2px rgba(0,0,0,0.07), -1px -2px 4px rgba(255,255,255,0.33) inset;
  524. /* [WIP]*/
  525. -moz-transition: all 0.05s linear 0.05s;
  526. }
  527. /* Colors for background of posts requiring approval */
  528. .approvebg {
  529. color: #222;
  530. background: #ffeaea;
  531. }
  532. .approvebg2 {
  533. color: #222;
  534. background: #fff2f2;
  535. }
  536. /* Color for background of *topics* requiring approval */
  537. .approvetbg {
  538. color: #222;
  539. background: #e4a17c;
  540. }
  541. .approvetbg2 {
  542. color: #222;
  543. background: #f3bd9f;
  544. }
  545. /* Sticky topics get a different background */
  546. .stickybg {
  547. background: #e8d8cf;
  548. }
  549. .stickybg2 {
  550. background: #f2e3d9;
  551. }
  552. /* Plain locked topics just get the icon. */
  553. /* Nobody wants them to stand out much. */
  554. .lockedbg {
  555. background: #e7eaef;
  556. }
  557. .lockedbg2 {
  558. background: #f0f4f7;
  559. }
  560. /* Posts and personal messages displayed throughout the forum. */
  561. .post, .personalmessage {
  562. overflow: auto;
  563. line-height: 1.4em;
  564. padding: 1px 0;
  565. }
  566. /* All the signatures used in the forum. If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
  567. .signature, .attachments {
  568. width: 100%;
  569. overflow: auto;
  570. clear: right;
  571. padding: 12px 0 3px 0;
  572. border-top: 1px solid #aaa;
  573. line-height: 1.4em;
  574. font-size: 0.9em;
  575. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  576. }
  577. .custom_fields_above_signature {
  578. width: 98%;
  579. clear: right;
  580. padding: 12px 0 3px 0;
  581. border-top: 1px solid #aaa;
  582. line-height: 1.4em;
  583. font-size: 0.9em;
  584. }
  585. /* Sometimes there will be an error when you post */
  586. .error {
  587. color: red;
  588. }
  589. /* Messages that somehow need to attract the attention. */
  590. .alert {
  591. color: red;
  592. }
  593. /* Calendar colors for birthdays, events and holidays */
  594. .birthday {
  595. color: #920ac4;
  596. }
  597. .event {
  598. color: #078907;
  599. }
  600. .holiday {
  601. color: #000080;
  602. }
  603. /* Colors for warnings */
  604. .warn_mute {
  605. color: red;
  606. }
  607. .warn_moderate {
  608. color: #ffa500;
  609. }
  610. .warn_watch, .success {
  611. color: green;
  612. }
  613. a.moderation_link, a.moderation_link:visited {
  614. color: red;
  615. font-weight: bold;
  616. }
  617. .openid_login {
  618. background: white url(../images/openid.png) no-repeat;
  619. padding-left: 18px;
  620. }
  621. /* a descriptive style */
  622. .description, .description_board, .information, .plainbox {
  623. padding: 6px 12px;
  624. font-size: 0.9em;
  625. line-height: 1.4em;
  626. border: 1px solid #ccc;
  627. border-top: none;
  628. border-radius: 0 0 3px 3px;
  629. background: none;
  630. margin: -1px 0 12px 0;
  631. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  632. }
  633. /* an informative style */
  634. .information {
  635. background: #f0f6f0;
  636. margin: 2px 1px 12px 1px;
  637. }
  638. .information p {
  639. padding: 12px;
  640. margin: 0;
  641. }
  642. p.para2 {
  643. padding: 12px 0 44px 0;
  644. margin: 0;
  645. }
  646. /* AJAX notification bar
  647. ------------------------------------------------------- */
  648. #ajax_in_progress {
  649. background: url(../images/theme/loadingbar.png) repeat-x;
  650. color: #f96f00;
  651. text-align: center;
  652. font-size: 1.6em;
  653. padding: 8px;
  654. width: 100%;
  655. height: 66px;
  656. line-height: 25px;
  657. position: fixed;
  658. top: 0;
  659. left: 0;
  660. }
  661. #ajax_in_progress a {
  662. color: orange;
  663. text-decoration: underline;
  664. font-size: 0.9em;
  665. float: right;
  666. margin-right: 20px;
  667. }
  668. /* Lists with settings use these a lot.
  669. ------------------------------------------------------- */
  670. dl.settings {
  671. clear: right;
  672. overflow: auto;
  673. margin: 0 0 10px 0;
  674. padding: 0;
  675. }
  676. dl.settings dt {
  677. width: 40%;
  678. float: left;
  679. margin: 0 0 10px 0;
  680. padding: 0;
  681. clear: both;
  682. }
  683. dl.settings dt.settings_title {
  684. width: 100%;
  685. float: none;
  686. margin: 0 0 10px 0;
  687. padding: 5px 0 0 0;
  688. font-weight: bold;
  689. clear: both;
  690. }
  691. dl.settings dt.windowbg {
  692. width: 98%;
  693. float: left;
  694. margin: 0 0 3px 0;
  695. padding: 0 0 5px 0;
  696. clear: both;
  697. }
  698. dl.settings dd {
  699. width: 56%;
  700. float: right;
  701. overflow: auto;
  702. margin: 0 0 3px 0;
  703. padding: 0;
  704. }
  705. dl.settings img {
  706. margin: 0 10px 0 0;
  707. vertical-align: middle;
  708. }
  709. /* help icons */
  710. dl.settings dt a img {
  711. position: relative;
  712. vertical-align: top;
  713. }
  714. /* Styles for rounded headers.
  715. ------------------------------------------------------- */
  716. h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg {
  717. overflow: hidden;
  718. font-size: 1.1em;
  719. font-family: tahoma;/*[WIP]*/
  720. font-weight: bold;
  721. line-height: 1.5em;
  722. padding: 8px;
  723. margin-bottom:3px;
  724. margin-top:3px;
  725. }
  726. h3.catbg a:link, h3.catbg a:visited, h4.catbg a:link, h4.catbg a:visited, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a {
  727. color: #fff;
  728. }
  729. h3.catbg2 a, h3.catbg2 {
  730. color: #feb;
  731. }
  732. h3.catbg a:hover, h4.catbg a:hover, .table_list tbody.header td a:hover {
  733. color: #ffc178;
  734. text-shadow: -1px -1px 0 rgba(0,0,0,0.5);
  735. text-decoration: none;
  736. }
  737. h3.catbg2 a:hover {
  738. color: #fff;
  739. text-decoration: none;
  740. }
  741. h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a {
  742. color: #444;
  743. }
  744. h3.titlebg a:hover, h4.titlebg a:hover {
  745. color: #000838;
  746. text-decoration: none;
  747. }
  748. h3.catbg img.icon {
  749. vertical-align: middle;
  750. margin: 0 5px 0 0;
  751. }
  752. h4.catbg a.toggle img {
  753. vertical-align: middle;
  754. margin: 0 5px 0 5px;
  755. }
  756. h4.catbg, h4.catbg2, h3.catbg, h3.catbg2, .table_list tbody.header td.catbg {
  757. background: none;
  758. }
  759. h4.titlebg, h3.titlebg {
  760. background: none;
  761. }
  762. h4.titlebg img.icon {
  763. float: left;
  764. margin: 0 8px 0 0;
  765. }
  766. /* Box-sizing for these should be useful. */
  767. div.cat_bar, div.title_bar,div.title_barIC {
  768. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  769. margin-bottom: 1px;
  770. border-radius: 5px;
  771. }
  772. div.cat_bar {
  773. background: #557ea0;
  774. border-bottom: 1px solid #777;
  775. padding: 0;
  776. border-radius: 6px 6px 0 0;
  777. box-shadow: 0 16px 20px rgba(255,255,255,0.15) inset;
  778. text-shadow: -1px -1px 1px rgba(0,0,0,0.4)
  779. }
  780. /* Message index board descriptions*/
  781. .description_header {
  782. margin: 6px 0 0 0;
  783. }
  784. .cat_bar h3 {
  785. padding: 8px 12px 6px 12px;
  786. }
  787. div.title_bar {
  788. background: #c5cfd9 url(../images/theme/bars.png) 0 -340px repeat-x;
  789. }
  790. /* Info center title bars are a bit different. *//* [WIP] */
  791. /*div.title_barIC {
  792. background: #dde3e9 url(../images/theme/bars.png) 0 0 repeat-x;
  793. }*/
  794. div.title_barIC h4.titlebg {
  795. font-size: 1.1em;
  796. }
  797. /* Upshrinks in cat and title bars. */
  798. #upshrinkHeaderIC p.pminfo {
  799. margin: 0;
  800. padding: 6px;
  801. }
  802. img#upshrink_ic, img#newsupshrink, img.panel_toggle, img#quickReplyExpand {
  803. float: right;
  804. margin: 0;
  805. padding: 4px 4px 0 4px;
  806. }
  807. table.table_list a.unreadlink, table.table_list a.collapse {
  808. float: right;
  809. }
  810. table.table_list a.collapse {
  811. padding: 4px 4px 0 8px;
  812. }
  813. /* Basic icons in cat and title bars. */
  814. #upshrinkHeaderIC h4.titlebg a img{
  815. margin: 0;
  816. padding: 2px 6px 0 0;
  817. }
  818. .table_grid th.last_th input {
  819. margin: 0 2px;
  820. }
  821. .table_grid th.lefttext {
  822. padding: 0 8px;
  823. }
  824. /* a general table class */
  825. table.table_grid {
  826. border-collapse: collapse;
  827. margin-top: 1px;
  828. }
  829. table.table_grid td {
  830. padding: 3px;
  831. }
  832. /* GenericList */
  833. .additional_row {
  834. padding: 6px 0 6px 0;
  835. }
  836. table.table_grid thead tr.catbg th {
  837. /*white-space: nowrap;*/
  838. }
  839. img.sort {
  840. margin-bottom: -4px;
  841. margin-left: 4px;
  842. }
  843. /* table_grid styles for Profile > Show Permissions. */
  844. #permissions table.table_grid td {
  845. padding: 5px 10px;
  846. cursor: default;
  847. }
  848. .postbg {
  849. border-left: 1px solid #7f7f7f;
  850. border-right: 1px solid #7f7f7f;
  851. }
  852. /* Used for sections that need somewhat larger corners.
  853. ----------------------------------------------------------- *//* [WIP] */
  854. .roundframe {
  855. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  856. margin: 2px 0 0 0;
  857. padding: 9px;
  858. background: #f5f5f5;
  859. border: 1px solid #c5c5c5;
  860. border-radius: 7px;
  861. overflow: hidden;
  862. }
  863. .roundframe dl, .roundframe dt, .roundframe p {
  864. margin: 0;
  865. }
  866. .roundframe p {
  867. padding: 6px;
  868. }
  869. /* The main content area.
  870. ------------------------------------------------------- */
  871. .content {
  872. padding: 6px 15px;
  873. margin: 0;
  874. border: none;
  875. }
  876. .content p {
  877. margin: 0 0 6px 0;
  878. }
  879. /* Styles used by the auto suggest control.
  880. ------------------------------------------------------- */
  881. .auto_suggest_div {
  882. position: absolute;
  883. visibility: hidden;
  884. border-radius: 3px;
  885. outline: none !important;
  886. border: 1px solid #bbb;
  887. }
  888. .auto_suggest_item {
  889. background: #ddd;
  890. padding: 1px 4px;
  891. }
  892. .auto_suggest_item_hover {
  893. background: #888;
  894. cursor: pointer;
  895. color: #eee;
  896. padding: 1px 4px;
  897. }
  898. /* Styles for the standard dropdown menus.
  899. ------------------------------------------------------- */
  900. #main_menu {
  901. margin: 0 0 0 0;
  902. padding: 0 0 0 0;
  903. float: left;
  904. width: 100%;
  905. }
  906. .dropmenu {
  907. margin: 0 0 0 0;
  908. padding: 0 20px 0 0;
  909. float: left;
  910. width: 100%;
  911. position: relative; /* WTF is this relative for? Hmmmm.*/
  912. -moz-box-sizing: border-box;
  913. }
  914. /* Level 1 button background. */
  915. .dropmenu li {
  916. margin: 0 2px 0 2px;
  917. padding: 0 0 0.3em 0;
  918. float: left;
  919. font-size: 0.9em;
  920. line-height: 1.9em;
  921. position: relative;
  922. }
  923. /* Needed for new PM notifications. */
  924. .dropmenu li strong {
  925. color: #333;
  926. }
  927. .dropmenu li a {
  928. padding: 0 7px 0 7px;
  929. margin: 0 0 0 0;
  930. display: block;
  931. border: 1px solid rgba(0,0,0,0);
  932. border-radius: 4px;
  933. }
  934. /* Level 1 active button. */
  935. .dropmenu li a.active {
  936. background: orange;
  937. color: #fff;
  938. font-weight: bold;
  939. border: 1px solid #f49a3a;
  940. box-shadow: 0 5px 5px rgba(255,255,255,0.2) inset;
  941. text-shadow: 0 0 1px rgba(0,0,0,0.4);
  942. }
  943. /* Level 1 hover effects. */
  944. .dropmenu li a:hover, .dropmenu li:hover a, .dropmenu li a:focus {
  945. background: #597b9f;
  946. border: 1px solid #4a6b8c;
  947. color: #fff;
  948. cursor: pointer;
  949. text-decoration: none;
  950. box-shadow: 0 4px 4px rgba(255,255,255,0.1) inset;
  951. }
  952. /* Level 1 active button. */
  953. .dropmenu li a.active:hover, .dropmenu li:hover a.active {
  954. background: orange;
  955. border: 1px solid #f49a3a;
  956. color: #444;
  957. box-shadow: 0 5px 5px rgba(255,255,255,0.2) inset;
  958. text-shadow: none;
  959. }
  960. /* This CSS is for adding top level subsection indicators, just in case anyone wants them. */
  961. /* I'm not that keen on them, but perhaps the commented code should be left as a handy demo. */
  962. /*
  963. .dropmenu>li.subsections>a {
  964. padding: 0 17px 0 7px;
  965. background: url(../images/selected_open.png) no-repeat 96% 60%;
  966. }
  967. .dropmenu>li.subsections>a.active {
  968. background: orange url(../images/selected_open.png) no-repeat 96% 60%;
  969. }
  970. .dropmenu>li.subsections>a:hover, .dropmenu>li.subsections:hover>a, .dropmenu>li.subsections>a:focus {
  971. background: #597b9f url(../images/selected_open.png) no-repeat 96% 60%;
  972. }
  973. .dropmenu li.subsections>a.active:hover, .dropmenu li.subsections:hover>a.active, .dropmenu li.subsections>a.active:focus {
  974. background: orange url(../images/selected_open.png) no-repeat 96% 60%;
  975. }
  976. */
  977. /* Levels 2 and 3 submenu wrapper. */
  978. .dropmenu li ul {
  979. z-index: 90;
  980. position: absolute;
  981. top: 2.25em;
  982. left: -9999px;
  983. width: 16em;
  984. padding: 5px 0 7px 0;
  985. font-weight: normal;
  986. background: #fff url(../images/theme/bars.png) 0 -580px repeat-x;
  987. border: solid 1px #999;
  988. border-left: solid 1px #bbb;
  989. border-top: solid 1px #ccc;
  990. border-radius: 2px 7px 0 4px;
  991. box-shadow: 3px 3px 4px rgba(0,0,0,0.3);
  992. }
  993. /* Level 2 link background. */
  994. .dropmenu li li {
  995. margin: 0 0 0 0;
  996. padding: 0 0 0 0;
  997. position: relative;
  998. overflow: visible;
  999. border-top: 1px solid rgba(0,0,0,0);
  1000. border-bottom: 1px solid rgba(0,0,0,0);
  1001. float: none;
  1002. font-size: 1em;
  1003. }
  1004. .dropmenu li li a {
  1005. line-height: 2.4em;
  1006. padding: 0 0 0 0;
  1007. display: block;
  1008. }
  1009. .dropmenu li li a img {
  1010. vertical-align: middle;
  1011. padding: 0 0 0 0;
  1012. }
  1013. /* Note: The next two declarations are for keyboard access with js disabled. */
  1014. .dropmenu ul a:focus {
  1015. margin-left: 9999px;
  1016. background: #fff;
  1017. border-radius: 0 0 0 0;
  1018. }
  1019. .dropmenu ul ul a:focus {
  1020. margin-left: 19950px;
  1021. }
  1022. .dropmenu li:hover li a, .dropmenu li.sfhover li a {
  1023. margin: 0 0 0 0;
  1024. padding: 0 9px;
  1025. border: none;
  1026. border-radius: 0;
  1027. /* Necessary to allow highlighting of 1st level while hovering over submenu. */
  1028. background: none;
  1029. color: #346;
  1030. box-shadow: none;
  1031. }
  1032. /* Level 3 submenu wrapper positioning. */
  1033. .dropmenu li ul ul, .dropmenu li.sfhover ul ul {
  1034. margin: -2.3em 0 0 15.3em;
  1035. }
  1036. /* Level 3 maintains font-size the same as Level 2. */
  1037. .dropmenu li li li a {
  1038. font-size: 1em;
  1039. }
  1040. /* Levels 2 and 3 hover effects. */
  1041. .dropmenu li li:hover, .dropmenu li li:hover>a, .dropmenu li li a:focus, .dropmenu li li.subsections a:focus {
  1042. background: none;
  1043. color: #333;
  1044. text-decoration: none;
  1045. }
  1046. .dropmenu li li:hover {
  1047. border-top: 1px solid #d4dee6;
  1048. border-bottom: 1px solid #cbdae6;
  1049. background: #e3e9ef url(../images/theme/lower_section.png) 0 0 repeat-x;
  1050. }
  1051. /* Reposition Level 2 submenu as visible on hover. */
  1052. .dropmenu li:hover ul, .dropmenu li.sfhover ul {
  1053. left: 0;
  1054. }
  1055. /* Hiding Level 3 submenu off hover. */
  1056. .dropmenu li:hover ul ul, .dropmenu li.sfhover ul ul, .dropmenu li:hover ul ul ul, .dropmenu li.sfhover ul ul ul {
  1057. left: -9999px;
  1058. }
  1059. /* Reposition as visible on hover. */
  1060. .dropmenu li li:hover ul, .dropmenu li li.sfhover ul {
  1061. left: -14px;
  1062. }
  1063. /* Indicator for additonal levels. Best in the anchor so it stays visible on hover. */
  1064. .dropmenu li li.subsections a {
  1065. background: url(../images/admin/subsection.png) no-repeat 99% 40%;
  1066. }
  1067. /* For no-js background. */
  1068. .dropmenu li li.subsections a:focus {
  1069. background: #e3e9ef url(../images/admin/subsection.png) no-repeat 99% 40%, url(../images/theme/lower_section.png) 0 0 repeat-x;
  1070. }
  1071. /* Stops inheritance of indicator icon if there is no fourth level. */
  1072. .dropmenu li li.subsections li a {
  1073. background: none;
  1074. }
  1075. /* Highlighting of current section */
  1076. .dropmenu li li a.chosen {
  1077. font-weight: bold;
  1078. }
  1079. /* To allow absoluting teh toggle innit. */
  1080. div#admin_menu {
  1081. position: relative;
  1082. padding-right: 50px;
  1083. }
  1084. /* The dropdown menu toggle image */
  1085. #menu_toggle {
  1086. position: absolute;
  1087. z-index: 5;
  1088. right: 2px;
  1089. padding: 5px 9px 2px 9px;
  1090. background: #e3e9ef url(../images/theme/lower_section.png) 0 100% repeat-x;
  1091. border: 1px solid #bbb;
  1092. border-bottom: 1px solid #aaa;
  1093. border-radius: 4px;
  1094. }
  1095. .adm_section h4 img {
  1096. float: right;
  1097. margin: 0 1px;
  1098. padding: 3px 3px 0 3px;
  1099. border: 1px solid #ccc;
  1100. border-radius: 4px;
  1101. background: #e3e9ef;
  1102. }
  1103. #menu_toggle:hover, .adm_section h4 img:hover {
  1104. background: #fff url(../images/theme/lower_section.png) 0 30% repeat-x;
  1105. }
  1106. /* Styles for sidebar menus.
  1107. ------------------------------------------------------- */
  1108. #main_container {
  1109. position: relative;
  1110. }
  1111. #main_admsection {
  1112. position: relative;
  1113. left: 0;
  1114. right: 0;
  1115. overflow: auto;
  1116. }
  1117. #left_admsection {
  1118. width: 160px;
  1119. float: left;
  1120. padding-right: 10px;
  1121. }
  1122. .adm_section h4.catbg {
  1123. padding: 6px 8px 4px 8px;
  1124. font-size: 1em;
  1125. }
  1126. .left_admmenu {
  1127. margin: -1px 0 9px 0;
  1128. padding: 8px 6px;
  1129. border: 1px solid #ccc;
  1130. border-top: none;
  1131. border-radius: 0 0 5px 5px;
  1132. line-height: 1.8em;
  1133. }
  1134. /* Styles for the standard button lists.
  1135. ------------------------------------------------------- */
  1136. .buttonlist ul {
  1137. z-index: 100;
  1138. padding: 5px;
  1139. margin: 0 0 5px 0;
  1140. }
  1141. .buttonlist ul li {
  1142. margin: 0 0 0 6px;
  1143. padding: 0;
  1144. float: left;
  1145. }
  1146. .buttonlist ul li a {
  1147. display: block;
  1148. text-transform: uppercase;
  1149. cursor: pointer;
  1150. background: #fff url(../images/theme/lower_section.png) 0 45% repeat-x;
  1151. border: 1px solid #ccc;
  1152. border-right: 1px solid #bbb;
  1153. border-bottom: 1px solid #aaa;
  1154. border-radius: 1px;
  1155. box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  1156. padding: 0 1px;
  1157. margin: 0;
  1158. overflow: visible;
  1159. /* font-weight: bold;*/
  1160. color: #444;
  1161. font-size: 0.8em;
  1162. /* [WIP]*/
  1163. -moz-transition: all 0.05s linear 0.05s;
  1164. }
  1165. /* Keep a consistent size when wrapped in pagesection. */
  1166. .pagesection .buttonlist ul li a {
  1167. font-size: 0.889em;
  1168. /* [WIP]*/
  1169. -moz-transition: all 0.05s linear 0.05s;
  1170. }
  1171. .buttonlist ul li a:hover {
  1172. background: #fff url(../images/theme/upper_section.png) 0 45% repeat-x;
  1173. color: #af6700;
  1174. text-decoration: none;
  1175. border: 1px solid #ccc;
  1176. border-left: 1px solid #bbb;
  1177. border-top: 1px solid #aaa;
  1178. box-shadow: -1px -1px 2px rgba(0,0,0,0.07), -1px -2px 4px rgba(255,255,255,0.33) inset;
  1179. /* [WIP]*/
  1180. -moz-transition: all 0.05s linear 0.05s;
  1181. }
  1182. .buttonlist ul li a span {
  1183. display: block;
  1184. height: 2.2em;
  1185. line-height: 2.2em;
  1186. padding: 0 8px;
  1187. }
  1188. /* the active one */
  1189. .buttonlist ul li a.active {
  1190. background: #557ea0;
  1191. color: #fff;
  1192. font-weight: bold;
  1193. border-radius: 3px;
  1194. border: 1px solid #558080;
  1195. border-left: 1px solid #bbb;
  1196. border-top: 1px solid #354f64;
  1197. box-shadow: -1px -1px 2px rgba(0,0,0,0.1), -1px -2px 3px rgba(255,255,255,0.3) inset, 1px 2px 3px rgba(0,0,0,0.1) inset;
  1198. /* [WIP]*/
  1199. -moz-transition: all 0.05s linear 0.05s;
  1200. }
  1201. .buttonlist ul li a.active:hover {
  1202. color: #ffc187;
  1203. /* [WIP]*/
  1204. -moz-transition: all 0.05s linear 0.05s;
  1205. }
  1206. .align_top ul li a, .align_bottom ul li a {
  1207. margin: 0 12px 0 0;
  1208. }
  1209. #adm_submenus {
  1210. margin: 0;
  1211. padding: 10px 15px 0 15px;
  1212. overflow: hidden;
  1213. }
  1214. /* Styles for the general looks of the theme.
  1215. ------------------------------------------------------- */
  1216. /* Do all these here to save repetition. */
  1217. #header, #header .frame, #top_section, #upper_wrap, #upper_section, #upper_section .user,
  1218. #upper_section .news, .navigate_section, #content_section, #main_content_section,
  1219. #lower_section, #lower_section .frame, #footer_section, #footer_section div.frame {
  1220. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1221. }
  1222. /* These divisions wrap the forum sections when a forum width is set. */
  1223. #wrapper, .frame {
  1224. margin: 0 auto;
  1225. min-width: 764px;
  1226. }
  1227. /* Box-shadow only on this one. */
  1228. #wrapper {
  1229. clear: both;
  1230. border-radius: 8px;
  1231. box-shadow: 0 2px 3px rgba(0,0,0,0.14);
  1232. }
  1233. /* The framing graphics */
  1234. /* The top bar. */
  1235. #top_section {
  1236. overflow: hidden;
  1237. margin: 0;
  1238. padding: 0 4px;
  1239. background: #e2e9f3 url(../images/theme/lower_section.png) 0 0 repeat-x;
  1240. border-bottom: 1px solid #bbb;
  1241. box-shadow: 0 1px 4px rgba(0,0,0,0.16);
  1242. }
  1243. #top_section .frame{
  1244. clear: both;
  1245. }
  1246. #top_section ul {
  1247. margin: 0;
  1248. padding: 9px 9px 7px 9px;
  1249. line-height: 1.3em;
  1250. }
  1251. #top_section ul li {
  1252. margin-bottom: 2px;
  1253. display: inline;
  1254. font-size: 0.9em;
  1255. }
  1256. #search_form {
  1257. padding: 6px 0 0 0;
  1258. text-align: right;
  1259. min-width: 30em;
  1260. }
  1261. #search_form .input_text, #search_form select, #search_form .button_submit {
  1262. padding: 2px;
  1263. margin: 0 0 0 0;
  1264. background: #fff;
  1265. border: 1px solid #ccc;
  1266. border-left: 1px solid #bbb;
  1267. border-top: 1px solid #aaa;
  1268. box-shadow: -1px -1px 2px rgba(0,0,0,0.07), -3px -3px 6px rgba(255,255,255,0.8) inset;
  1269. }
  1270. #search_form select {
  1271. padding: 1px;
  1272. }
  1273. #search_form .button_submit {
  1274. padding: 1px 2px;
  1275. margin: 2px 5px;
  1276. background: #fff url(../images/theme/lower_section.png) 0 45% repeat-x;
  1277. color: #333;
  1278. }
  1279. /* [WIP] In practice it may be better to set a different value for Firefox and Opera only, */
  1280. /* just to save a little bit of code. Will wait for Opera detection on body tag. */
  1281. #ie #search_form .button_submit, #chrome #search_form .button_submit {
  1282. padding: 3px 5px;
  1283. }
  1284. #search_form .button_submit:hover {
  1285. background: #fff url(../images/theme/upper_section.png) 0 45% repeat-x;
  1286. color: #a85400;
  1287. text-decoration: none;
  1288. }
  1289. /* The logo and slogan. */
  1290. #header {
  1291. padding: 2px 2px 12px 2px;
  1292. float: left;
  1293. width: 100%;
  1294. }
  1295. /* The main title. */
  1296. h1.forumtitle {
  1297. font-size: 1.8em;
  1298. font-family: tahoma;
  1299. margin: 0;
  1300. padding: 22px 12px 6px 12px;
  1301. float: left;
  1302. font-weight: normal;
  1303. }
  1304. h1.forumtitle a {
  1305. color: #a85400;
  1306. text-shadow: -1px -1px 0 rgba(0,0,0,0.5), 1px 1px 0 #fff;
  1307. }
  1308. /* Float these items to the right */
  1309. #siteslogan, img#smflogo {
  1310. margin: 0;
  1311. padding: 0;
  1312. float: right;
  1313. line-height: 50px;
  1314. font-size: 1.8em;
  1315. }
  1316. /* Tweak the SMF logo */
  1317. img#smflogo {
  1318. margin: 16px 0 0 0;
  1319. }
  1320. /*
  1321. /* The user info, news, etc.*/
  1322. #upper_section {
  1323. padding: 2px 2px 0 2px;
  1324. margin: 0;
  1325. border: 1px solid #bbb;
  1326. border-bottom: none;
  1327. border-radius: 8px 8px 0 0;
  1328. background: #fff;
  1329. float: left;
  1330. width: 100%;
  1331. }
  1332. #inner_section {
  1333. padding: 12px 10px 2px 10px;
  1334. border-radius: 6px 6px 0 0;
  1335. background: #fff url(../images/theme/upper_section.png) 0 -43px repeat-x;
  1336. float: left;
  1337. width: 100%;
  1338. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1339. }
  1340. #inner_wrap {
  1341. float: left;
  1342. width: 100%;
  1343. }
  1344. /* The upper_section, float the two each way */
  1345. .user {
  1346. width: 50%;
  1347. float: left;
  1348. overflow: auto;
  1349. padding: 0 4px;
  1350. font-size: 0.9em;
  1351. }
  1352. ul li.greeting {
  1353. font-weight: bold;
  1354. }
  1355. /* The login form. */
  1356. #guest_form {
  1357. overflow: hidden;
  1358. font-size: 0.9em;
  1359. }
  1360. /* User information. */
  1361. #inner_wrap a.avatar {
  1362. float: left;
  1363. margin: 0 -10px 0 -20px;
  1364. padding: 0;
  1365. text-align: center;
  1366. }
  1367. /* No more huge avatars up top. YAY! */
  1368. #inner_wrap a.avatar img {
  1369. height: 45%;
  1370. width: 45%;
  1371. }
  1372. /* News section. */
  1373. #inner_wrap .news {
  1374. width: 50%;
  1375. max-width: 27em;
  1376. float: right;
  1377. overflow: auto;
  1378. padding: 0 0 6px 0;
  1379. font-size: 0.9em;
  1380. }
  1381. #inner_wrap .news h2, #inner_wrap .news p {
  1382. display: inline;
  1383. padding: 0 0 0 4px;
  1384. }
  1385. /* The upshrink image needs some tweaking */
  1386. img#upshrink {
  1387. float: right;
  1388. padding: 4px;
  1389. border: 1px solid #ccc;
  1390. border-radius: 4px;
  1391. }
  1392. /* The navigation list (i.e. linktree) */
  1393. .navigate_section {
  1394. padding: 3px 0;
  1395. margin: 0 0 6px 0;
  1396. float: left;
  1397. width: 100%;
  1398. }
  1399. #main_content_section .navigate_section {
  1400. margin: 4px 0 0 0;
  1401. padding: 0 0 0 0;
  1402. }
  1403. .navigate_section ul {
  1404. margin: 4px 0 0 0;
  1405. padding: 4px 8px 4px 4px;
  1406. font-size: 0.9em;
  1407. overflow: hidden;
  1408. background: #f0f4f7 url(../images/theme/upper_section.png) 0 -55px repeat-x;
  1409. border: 1px solid #ccc;
  1410. border-radius: 2px;
  1411. box-shadow: 0 -2px 2px rgba(0,0,0,0.08);
  1412. -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-sizing: border-box;
  1413. }
  1414. .navigate_section ul li {
  1415. float: left;
  1416. padding: 0 0 0 4px;
  1417. line-height: 1.8em;
  1418. color: #444;
  1419. text-shadow: 1px 1px 0 #fff;
  1420. }
  1421. .navigate_section ul li a {
  1422. display: inline-block;
  1423. position: relative;
  1424. }
  1425. .navigate_section ul li .dividers {
  1426. color: #3f6b8c;
  1427. text-shadow: -2px -1px 0 rgba(0,0,0,0.4), -1px -1px 0 rgba(0,0,0,0.4), -2px 1px 0 rgba(0,0,0,0.4);
  1428. }
  1429. /* "Unread posts" and "New replies" links, accessible with header collapsed. */
  1430. .navigate_section .unread_links {
  1431. float: right;
  1432. padding: 0 0 0 14px;
  1433. }
  1434. /* The content section */
  1435. #content_section {
  1436. background: #fff;
  1437. margin: 0 auto;
  1438. padding: 0;
  1439. border: 1px solid #b8b8b8;
  1440. border-top: none;
  1441. border-radius: 0 0 8px 8px;
  1442. clear: both;
  1443. }
  1444. #main_content_section {
  1445. padding: 1px 12px 16px 13px;
  1446. min-height: 300px;
  1447. overflow: auto;
  1448. }
  1449. /* Footer is now full-width by default. Frame inside it will match theme wrapper width automatically. */
  1450. /* The footer wih copyright links etc. */
  1451. #footer_section {
  1452. margin: 4em 0 0 0;
  1453. padding: 0;
  1454. overflow: auto;
  1455. background: #3e5a78;
  1456. border-top: 3px solid #bbb;
  1457. }
  1458. /* min-width should be equal to #wrapper min-width. */
  1459. #footer_section div.frame {
  1460. padding: 10px 5px;
  1461. overflow: auto;
  1462. }
  1463. #footer_section ul li, #footer_section p,
  1464. #footer_section ul li a, #footer_section p a {
  1465. font-size: 0.9em;
  1466. color: #fff;
  1467. }
  1468. #footer_section ul li {
  1469. display: inline;
  1470. padding-right: 5px;
  1471. }
  1472. #footer_section ul li.copyright {
  1473. display: block;
  1474. }
  1475. /* Globally accessible "go up" link. */
  1476. #bot {
  1477. display: block;
  1478. margin: 0;
  1479. width: 25px;
  1480. float: right;
  1481. }
  1482. #bot img{
  1483. padding: 4px;
  1484. }
  1485. /* Styles for the board index and child boards tables.
  1486. ------------------------------------------------------- */
  1487. .table_list {
  1488. width: 100%;
  1489. border-collapse: collapse;
  1490. }
  1491. .table_list .header td {
  1492. padding: 0;
  1493. }
  1494. .table_list .content td {
  1495. padding: 7px;
  1496. }
  1497. .table_list .header .cat_bar {
  1498. margin: 0 0 0 -1px;
  1499. }
  1500. .table_list .icon, .table_list .info, .table_list .stats, .table_list.lastpost {
  1501. border-top: 2px solid #fff;
  1502. height: 4.5em;
  1503. }
  1504. .table_list td.icon {
  1505. margin: 0 0 0 1px;
  1506. padding: 8px 0 0 0;
  1507. width: 5%;
  1508. min-width: 50px;
  1509. /*Top aligned is much nicer for the icon. */
  1510. vertical-align: top;
  1511. border-left: 1px solid #ddd;
  1512. text-align: center;
  1513. }
  1514. .table_list td.info {
  1515. padding: 0 7px 0 0;
  1516. }
  1517. /* The board title! */
  1518. .table_list .info .subject {
  1519. font-weight: 600;
  1520. font-size: 1.1em;
  1521. color: #a85400;
  1522. }
  1523. .table_list .info p {
  1524. margin: 0;
  1525. padding: 0;
  1526. font-size: 1em;
  1527. }
  1528. .table_list .info p.moderators {
  1529. font-size: 0.9em;
  1530. }
  1531. .table_list .stats {
  1532. font-size: 0.9em;
  1533. line-height: 1.55em;
  1534. width: 12%;
  1535. }
  1536. .table_list .stats p {
  1537. border-left: 1px solid #ccc;
  1538. border-right: 1px solid #ccc;
  1539. min-height: 3em;
  1540. margin: 3px 0 0 0;
  1541. padding: 0px 7px 0 7px;
  1542. text-align: center;
  1543. }
  1544. .table_list .lastpost {
  1545. font-size: 0.9em;
  1546. line-height: 1.55em;
  1547. width: 24%;
  1548. min-width: 27em;
  1549. border-right: 1px solid #ddd;
  1550. }
  1551. .table_list .lastpost p {
  1552. margin: 3px 0 0 0;
  1553. padding: 0 0 0 0;
  1554. }
  1555. .table_list td.children {
  1556. color: #555;
  1557. font-size: 0.9em;
  1558. padding: 0 0 0 0;
  1559. border-top: 1px solid #ddd;
  1560. border-right: 1px solid #ddd;
  1561. background: #fff;
  1562. }
  1563. .table_list .children p {
  1564. padding: 4px 0 0 0;
  1565. }
  1566. .table_list .icon, .table_list .info, .table_list .stats, .table_list .lastpost {
  1567. background: #fff url(../images/theme/upper_section.png) 0 -57px repeat-x;
  1568. border-top: double #ddd;
  1569. }
  1570. /* Hiding unwanted border repeats. */
  1571. .table_list .content tr:first-child .icon, .table_list .content tr:first-child .info,
  1572. .table_list .content tr:first-child .stats, .table_list .content tr:first-child .lastpost {
  1573. border-top: none;
  1574. }
  1575. .table_list .divider {
  1576. border: none;
  1577. border-top: 1px solid #ddd;
  1578. height: 18px;
  1579. }
  1580. /* the posting icons */
  1581. #posting_icons {
  1582. padding: 0 12px 6px 12px;
  1583. margin: 0 0 12px 0;
  1584. line-height: 12px;
  1585. float: left;
  1586. }
  1587. #posting_icons li {
  1588. font-size: 0.9em;
  1589. }
  1590. #posting_icons img {
  1591. vertical-align: middle;
  1592. margin: 0 0 0 12px;
  1593. }
  1594. #postbuttons_upper ul li a span {
  1595. line-height: 19px;
  1596. padding: 0 0 0 6px;
  1597. }
  1598. .mark_read {
  1599. margin: -5px 0 0 0;
  1600. padding: 0 6px;
  1601. float: right;
  1602. }
  1603. .mark_read .buttonlist ul {
  1604. margin: 0 0 0 0;
  1605. padding: 0 0 0 0;
  1606. }
  1607. /* the newsfader */
  1608. #newsfader {
  1609. margin: 0;
  1610. }
  1611. #smfFadeScroller {
  1612. text-align: center;
  1613. padding: 12px 25px;
  1614. overflow: auto;
  1615. color: #444444; /* shouldn't be shorthand style due to a JS bug in IE! */
  1616. }
  1617. /* Styles for the info center on the board index.
  1618. ---------------------------------------------------- */
  1619. #info_center {
  1620. clear: both;
  1621. margin: 0;
  1622. }
  1623. #upshrinkHeaderIC {
  1624. margin-top: 4px;
  1625. }
  1626. #ic_recentposts {
  1627. line-height: 1.6em;
  1628. width: 98%;
  1629. margin: -2px 0 0 23px;
  1630. font-size: 0.9em;
  1631. }
  1632. #ic_recentposts td {
  1633. border-top: 1px solid #eaeaea;
  1634. padding: 0 4px;
  1635. vertical-align: top;
  1636. }
  1637. #ic_recentposts tr:first-child td {
  1638. border-top: none;
  1639. }
  1640. #ic_recentposts .recentpost strong {
  1641. width: 40%;
  1642. }
  1643. #ic_recentposts .recentposter {
  1644. width: 15%;
  1645. }
  1646. #ic_recentposts .recentboard {
  1647. width: 20%;
  1648. }
  1649. #ic_recentposts .recenttime {
  1650. width: 25%;
  1651. }
  1652. #ic_recentposts .recenttime strong {
  1653. color: #555;
  1654. }
  1655. #upshrinkHeaderIC p.inline, #upshrinkHeaderIC p.last {
  1656. border: none;
  1657. margin: 0 0 0 0;
  1658. padding: 2px 29px;
  1659. line-height: 1.6em;
  1660. font-size: 0.9em;
  1661. }
  1662. #upshrinkHeaderIC p.inline span {
  1663. margin: 0;
  1664. padding: 4px 0 0 0;
  1665. }
  1666. #upshrinkHeaderIC span.membergroups {
  1667. display: block;
  1668. }
  1669. #upshrinkHeaderIC p.last {
  1670. border-top: double #ddd;
  1671. padding-bottom: 0;
  1672. }
  1673. /* the small stats */
  1674. #index_common_stats {
  1675. margin: -4px 8px 6px 8px;
  1676. padding: 4px 0 0 0;
  1677. font-size: 0.9em;
  1678. border-top: 1px solid #ccc;
  1679. }
  1680. img.new_posts {
  1681. padding: 0 1px;
  1682. }
  1683. .fix_rtl_names {
  1684. display:inline-block;
  1685. }
  1686. /* Styles for the message (topic) index.
  1687. ---------------------------------------------------- */
  1688. div.table_frame .table_list {
  1689. border-collapse: collapse;
  1690. margin: 2px 0;
  1691. }
  1692. #messageindex {
  1693. clear: both;
  1694. }
  1695. /* the page navigation area */
  1696. .childboards {
  1697. margin-bottom: 2px;
  1698. }
  1699. #childboards h3 {
  1700. padding-bottom: 0;
  1701. }
  1702. #childboards .table_list thead {
  1703. display: none;
  1704. }
  1705. #childboards .table_list {
  1706. margin-bottom: 12px;
  1707. }
  1708. .lastpost img {
  1709. float: right;
  1710. padding: 4px;
  1711. }
  1712. .titlebg td.qaction_cell {
  1713. font-size: 0.909em;
  1714. }
  1715. select.qaction, input.qaction {
  1716. padding: 0;
  1717. }
  1718. .qaction_cell .button_submit {
  1719. margin: 2px 4px 0 4px;
  1720. }
  1721. #topic_icons {
  1722. margin-top: 6px;
  1723. float: left;
  1724. width: 100%;
  1725. }
  1726. #topic_icons .description {
  1727. border: 1px solid #ccc;
  1728. }
  1729. #topic_icons p.floatleft {
  1730. padding: 0 12px 4px 0;
  1731. }
  1732. #message_index_jump_to_select {
  1733. font-size: 1em;
  1734. margin: 0 -12px 0 0;
  1735. padding: 2px;
  1736. }
  1737. #message_index_jump_to .button_submit {
  1738. padding: 4px 6px 2px 6px;
  1739. }
  1740. /* Styles for the display template (topic view).
  1741. ---------------------------------------------------- */
  1742. /* Events */
  1743. .linked_events {
  1744. padding: 12px 0;
  1745. }
  1746. .edit_event {
  1747. margin: 0 10px;
  1748. vertical-align: top;
  1749. }
  1750. /* Poll question */
  1751. #poll {
  1752. overflow: hidden;
  1753. }
  1754. #poll .content {
  1755. padding: 0 12px;
  1756. }
  1757. h4#pollquestion {
  1758. padding: 0 0 6px 25px;
  1759. }
  1760. /* Poll vote options */
  1761. #poll_options ul.options {
  1762. border-top: 1px solid #9999aa;
  1763. padding: 12px 30px 0 25px;
  1764. margin: 0 0 12px 0;
  1765. }
  1766. #poll_options div.submitbutton {
  1767. border-bottom: 1px solid #9999aa;
  1768. clear: both;
  1769. padding: 0 0 12px 25px;
  1770. margin: 0 0 12px 0;
  1771. }
  1772. /* Poll results */
  1773. #poll_options dl.options {
  1774. border: solid #9999aa;
  1775. border-width: 1px 0;
  1776. padding: 12px 0 12px 25px;
  1777. margin: 0 0 12px 0;
  1778. line-height: 1.4em;
  1779. }
  1780. #poll_options dl.options dt {
  1781. padding: 4px 0;
  1782. width: 30%;
  1783. max-width: 30em;
  1784. float: left;
  1785. margin: 0;
  1786. clear: left;
  1787. }
  1788. #poll_options dl.options .voted {
  1789. font-weight: bold;
  1790. }
  1791. #poll_options dl.options dd {
  1792. margin: 0 0 0 15px;
  1793. padding: 1px 0 0 0;
  1794. width: 60%;
  1795. max-width: 45em;
  1796. float: left;
  1797. margin: 0 0 4px 0;
  1798. padding: 0 4px 0 0;
  1799. line-height: 1.4em;
  1800. min-height: 1.4em;
  1801. background: #fff;
  1802. border: 1px solid #aaa;
  1803. border-radius: 2px;
  1804. position: relative;
  1805. }
  1806. /* Absolute positioning stops these breaking the bars on narrow screens. */
  1807. #poll_options dl.options .percentage {
  1808. display: block;
  1809. float: right;
  1810. margin: 0 0 0 0;
  1811. padding: 0 2px;
  1812. position: absolute;
  1813. right: 0;
  1814. top: 0;
  1815. z-index: 2;
  1816. background: #fff;
  1817. white-space: pre;
  1818. }
  1819. /* Poll notices */
  1820. #poll_options p {
  1821. margin: 0 18px 2px 18px;
  1822. padding: 0 6px 6px 6px;
  1823. }
  1824. div#pollmoderation {
  1825. margin: 0;
  1826. padding: 0;
  1827. overflow: auto;
  1828. }
  1829. #poll_options .submitbutton {
  1830. float: right;
  1831. width: 100%;
  1832. }
  1833. /* On to the posts */
  1834. #forumposts {
  1835. clear: both;
  1836. margin: 8px 0 0 0;
  1837. }
  1838. #forumposts .cat_bar {
  1839. margin: 0 0 -4px 0;
  1840. }
  1841. /* Topic information */
  1842. #forumposts .catbg img {
  1843. margin: 0 4px -2px 0;
  1844. }
  1845. #forumposts .catbg span {
  1846. white-space: pre;
  1847. /* Specific sizing for clarity without ClearType. */
  1848. font-size: 0.818em;
  1849. font-weight: normal;
  1850. padding-top: 2px;
  1851. }
  1852. p#whoisviewing {
  1853. margin: 0;
  1854. padding: 6px 6px 0 6px;
  1855. }
  1856. /* poster and postarea + moderation area underneath */
  1857. /* Need to sort the overflow on the post backgrounds. */
  1858. #forumposts .windowbg, #forumposts .windowbg2 {
  1859. overflow: visible;
  1860. float: left;
  1861. width: 100%;
  1862. }
  1863. .post_wrapper {
  1864. float: left;
  1865. width: 100%;
  1866. }
  1867. /* poster details and list of items */
  1868. .poster {
  1869. float: left;
  1870. /* Don't set this in em.It will eat too much space if people nead to set large text sizes. */
  1871. /* Better to just break the few words here, and leave more space for actual topic content. */
  1872. width: 160px;
  1873. word-wrap: break-word;
  1874. /*border: 1px solid #ccc;*/
  1875. border-radius: 5px;
  1876. }
  1877. .poster h4 {
  1878. font-size: 1.2em;
  1879. }
  1880. .poster h4, .poster h4 a, .poster h4 a:hover, .poster h4 li:hover a, .poster li.sfhover a {
  1881. margin: 0 0 0 0;
  1882. padding: 0 0 0 0;
  1883. color: #c06002;
  1884. display: block;
  1885. }
  1886. /* Nifty new flyout menu for the poster info. */
  1887. /* [WIP] Can probably clean up the CSS here a bit. */
  1888. /* Check inheritance with font size in the dropdown. */
  1889. .poster .dropmenu {
  1890. padding: 0 0 0 0;
  1891. margin: -8px 0 0 0;
  1892. float: none;
  1893. }
  1894. .poster .dropmenu>li, .poster .dropmenu>li:hover, .poster .dropmenu>li.sfhover
  1895. .poster .dropmenu>li h4, .poster .dropmenu>li:hover h4, .poster .dropmenu>li.sfhover h4,
  1896. .poster .dropmenu>li h4 a,.poster .dropmenu>li:hover h4 a, .poster .dropmenu>li.sfhover h4 a {
  1897. padding: 0 0 0 0;
  1898. margin: 0 0 0 0;
  1899. float: none;
  1900. border: none;
  1901. background: none;
  1902. line-height: 1.5em;
  1903. text-align: center;
  1904. }
  1905. .poster .dropmenu li:hover a, .poster .dropmenu li.sfhover a, .poster .dropmenu li a:hover,
  1906. .poster .dropmenu li:hover a:hover, .poster .dropmenu li.sfhover a:hover, .poster .dropmenu li a {
  1907. background: none;
  1908. border: none;
  1909. }
  1910. .poster .dropmenu>li>ul {
  1911. top: 3em;
  1912. float: none;
  1913. }
  1914. .poster .dropmenu>li>ul>li {
  1915. float: none;
  1916. text-align: left;
  1917. }
  1918. .poster .dropmenu>li.sfhover>ul, .poster .dropmenu>li:hover>ul {
  1919. left: 0;
  1920. width: 15em;
  1921. padding: 6px 2px 4px 2px;
  1922. }
  1923. .poster .dropmenu>li>ul>li, .poster .dropmenu>li>ul>li:hover {
  1924. background: none;
  1925. border: none;
  1926. }
  1927. .poster .dropmenu ul ol {
  1928. padding: 0 0 0 0;
  1929. margin: 6px 0 0 0;
  1930. float: left;
  1931. width: 100%;
  1932. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1933. }
  1934. .poster .dropmenu li ul li, .poster .dropmenu li ul li:hover {
  1935. background: none;
  1936. border: none;
  1937. }
  1938. .poster .dropmenu li ul li.im_icons, .poster .dropmenu ul ol li {
  1939. padding: 3px;
  1940. }
  1941. .poster .dropmenu ul ol li {
  1942. display: table-cell;
  1943. }
  1944. .poster .dropmenu li.postgroup, .poster .dropmenu li.postcount, .poster .dropmenu li.karma,
  1945. .poster .dropmenu li.karma_allow, .poster .dropmenu li.gender, .poster .dropmenu li.blurb {
  1946. padding: 0 10px 0 10px;
  1947. }
  1948. .poster .dropmenu li ul li.report_link, .poster .dropmenu li ul li.issue_warning, .poster .dropmenu li ul li.poster_ip {
  1949. margin: 0 0 0 0;
  1950. padding: 0 0 0 0;
  1951. float: left;
  1952. width: 100%;
  1953. font-size: 1.1em;
  1954. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1955. }
  1956. .poster .dropmenu li ul li hr {
  1957. margin: 4px 3px;
  1958. }
  1959. .poster .dropmenu li ul li.poster_ip a {
  1960. display: table-cell;
  1961. }
  1962. /* The visible stuff below the avatar. */
  1963. .poster>ul>li.icons, .poster li.membergroup, .poster li.title, .poster li.poster_online, .poster li.warning,
  1964. .poster>ul>li.icons:hover, .poster li.membergroup:hover, .poster li.title:hover, .poster li.poster_online:hover, .poster li.warning:hover {
  1965. font-size: 0.9em;
  1966. line-height: 1.4em;
  1967. padding: 0;
  1968. margin: 3px 0 0 0;
  1969. }
  1970. .poster li.membergroup {
  1971. font-weight: bold;
  1972. }
  1973. .poster li.poster_online, .poster li.poster_online:hover {
  1974. background: #fff url(../images/theme/lower_section.png) 0 40% repeat-x;
  1975. border: 1px solid #ccc;
  1976. border-right: 1px solid #bbb;
  1977. border-bottom: 1px solid #aaa;
  1978. box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  1979. border-radius: 2px;
  1980. padding: 1px 1px 1px 1px;
  1981. color: #222;
  1982. margin: 3px 19px;
  1983. }
  1984. .poster li.poster_online a, .poster li.poster_online:hover a {
  1985. color: #333;
  1986. }
  1987. .poster li.poster_online:hover {
  1988. background: #fff url(../images/theme/upper_section.png) 0 -30px repeat-x;
  1989. box-shadow: 1px 1px 1px rgba(0,0,0,0.07) inset;
  1990. border: 1px solid #ccc;
  1991. border-left: 1px solid #bbb;
  1992. border-top: 1px solid #aaa;
  1993. }
  1994. .poster li.warning a img {
  1995. vertical-align: bottom;
  1996. padding: 0 2px;
  1997. }
  1998. .poster img {
  1999. vertical-align: middle;
  2000. }
  2001. /* End nifty new flyout. */
  2002. .postarea, .moderatorbar {
  2003. margin: 0 0 0 175px;
  2004. }
  2005. .postarea div.flow_hidden {
  2006. width: 100%;
  2007. }
  2008. .moderatorbar {
  2009. clear: right;
  2010. }
  2011. .messageicon {
  2012. float: left;
  2013. margin: -2px 6px -6px 0;
  2014. }
  2015. .messageicon img {
  2016. padding: 0 3px 0 3px;
  2017. }
  2018. .keyinfo {
  2019. padding: 0;
  2020. margin: 0;
  2021. }
  2022. .keyinfo h5 {
  2023. padding: 2px 0 5px 0;
  2024. margin: 0 0 0 0;
  2025. line-height: 1.5em;
  2026. font-size: 0.9em;
  2027. }
  2028. .keyinfo h5 a, .keyinfo h5 a strong {
  2029. color: #ad6825;
  2030. }
  2031. .keyinfo h5 a.floatright {
  2032. padding: 0 12px 0 0;
  2033. }
  2034. .keyinfo h5 .modified {
  2035. float: right;
  2036. color: #333;
  2037. font-weight: normal;
  2038. padding: 2px 4px 0 4px;
  2039. }
  2040. .post {
  2041. margin-top: 0;
  2042. clear: right;
  2043. }
  2044. .inner {
  2045. padding: 6px 12px 2px 0;
  2046. margin: 0 12px 0 0;
  2047. border-top: 1px solid #ccc;
  2048. min-height: 80px;
  2049. }
  2050. img.smiley {
  2051. vertical-align: bottom;
  2052. }
  2053. .attachments {
  2054. padding: 12px 0 0 0;
  2055. }
  2056. .attachments .floatleft {
  2057. padding: 0 6px 8px 6px;
  2058. }
  2059. .attachments_top {
  2060. margin: 0 auto;
  2061. text-align: center;
  2062. }
  2063. .attachments hr {
  2064. clear: both;
  2065. margin: 12px 0;
  2066. }
  2067. /* The quick buttons */
  2068. div.quickbuttons_wrap {
  2069. padding: 2px 0;
  2070. width: 100%;
  2071. float: left;
  2072. }
  2073. ul.quickbuttons {
  2074. margin: 11px 0 0 0;
  2075. padding: 0 0 4px 0;
  2076. clear: right;
  2077. float: right;
  2078. text-align: right;
  2079. }
  2080. ul.quickbuttons li {
  2081. float: left;
  2082. display: inline;
  2083. margin: 0 0px 0 0;
  2084. font-size: 0.9em;
  2085. }
  2086. ul.quickbuttons li a {
  2087. padding: 0 4px 0 20px;
  2088. display: block;
  2089. line-height: 1.9em;
  2090. float: left;
  2091. }
  2092. ul.quickbuttons li a.quote_button {
  2093. padding: 0 4px 0 16px;
  2094. }
  2095. ul.quickbuttons a:hover {
  2096. color: #a70;
  2097. }
  2098. ul.quickbuttons li a.quote_button {
  2099. background: url(../images/theme/quickbuttons.png) no-repeat -1px -1px;
  2100. }
  2101. ul.quickbuttons li a.remove_button {
  2102. background: url(../images/theme/quickbuttons.png) no-repeat 3px -27px;
  2103. }
  2104. ul.quickbuttons li a.modify_button {
  2105. background: url(../images/theme/quickbuttons.png) no-repeat 3px -57px;
  2106. }
  2107. ul.quickbuttons li a.approve_button {
  2108. background: url(../images/theme/quickbuttons.png) no-repeat 0 -90px;
  2109. }
  2110. ul.quickbuttons li a.restore_button {
  2111. background: url(../images/theme/quickbuttons.png) no-repeat 0 -120px;
  2112. }
  2113. ul.quickbuttons li a.split_button {
  2114. background: url(../images/theme/quickbuttons.png) no-repeat 5px -147px;
  2115. }
  2116. ul.quickbuttons li a.reply_button {
  2117. background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
  2118. }
  2119. ul.quickbuttons li a.reply_all_button {
  2120. background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
  2121. }
  2122. ul.quickbuttons li a.notify_button {
  2123. background: url(../images/theme/quickbuttons.png) no-repeat 0 -210px;
  2124. }
  2125. ul.quickbuttons li a.unapprove_button {
  2126. background: url(../images/theme/quickbuttons.png) no-repeat 4px -237px;
  2127. }
  2128. ul.quickbuttons li.inline_mod_check {
  2129. padding: 1px 1px 1px 1px;
  2130. }
  2131. .quickbuttons li {
  2132. background: #fff url(../images/theme/lower_section.png) 0 45% repeat-x;
  2133. border: 1px solid #ccc;
  2134. border-right: 1px solid #bbb;
  2135. border-bottom: 1px solid #aaa;
  2136. border-radius: 1px;
  2137. box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  2138. padding: 0 1px 0 1px;
  2139. color: /*#492700*/ #222;
  2140. margin: 3px 19px;
  2141. overflow: visible;
  2142. /* [WIP] */
  2143. -moz-transition: all 0.1s linear 0.05s;
  2144. }
  2145. .quickbuttons li:first-child {
  2146. border-radius: 4px 1px 1px 4px;
  2147. padding-bottom: 0;
  2148. }
  2149. .quickbuttons li:hover {
  2150. background: #fff url(../images/theme/upper_section.png) 0 -30px repeat-x;
  2151. box-shadow: 1px 1px 1px rgba(0,0,0,0.07) inset;
  2152. border: 1px solid #ccc;
  2153. border-left: 1px solid #bbb;
  2154. border-top: 1px solid #aaa;
  2155. /* [WIP] */
  2156. -moz-transition: all 0.1s linear 0.05s;
  2157. }
  2158. .quickbuttons li.quick_edit, .quickbuttons li.post_options {
  2159. padding: 0 6px 0 22px;
  2160. line-height: 1.9em;
  2161. position: relative;
  2162. color: #222;
  2163. }
  2164. .quickbuttons li.quick_edit img {
  2165. padding: 2px 7em 2px 3px;
  2166. position: absolute;
  2167. left: 0;
  2168. top: 0;
  2169. }
  2170. .quickbuttons li.quick_edit {
  2171. display: none;
  2172. }
  2173. ul.quickbuttons li.inline_mod_check {
  2174. padding: 3px 0 0 3px;
  2175. background: none;
  2176. border: none;
  2177. box-shadow: none;
  2178. }
  2179. .quickbuttons li a, .quickbuttons li a:hover {
  2180. text-decoration: none;
  2181. color: #222;
  2182. }
  2183. .quickbuttons li.post_options {
  2184. padding: 0 4px 0 4px;
  2185. cursor: pointer;
  2186. border-radius: 1px 4px 4px 1px;
  2187. }
  2188. .quickbuttons li.post_options ul {
  2189. position: absolute;
  2190. top: 2.1em;
  2191. right: -1px;
  2192. z-index: -1;
  2193. min-width: 10em;
  2194. padding: 5px 0 7px 0;
  2195. font-weight: normal;
  2196. background: #fff url(../images/theme/bars.png) 0 -580px repeat-x;
  2197. border: solid 1px #999;
  2198. border-left: solid 1px #aaa;
  2199. border-top: solid 1px #bbb;
  2200. border-radius: 4px 2px 4px 0;
  2201. box-shadow: 2px 3px 3px rgba(0,0,0,0.2);
  2202. }
  2203. .quickbuttons li.post_options:hover ul {
  2204. z-index: 10;
  2205. }
  2206. .quickbuttons li.post_options ul li, .quickbuttons li.post_options:hover ul li{
  2207. display: block;
  2208. background: none;
  2209. border: none;
  2210. box-shadow: none;
  2211. min-width: 11em;
  2212. margin: 0;
  2213. line-height: 2.5em;
  2214. border-top: 1px solid rgba(0,0,0,0);
  2215. border-bottom: 1px solid rgba(0,0,0,0);
  2216. }
  2217. .quickbuttons li.post_options ul li:hover {
  2218. border-top: 1px solid #d4dee6;
  2219. border-bottom: 1px solid #cbdae6;
  2220. background: #e3e9ef url(../images/theme/lower_section.png) 0 0 repeat-x;
  2221. }
  2222. .quickbuttons li.post_options ul li a {
  2223. padding: 2px 6px 2px 26px;
  2224. }
  2225. /*-------------------------------------*/
  2226. /* The new little droppy off the "More.." button. */
  2227. /* This should probably be Superfished for production, but transitions were fun to play with in testing. */
  2228. /* [WIP] */
  2229. .quickbuttons li.post_options ul {
  2230. opacity: 0;
  2231. z-index: -1;
  2232. transition-property: opacity 0.4s linear 0.5s, z-index 0.2s linear 0.7s;
  2233. /* Firefox 4 */
  2234. -moz-transition: opacity 0.4s linear 0.5s, z-index 0.2s linear 0.7s;
  2235. /* Safari and Chrome */
  2236. -webkit-transition: left 1s linear 2s;
  2237. /* Opera */
  2238. -o-transition: left 1s linear 2s;
  2239. }
  2240. .quickbuttons li.post_options:hover ul
  2241. {
  2242. z-index: 1;
  2243. opacity: 1;
  2244. -moz-transition: opacity 0.4s ease-in-out 0.1s, z-index 0.05s linear 0.05s;
  2245. }
  2246. /*-------------------------------------*/
  2247. /* Separator of posts. More useful in the print stylesheet. */
  2248. #forumposts .post_separator {
  2249. display: none;
  2250. }
  2251. /* Basic stuff for the bottom of Display.template.php. */
  2252. #moderationbuttons {
  2253. float: left;
  2254. }
  2255. #moderationbuttons_strip {
  2256. float: left;
  2257. margin: 4px 0 4px -4px;
  2258. }
  2259. #moderationbuttons ul li {
  2260. padding: 0 6px 4px 0;
  2261. margin: 0;
  2262. }
  2263. /* The jump to box */
  2264. #display_jump_to {
  2265. padding: 11px 5px 5px 0;
  2266. margin: 0;
  2267. border: none;
  2268. float: right;
  2269. font-size: 1em;
  2270. }
  2271. #display_jump_to select {
  2272. margin: 0 -12px 0 0;
  2273. padding: 2px;
  2274. }
  2275. /* Styles for the quick reply area.
  2276. ----------------------------------------------------*/
  2277. #quickreplybox {
  2278. clear: both;
  2279. }
  2280. #quickReplyOptions .roundframe {
  2281. background: #f0f4f7;
  2282. margin: 8px 0 0 0;
  2283. padding: 8px 10% 12px 10%;
  2284. border: 1px solid #ccc;
  2285. border-radius: 7px;
  2286. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  2287. overflow: auto;
  2288. }
  2289. #quickReplyOptions form textarea {
  2290. height: 100px;
  2291. width: 635px;
  2292. max-width: 100%;
  2293. min-width: 100%;
  2294. }
  2295. /* Styles for edit post section
  2296. ---------------------------------------------------- */
  2297. form#postmodify .roundframe {
  2298. padding: 12px 12%;
  2299. }
  2300. #post_header, .postbox {
  2301. padding: 6px;
  2302. overflow: hidden;
  2303. }
  2304. #post_header dt, .postbox dt {
  2305. float: left;
  2306. padding: 0;
  2307. width: 15%;
  2308. margin: 6px 0 0 0;
  2309. font-weight: bold;
  2310. }
  2311. #post_header dd, .postbox dd {
  2312. float: left;
  2313. padding: 0;
  2314. width: 83%;
  2315. margin: 4px 0;
  2316. }
  2317. #post_header img {
  2318. vertical-align: middle;
  2319. }
  2320. ul.post_options {
  2321. margin: 0 0 0 12px;
  2322. padding: 0;
  2323. overflow: hidden;
  2324. }
  2325. ul.post_options li {
  2326. margin: 2px 0;
  2327. width: 49%;
  2328. float: left;
  2329. }
  2330. #postAdditionalOptionsHeader {
  2331. margin-top: 12px;
  2332. }
  2333. #postMoreOptions {
  2334. border-bottom: 1px solid #cacdd3;
  2335. padding: 6px;
  2336. }
  2337. #postAttachment, #postAttachment2 {
  2338. overflow: hidden;
  2339. margin: 6px 0;
  2340. padding: 0;
  2341. padding: 6px;
  2342. }
  2343. #postAttachment dd, #postAttachment2 dd {
  2344. margin: 4px 0 4px 12px;
  2345. }
  2346. #postAttachment dt, #postAttachment2 dt {
  2347. font-weight: bold;
  2348. }
  2349. #postAttachment3 {
  2350. margin-left: 12px;
  2351. }
  2352. #post_confirm_strip /* < That may be deprecated. */, #shortcuts {
  2353. padding: 12px 0;
  2354. }
  2355. .post_verification {
  2356. margin-top: 6px;
  2357. }
  2358. .post_verification #verification_control {
  2359. margin: 4px 0 4px 12px;
  2360. }
  2361. /* The BBC buttons */
  2362. #bbcBox_message {
  2363. margin: 10px 6px;
  2364. }
  2365. #bbcBox_message div {
  2366. margin: 2px 0;
  2367. vertical-align: top;
  2368. }
  2369. #bbcBox_message div img {
  2370. margin: 0 1px 0 0;
  2371. vertical-align: top;
  2372. }
  2373. #bbcBox_message select {
  2374. margin: 0 2px;
  2375. }
  2376. /* The smiley strip */
  2377. #smileyBox_message {
  2378. margin: 6px;
  2379. }
  2380. /* Styles for edit event section
  2381. ---------------------------------------------------- */
  2382. #post_event .roundframe {
  2383. padding: 12px 12%;
  2384. overflow: auto;
  2385. }
  2386. #post_event fieldset {
  2387. padding: 6px;
  2388. clear: both;
  2389. }
  2390. #post_event #event_main input {
  2391. margin: 0 0 12px 0;
  2392. float: left;
  2393. }
  2394. #post_event #event_main div.smalltext {
  2395. width: 34.6em;
  2396. float: right;
  2397. }
  2398. #post_event div.event_options {
  2399. float: right;
  2400. }
  2401. #post_event .event_main, .event_options {
  2402. padding: 0;
  2403. overflow: hidden;
  2404. }
  2405. #post_event ul.event_main li {
  2406. list-style-type: none;
  2407. margin: 2px 0;
  2408. width: 49%;
  2409. float: left;
  2410. }
  2411. #post_event ul.event_options {
  2412. margin: 0;
  2413. padding: 0 0 8px 8px;
  2414. }
  2415. #post_event ul.event_options li {
  2416. list-style-type: none;
  2417. margin: 0;
  2418. float: left;
  2419. }
  2420. #post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check {
  2421. margin: 0 12px 0 0;
  2422. }
  2423. /* Styles for edit poll section.
  2424. ---------------------------------------------------- */
  2425. #edit_poll {
  2426. overflow: hidden;
  2427. }
  2428. #edit_poll fieldset {
  2429. padding: 6px;
  2430. clear: both;
  2431. overflow: hidden;
  2432. }
  2433. #edit_poll fieldset input {
  2434. margin-left: 8.1em;
  2435. }
  2436. #edit_poll ul.poll_main li {
  2437. padding-left: 12px;
  2438. }
  2439. #edit_poll ul.poll_main input {
  2440. margin-left: 12px;
  2441. }
  2442. #edit_poll ul.poll_main, dl.poll_options {
  2443. overflow: hidden;
  2444. padding: 0 0 8px 8px;
  2445. }
  2446. #edit_poll ul.poll_main li {
  2447. margin: 2px 0;
  2448. }
  2449. #edit_poll dl.poll_options dt {
  2450. width: 33%;
  2451. padding: 0 0 0 12px;
  2452. }
  2453. #edit_poll dl.poll_options dd {
  2454. width: 65%;
  2455. }
  2456. #edit_poll dl.poll_options dd input {
  2457. margin-left: 0;
  2458. }
  2459. /* Styles for the recent messages section.
  2460. ---------------------------------------------------- */
  2461. #readbuttons_top .pagelinks, #readbuttons .pagelinks {
  2462. padding-bottom: 12px;
  2463. width: 60%;
  2464. }
  2465. #readbuttons .pagelinks {
  2466. padding-top: 12px;
  2467. }
  2468. #recent {
  2469. clear: both;
  2470. }
  2471. /* Styles for the move topic section.
  2472. ---------------------------------------------------- */
  2473. #move_topic dl {
  2474. margin-bottom: 0;
  2475. }
  2476. #move_topic dl.settings dt {
  2477. width: 40%;
  2478. }
  2479. #move_topic dl.settings dd {
  2480. width: 59%;
  2481. }
  2482. .move_topic {
  2483. width: 710px;
  2484. margin: auto;
  2485. text-align: left;
  2486. }
  2487. div.move_topic fieldset {
  2488. padding: 6px;
  2489. }
  2490. /* Styles for the send topic section.
  2491. ---------------------------------------------------- */
  2492. fieldset.send_topic {
  2493. border: none;
  2494. padding: 6px;
  2495. }
  2496. dl.send_topic {
  2497. margin-bottom: 0;
  2498. }
  2499. dl.send_mail dt {
  2500. width: 35%;
  2501. }
  2502. dl.send_mail dd {
  2503. width: 64%;
  2504. }
  2505. /* Styles for the report topic section.
  2506. ---------------------------------------------------- */
  2507. #report_topic dl {
  2508. margin-bottom: 0;
  2509. }
  2510. #report_topic dl.settings dt {
  2511. width: 20%;
  2512. }
  2513. #report_topic dl.settings dd {
  2514. width: 79%;
  2515. }
  2516. /* Styles for the split topic section.
  2517. ---------------------------------------------------- */
  2518. div#selected, div#not_selected {
  2519. width: 49%;
  2520. }
  2521. ul.split_messages li.windowbg, ul.split_messages li.windowbg2 {
  2522. margin: 1px;
  2523. }
  2524. ul.split_messages li a.split_icon {
  2525. padding: 0 6px;
  2526. }
  2527. ul.split_messages div.post {
  2528. padding: 12px 0 0 0;
  2529. border-top: 1px solid #fff;
  2530. }
  2531. /* Styles for the merge topic section.
  2532. ---------------------------------------------------- */
  2533. ul.merge_topics li {
  2534. list-style-type: none;
  2535. }
  2536. dl.merge_topic dt {
  2537. width: 25%;
  2538. }
  2539. dl.merge_topic dd {
  2540. width: 74%;
  2541. }
  2542. fieldset.merge_options {
  2543. clear: both;
  2544. }
  2545. .custom_subject {
  2546. margin: 6px 0;
  2547. }
  2548. /* Styles for the login areas.
  2549. ------------------------------------------------------- */
  2550. .login {
  2551. width: 540px;
  2552. margin: 0 auto;
  2553. }
  2554. .login dl {
  2555. overflow: auto;
  2556. clear: right;
  2557. }
  2558. .login dt, .login dd {
  2559. margin: 0 0 5px 0;
  2560. width: 44%;
  2561. padding: 1px;
  2562. }
  2563. .login dt {
  2564. float: left;
  2565. clear: both;
  2566. text-align: right;
  2567. font-weight: bold;
  2568. }
  2569. .login dd {
  2570. width: 54%;
  2571. float: right;
  2572. text-align: left;
  2573. }
  2574. .login p {
  2575. text-align: center;
  2576. }
  2577. /* Additional register fields */
  2578. dl.register_form {
  2579. margin: 0;
  2580. clear: right;
  2581. }
  2582. dl.register_form dt {
  2583. font-weight: normal;
  2584. float: left;
  2585. clear: both;
  2586. width: 50%;
  2587. margin: 6px 0 0 0;
  2588. }
  2589. dl.register_form dt span {
  2590. display: block;
  2591. }
  2592. dl.register_form dd {
  2593. float: left;
  2594. width: 49%;
  2595. margin: 6px 0 0 0;
  2596. }
  2597. #confirm_buttons {
  2598. text-align: center;
  2599. padding: 12px 0;
  2600. }
  2601. .coppa_contact {
  2602. padding: 4px;
  2603. width: 32ex;
  2604. background: #fff;
  2605. color: #222;
  2606. margin-left: 5ex;
  2607. border: 1px solid #222;
  2608. }
  2609. .valid_input {
  2610. background: #f5fff0;
  2611. }
  2612. .invalid_input {
  2613. background: #fff0f0;
  2614. }
  2615. /* Styles for maintenance mode.
  2616. ------------------------------------------------------- */
  2617. #maintenance_mode {
  2618. width: 75%;
  2619. min-width: 520px;
  2620. text-align: left;
  2621. }
  2622. #maintenance_mode img.floatleft {
  2623. margin-right: 12px;
  2624. }
  2625. /* common for all admin sections */
  2626. h3.titlebg img {
  2627. vertical-align: middle;
  2628. margin: 0 5px 0 0;
  2629. }
  2630. tr.titlebg td {
  2631. padding-left: 8px;
  2632. }
  2633. #admin_content {
  2634. clear: left;
  2635. padding-top: 6px;
  2636. }
  2637. /* Custom profile fields like to play with us some times. */
  2638. #admin_content .custom_field {
  2639. margin-bottom: 15px;
  2640. }
  2641. #admin_login .centertext {
  2642. padding: 12px;
  2643. }
  2644. #admin_login .centertext .error {
  2645. padding: 0 0 12px 0;
  2646. }
  2647. #admin_login .centertext a.help img {
  2648. vertical-align: middle;
  2649. }
  2650. tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td {
  2651. padding: 4px 8px;
  2652. }
  2653. #credits p {
  2654. padding: 0;
  2655. font-style: italic;
  2656. margin: 0;
  2657. }
  2658. /* Styles for generic tables.
  2659. ------------------------------------------------------- */
  2660. .topic_table table {
  2661. width: 100%;
  2662. }
  2663. .topic_table .icon1, .topic_table .icon2, .topic_table .stats {
  2664. text-align: center;
  2665. }
  2666. .topic_table table thead {
  2667. border-bottom: 1px solid #fff;
  2668. }
  2669. /* the subject column */
  2670. .topic_table td {
  2671. font-size: 1em;
  2672. }
  2673. .topic_table td.subject p, .topic_table td.stats {
  2674. font-size: 0.9em;
  2675. padding: 0;
  2676. margin: 0;
  2677. }
  2678. .topic_table td.lastpost {
  2679. font-size: 0.9em;
  2680. line-height: 1.3em;
  2681. padding: 4px;
  2682. }
  2683. /* Sticky topics get a different background */
  2684. .topic_table td.stickybg {
  2685. background: #e8d8cf url(../images/icons/quick_sticky.png) no-repeat 98% 4px;
  2686. }
  2687. .topic_table td.stickybg2 {
  2688. background: #f2e3d9 url(../images/icons/quick_sticky.png) no-repeat 98% 4px;
  2689. }
  2690. .topic_table td.locked_sticky, .topic_table td.stickybglockedbg {
  2691. background: #e8d8cf url(../images/icons/quick_sticky_lock.png) no-repeat 98% 4px;
  2692. }
  2693. .topic_table td.locked_sticky2, .topic_table td.stickybglockedbg2 {
  2694. background: #f2e3d9 url(../images/icons/quick_sticky_lock.png) no-repeat 98% 4px;
  2695. }
  2696. /* Plain locked topics just get the icon. */
  2697. /* Nobody wants them to stand out much. */
  2698. .topic_table td.lockedbg {
  2699. background: #e7eaef url(../images/icons/quick_lock.png) no-repeat 98% 4px;
  2700. }
  2701. .topic_table td.lockedbg2 {
  2702. background: #f0f4f7 url(../images/icons/quick_lock.png) no-repeat 98% 4px;
  2703. }
  2704. /* Stop those damned icons popping up in every table cell! */
  2705. .topic_table td.icon1, .topic_table td.icon2, .topic_table td.stats,
  2706. .topic_table td.lastpost, .topic_table td.moderation {
  2707. background-image: none;
  2708. }
  2709. .errorfile_table {
  2710. background: #f0f4f7;
  2711. border-spacing: 3;
  2712. border-collapse: collapse;
  2713. }
  2714. .errorfile_table td.current {
  2715. font-weight: bold;
  2716. border: 1px solid black;
  2717. border-width: 1px 0 1px 1px;
  2718. }
  2719. /* Styles for (fatal) errors.
  2720. ------------------------------------------------- */
  2721. #fatal_error {
  2722. width: 80%;
  2723. margin: auto;
  2724. }
  2725. .errorbox {
  2726. background: #fee url(../images/warning_mute.png) 10px 50% no-repeat;
  2727. text-align: left;
  2728. border-top: 2px solid #c34;
  2729. border-bottom: 2px solid #c34;
  2730. padding: 7px 10px 7px 35px;
  2731. margin-bottom: 12px;
  2732. }
  2733. .errorbox h3 {
  2734. padding: 0;
  2735. margin: 0;
  2736. font-size: 1.1em;
  2737. text-decoration: underline;
  2738. }
  2739. .errorbox p {
  2740. margin: 12px 0 0 0;
  2741. }
  2742. .errorbox p.alert {
  2743. padding: 0;
  2744. margin: 0;
  2745. float: left;
  2746. width: 12px;
  2747. font-size: 1.5em;
  2748. }
  2749. .errorbox span {
  2750. text-decoration: underline;
  2751. }
  2752. /* Styles for info boxes
  2753. ------------------------------------------------- */
  2754. .noticebox {
  2755. color: #666;
  2756. background: #fff6ca url(../images/warning_moderate.png) 10px 50% no-repeat;
  2757. text-align: left;
  2758. border-top: 1px solid #ffd324;
  2759. border-bottom: 1px solid #ffd324;
  2760. padding: 7px 10px 7px 35px;
  2761. margin-bottom: 12px;
  2762. }
  2763. .infobox {
  2764. color: #222;
  2765. background: #efe url(../images/icons/field_valid.png) 10px 50% no-repeat;
  2766. text-align: left;
  2767. border-top: 1px solid green;
  2768. border-bottom: 1px solid green;
  2769. padding: 7px 10px 7px 35px;
  2770. margin-bottom: 12px;
  2771. }
  2772. /* Styles for the profile section.
  2773. ------------------------------------------------- */
  2774. dl {
  2775. overflow: auto;
  2776. margin: 0;
  2777. padding: 0;
  2778. }
  2779. /* The basic user info on the left */
  2780. #basicinfo {
  2781. width: 20%;
  2782. float: left;
  2783. }
  2784. #basicinfo .windowbg .content {
  2785. padding-left: 20px;
  2786. }
  2787. #detailedinfo {
  2788. width: 79.5%;
  2789. float: right;
  2790. }
  2791. #basicinfo h4 {
  2792. font-size: 1.4em;
  2793. font-weight: 100;
  2794. white-space: pre-wrap;
  2795. overflow: hidden;
  2796. }
  2797. #basicinfo h4 span.position {
  2798. font-size: 0.8em;
  2799. font-weight: 100;
  2800. display: block;
  2801. }
  2802. #basicinfo img.avatar {
  2803. display: block;
  2804. margin: 10px 0 0 0;
  2805. }
  2806. #basicinfo ul {
  2807. list-style-type: none;
  2808. margin: 10px 0 0 0;
  2809. }
  2810. #basicinfo ul li {
  2811. display: block;
  2812. float: left;
  2813. margin-right: 5px;
  2814. height: 20px;
  2815. }
  2816. #basicinfo#userstatus {
  2817. display: block;
  2818. clear: both;
  2819. }
  2820. #basicinfo #userstatus img {
  2821. vertical-align: middle;
  2822. }
  2823. #detailedinfo dl, #tracking dl {
  2824. clear: right;
  2825. overflow: auto;
  2826. margin: 0 0 18px 0;
  2827. padding: 0 0 15px 0;
  2828. border-bottom: 1px #ccc solid;
  2829. }
  2830. #detailedinfo dt, #tracking dt {
  2831. width: 35%;
  2832. float: left;
  2833. margin: 0 0 3px 0;
  2834. padding: 0;
  2835. font-weight: bold;
  2836. color: #444;
  2837. clear: both;
  2838. }
  2839. #detailedinfo dd, #tracking dd {
  2840. width: 65%;
  2841. float: left;
  2842. margin: 0 0 3px 0;
  2843. padding: 0;
  2844. }
  2845. #detailedinfo .noborder {
  2846. border-bottom: 0;
  2847. }
  2848. #detailedinfo dt.clear {
  2849. width: 100%;
  2850. }
  2851. #personal_picture {
  2852. display: block;
  2853. margin-bottom: 4px;
  2854. }
  2855. #avatar_server_stored div {
  2856. float: left;
  2857. }
  2858. #avatar_upload {
  2859. overflow: auto;
  2860. }
  2861. #main_admsection #basicinfo, #main_admsection #detailedinfo {
  2862. width: 100%;
  2863. }
  2864. #main_admsection #basicinfo h4 {
  2865. float: left;
  2866. width: 35%;
  2867. }
  2868. #main_admsection #basicinfo img.avatar {
  2869. float: right;
  2870. vertical-align: top;
  2871. }
  2872. #main_admsection #basicinfo ul {
  2873. clear: left;
  2874. }
  2875. #main_admsection #basicinfo span#userstatus {
  2876. clear: left;
  2877. }
  2878. #main_admsection #basicinfo p#infolinks {
  2879. display: none;
  2880. clear: both;
  2881. }
  2882. #main_admsection #basicinfo .botslice {
  2883. clear: both;
  2884. }
  2885. /* Profile statistics */
  2886. #generalstats div.content dt {
  2887. width: 50%;
  2888. float: left;
  2889. margin: 0 0 3px 0;
  2890. padding: 0;
  2891. font-weight: bold;
  2892. clear: both;
  2893. }
  2894. #generalstats div.content dd {
  2895. width: 50%;
  2896. float: left;
  2897. margin: 0 0 3px 0;
  2898. padding: 0;
  2899. }
  2900. /* Activity by time */
  2901. #activitytime {
  2902. margin: 6px 0;
  2903. }
  2904. .activity_stats {
  2905. margin: 0;
  2906. padding: 0;
  2907. }
  2908. .activity_stats li {
  2909. margin: 0;
  2910. padding: 0;
  2911. width: 4.16%;
  2912. float: left;
  2913. }
  2914. .activity_stats li span {
  2915. display: block;
  2916. border: solid #666;
  2917. border-width: 1px 1px 1px 1px;
  2918. border-left: none;
  2919. border-right: none;
  2920. background: #eee;
  2921. text-align: center;
  2922. }
  2923. .activity_stats li.last span {
  2924. border-right: none;
  2925. }
  2926. .activity_stats li div.bar {
  2927. margin: 0 auto;
  2928. width: 15px;
  2929. border: 1px solid #ccc;
  2930. border-bottom: none;
  2931. background: #fff;
  2932. }
  2933. .activity_stats li div.bar div {
  2934. background: #6294CE;
  2935. background: orange;
  2936. box-shadow: 4px -4px 4px rgba(0,0,0,0.1) inset, 4px 4px 4px rgba(255,255,255,0.3) inset;
  2937. }
  2938. .activity_stats li div.bar span {
  2939. position: absolute;
  2940. top: -1000em;
  2941. left: -1000em;
  2942. }
  2943. /* Most popular boards by posts and activity */
  2944. #popularposts {
  2945. width: 49.5%;
  2946. float: left;
  2947. }
  2948. #popularactivity {
  2949. width: 49.5%;
  2950. float: right;
  2951. }
  2952. #popularposts div.content dt, #popularactivity div.content dt {
  2953. width: 65%;
  2954. float: left;
  2955. margin: 0 0 3px 0;
  2956. padding: 0;
  2957. font-weight: bold;
  2958. clear: both;
  2959. }
  2960. #popularposts div.content dd, #popularactivity div.content dd {
  2961. width: 35%;
  2962. float: left;
  2963. margin: 0 0 3px 0;
  2964. padding: 0;
  2965. }
  2966. .profile_pie {
  2967. background: url(../images/stats_pie.png);
  2968. float: left;
  2969. height: 20px;
  2970. width: 20px;
  2971. margin: 0 12px 0 0;
  2972. padding: 0;
  2973. text-indent: -1000em;
  2974. }
  2975. /* View posts */
  2976. .topic .time {
  2977. float: right;
  2978. }
  2979. .counter {
  2980. margin: 0 0 0 0;
  2981. padding: 5px 6px 1px 2px;
  2982. font-size: 2.2em;
  2983. font-weight: bold;
  2984. color: #3f3f3f;
  2985. float: left;
  2986. }
  2987. .topic_details {
  2988. border-bottom: 1px solid #999;
  2989. padding: 0 4px 4px 4px;
  2990. }
  2991. .list_posts {
  2992. border-top: 1px solid #ccc;
  2993. box-shadow: 0 1px 0 #fff inset;
  2994. padding-top: 12px;
  2995. margin: 0;
  2996. overflow: auto;
  2997. }
  2998. .topic h4 {
  2999. margin: 3px 0;
  3000. }
  3001. .topic .post {
  3002. margin: 0 12px;
  3003. min-height: 80px;
  3004. height: auto !important;
  3005. height: 80px;
  3006. }
  3007. .topic .mod_icons {
  3008. text-align: right;
  3009. margin-right: 12px;
  3010. }
  3011. #tracking div.content dl {
  3012. border-bottom: 0;
  3013. margin: 0;
  3014. padding: 0;
  3015. }
  3016. #creator dl {
  3017. margin: 0;
  3018. }
  3019. #creator dt {
  3020. width: 40%;
  3021. float: left;
  3022. clear: both;
  3023. margin: 0 0 10px 0;
  3024. }
  3025. #creator dd {
  3026. float: right;
  3027. width: 55%;
  3028. margin: 0 0 10px 2px;
  3029. overflow: auto;
  3030. }
  3031. img.centericon {
  3032. vertical-align: middle;
  3033. }
  3034. .ignoreboards {
  3035. margin: 0 2%;
  3036. padding: 0;
  3037. width: 90%;
  3038. }
  3039. .ignoreboards a {
  3040. font-weight: bold;
  3041. border-bottom: 1px solid #c4c4c4;
  3042. padding: 1px 0;
  3043. }
  3044. .ignoreboards a:hover {
  3045. text-decoration: none;
  3046. border-bottom: 1px solid #334466;
  3047. }
  3048. .ignoreboards ul {
  3049. margin: 0;
  3050. padding: 0;
  3051. }
  3052. .ignoreboards li {
  3053. float: left;
  3054. clear: both;
  3055. }
  3056. .ignoreboards li.category {
  3057. margin: 8px 0 0 0;
  3058. width: 100%;
  3059. }
  3060. .ignoreboards li ul {
  3061. margin: 2px 0 0 0;
  3062. }
  3063. .ignoreboards li.category ul li.board {
  3064. width: 93%;
  3065. }
  3066. #theme_settings {
  3067. overflow: auto;
  3068. margin: 0;
  3069. padding: 0;
  3070. }
  3071. #theme_settings li {
  3072. margin: 10px 0;
  3073. padding: 0;
  3074. }
  3075. /* Paid Subscriptions */
  3076. #paid_subscription {
  3077. width: 100%;
  3078. }
  3079. #paid_subscription dl.settings {
  3080. margin-bottom: 0;
  3081. }
  3082. #paid_subscription dl.settings dd, #paid_subscription dl.settings dt {
  3083. margin-bottom: 4px;
  3084. }
  3085. /* Pick theme */
  3086. #pick_theme {
  3087. width: 100%;
  3088. float: left;
  3089. }
  3090. /*Issue a warning*/
  3091. #warn_body{
  3092. width: 80%;
  3093. font-size: 0.9em;
  3094. }
  3095. /* Styles for the statistics center.
  3096. ------------------------------------------------- */
  3097. #statistics {
  3098. padding: 6px 0;
  3099. }
  3100. #statistics div {
  3101. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  3102. }
  3103. #statistics div.title_bar {
  3104. margin: 4px 0 0 0;
  3105. }
  3106. #statistics .titlebg img {
  3107. margin: 3px 6px 0 3px;
  3108. }
  3109. #statistics .cat_bar {
  3110. margin: 4px 0 0 0;
  3111. }
  3112. #statistics .flow_hidden {
  3113. background: #f0f4f7;
  3114. margin: 4px 0;
  3115. padding: 2px 6px;
  3116. border-radius: 7px;
  3117. }
  3118. #statistics div.windowbg2 {
  3119. background: none;
  3120. }
  3121. #stats_left, #top_posters, #top_topics_replies, #top_topics_starter {
  3122. float: left;
  3123. width: 50%;
  3124. padding: 0 3px 0 0;
  3125. }
  3126. #stats_right, #top_boards, #top_topics_views, #most_online {
  3127. float: right;
  3128. width: 50%;
  3129. padding: 0 0 0 3px;
  3130. }
  3131. #stats_left{
  3132. border-right: 1px solid #bbb;
  3133. margin-top: 8px;
  3134. }
  3135. #stats_right{
  3136. border-left: 1px solid #fff;
  3137. margin-top: 8px;
  3138. }
  3139. dl.stats {
  3140. clear: both;
  3141. overflow: hidden;
  3142. margin: 0 0 0 0;
  3143. padding: 0 0 0 0;
  3144. }
  3145. #stats_left dl.stats, #stats_right dl.stats{
  3146. margin: -8px 0 -12px 0;
  3147. }
  3148. dl.stats dt {
  3149. width: 50%;
  3150. float: left;
  3151. margin: 0 0 4px 0;
  3152. padding: 0;
  3153. line-height: 1.5em;
  3154. clear: both;
  3155. font-size: 1em;
  3156. }
  3157. dl.stats dd {
  3158. text-align: right;
  3159. width: 50%;
  3160. font-size: 1em;
  3161. float: right;
  3162. margin: 0 0 4px 0;
  3163. padding: 0 4px 0 0;
  3164. line-height: 1.4em;
  3165. min-height: 1.4em;
  3166. background: #fff;
  3167. border: 1px solid #aaa;
  3168. border-radius: 2px;
  3169. position: relative;
  3170. }
  3171. /* Methinks topic links, etc need a little more oomph next to the orange bars. */
  3172. /* Open to suggestions. */
  3173. #stats_left dt a {
  3174. color: #232f46;
  3175. }
  3176. .top_row dl.stats dd {
  3177. background: none; border: none;
  3178. }
  3179. /* Give a bit more room for the date here. */
  3180. #stats_left dt {
  3181. width: 35%;
  3182. }
  3183. #stats_left dd {
  3184. width: 65%;
  3185. }
  3186. .statsbar div.bar {
  3187. float: left;
  3188. background: orange;
  3189. border-right: 1px solid #999;
  3190. border-radius: 1px 0 0 1px;
  3191. box-shadow: 4px -4px 8px rgba(0,0,0,0.1) inset, 4px 4px 8px rgba(255,255,255,0.3) inset;
  3192. display: block;
  3193. margin: 0 4px 0 0;
  3194. height: 1.4em;
  3195. }
  3196. /* Absolute positioning stops these breaking the bars on narrow screens. */
  3197. dl.stats dd span {
  3198. padding: 0 2px;
  3199. position: absolute;
  3200. right: 0;
  3201. top: 0;
  3202. z-index: 2;
  3203. background: #fff;
  3204. white-space: pre;
  3205. }
  3206. #stats {
  3207. margin: 4px 0;
  3208. }
  3209. #stats th.first_th {
  3210. padding-left: 8px;
  3211. }
  3212. #stats tr.windowbg2 th.lefttext {
  3213. border-left: 1px solid #fff;
  3214. }
  3215. #stats tr.windowbg2 th {
  3216. border-right: 1px solid #fff;
  3217. border-bottom: 1px solid #fff;
  3218. }
  3219. tr.windowbg2 th.stats_month {
  3220. width: 25%;
  3221. padding: 0 2em;
  3222. text-align: left;
  3223. border-left: 1px solid #fff;
  3224. }
  3225. tr.windowbg2 td.stats_day {
  3226. padding: 0 3.5em;
  3227. text-align: left;
  3228. border-left: 1px solid #fff;
  3229. }
  3230. /* Styles for the personal messages section.
  3231. ------------------------------------------------- */
  3232. #personal_messages h3 span#author, #personal_messages h3 span#topic_title {
  3233. float: left;
  3234. }
  3235. #personal_messages h3 span#author {
  3236. margin: 0 0 0 6px;
  3237. }
  3238. #personal_messages h3 span#topic_title {
  3239. margin: 0 0 0 9em;
  3240. }
  3241. #personal_messages div.labels {
  3242. padding: 0 12px 0 0;
  3243. }
  3244. #personal_messages .capacity_bar {
  3245. background: #f0f4f7;
  3246. display: block;
  3247. margin: 6px 0 0 12px;
  3248. height: 12px;
  3249. border: 1px solid #adadad;
  3250. width: 10em;
  3251. }
  3252. #personal_messages .capacity_bar span {
  3253. border-right: 1px solid #adadad;
  3254. display: block;
  3255. height: 12px;
  3256. }
  3257. #personal_messages .capacity_bar span.empty {
  3258. background: #a6d69d;
  3259. }
  3260. #personal_messages .capacity_bar span.filled {
  3261. background: #eea800;
  3262. }
  3263. #personal_messages .capacity_bar span.full {
  3264. background: #f10909;
  3265. }
  3266. #personal_messages .reportlinks {
  3267. padding: 6px 1.3em;
  3268. }
  3269. #searchLabelsExpand li {
  3270. padding: 4px 6px;
  3271. }
  3272. #manrules div.righttext {
  3273. padding: 4px 1px;
  3274. }
  3275. dl.addrules dt.floatleft {
  3276. width: 15em;
  3277. color: #333;
  3278. padding: 0 15px 6px 15px;
  3279. }
  3280. #addrule fieldset {
  3281. clear: both;
  3282. }
  3283. #to_item_list_container div, #bcc_item_list_container div {
  3284. float:left;
  3285. margin-right:10px;
  3286. }
  3287. /* Styles for the calendar section.
  3288. ------------------------------------------------- */
  3289. #calendar {
  3290. overflow: hidden;
  3291. }
  3292. /* Used to indicate the current day in the grid. */
  3293. .calendar_today {
  3294. background: #fff;
  3295. border: 1px solid #bbb;
  3296. box-shadow: 0 2px 5px rgba(0,0,0,0.05) inset;
  3297. }
  3298. #month_grid {
  3299. padding: 0 15px 0 0;
  3300. width: 215px;
  3301. text-align: center;
  3302. float: left;
  3303. }
  3304. #month_grid div.cat_bar {
  3305. border-radius: 5px 5px 0 0;
  3306. margin: 0 1px 0 0;
  3307. padding: 0 0 0 0;
  3308. }
  3309. #month_grid h3 a {
  3310. padding: 0 6px 0 6px;
  3311. }
  3312. #month_grid table {
  3313. width: 100%;
  3314. margin-bottom: 12px;
  3315. }
  3316. #main_grid {
  3317. position: relative;
  3318. overflow: hidden;
  3319. }
  3320. #main_grid table {
  3321. width: 100%;
  3322. margin-bottom: 2px;
  3323. padding-bottom: 4px;
  3324. }
  3325. #main_grid .cat_bar {
  3326. border-radius: 5px 5px 0 0;
  3327. margin: 0 1px;
  3328. }
  3329. #main_grid h3.catbg {
  3330. padding: 8px 6px 4px 6px;
  3331. }
  3332. #main_grid h3.catbg span {
  3333. display: block;
  3334. font-size: 1.5em;
  3335. margin: -3px 4px 0 4px;
  3336. }
  3337. #main_grid table th.days {
  3338. width: 14%;
  3339. padding: 4px 0;
  3340. }
  3341. #main_grid table td.weeks {
  3342. text-align: center;
  3343. font-weight: bold;
  3344. font-size: 1.8em;
  3345. }
  3346. #main_grid table td.weeks a:hover {
  3347. text-decoration: none;
  3348. }
  3349. #main_grid table td.days {
  3350. vertical-align: top;
  3351. text-align: center;
  3352. }
  3353. #main_grid h3.weekly {
  3354. text-align: center;
  3355. font-size: 1.4em;
  3356. }
  3357. #main_grid ul.weeklist, #main_grid ul.weeklist li {
  3358. margin: 0 0 8px 0;
  3359. padding: 0;
  3360. float: left;
  3361. width: 100%;
  3362. overflow: hidden;
  3363. }
  3364. #main_grid ul.weeklist li {
  3365. margin: 0 1px 0 1px;
  3366. border-top: 2px solid #fff;
  3367. }
  3368. #main_grid .weeklist h4 {
  3369. text-align: center;
  3370. float: left;
  3371. width: 10em;
  3372. font-size: 1.2em;
  3373. padding: 15px 0;
  3374. }
  3375. #main_grid .weeklist h4 a:hover {
  3376. text-decoration: none;
  3377. border-bottom: 1px solid #346;
  3378. }
  3379. /* Use the old one true layout trick here. */
  3380. #main_grid .weeklist .windowbg2 {
  3381. margin: 0 0 -95px 12em;
  3382. padding: 8px 8px 100px 8px;
  3383. border-radius: 0;
  3384. border-left: 2px solid #fff;
  3385. }
  3386. #main_grid .weeklist .calendar_today {
  3387. margin: 0 0 -95px 12em;
  3388. padding: 8px 8px 100px 8px;
  3389. border-left: none;
  3390. background: #fff;
  3391. }
  3392. a.modify_event {
  3393. color: red;
  3394. }
  3395. span.hidelink {
  3396. font-style: italic;
  3397. }
  3398. /* Add a background that fits with the calendar. */
  3399. #calendar_navigation {
  3400. margin: -6px 1px 0 1px;
  3401. padding: 12px 0;
  3402. text-align: center;
  3403. float: left;
  3404. width: 100%;
  3405. background: #e7eaef;
  3406. }
  3407. /* Cheat and match this to the submit button. */
  3408. #main_grid .buttonlist {
  3409. position: absolute;
  3410. bottom: 12px;
  3411. right: 12px;
  3412. }
  3413. #main_grid .buttonlist a {
  3414. background: #cde7ff url(../images/theme/submit_bg.png) no-repeat;
  3415. border: 1px solid #aaa;
  3416. border-radius: 3px;
  3417. }
  3418. #main_grid .buttonlist a:hover {
  3419. background: #dceeff url(../images/theme/submit_bg.png) no-repeat 0 -140px;
  3420. color: #222;
  3421. }
  3422. /* Styles for the memberlist section.
  3423. ------------------------------------------------- */
  3424. #mlist_search {
  3425. margin: auto;
  3426. width: 500px;
  3427. }
  3428. /* Styles for the basic search section.
  3429. ------------------------------------------------- */
  3430. #searchform, #simple_search p {
  3431. padding: 6px;
  3432. margin: 0;
  3433. }
  3434. #simple_search, #simple_search p, #advanced_search {
  3435. text-align: center !important;
  3436. margin: 0;
  3437. }
  3438. #search_error {
  3439. font-style: italic;
  3440. padding: 4px 12px;
  3441. }
  3442. #search_term_input {
  3443. font-size: 1.1em;
  3444. margin: 0 0 12px;
  3445. }
  3446. /* Styles for the advanced search section.
  3447. ------------------------------------------------- */
  3448. #searchform fieldset {
  3449. text-align: left;
  3450. padding: 0;
  3451. border: none;
  3452. }
  3453. #advanced_search dl#search_options {
  3454. margin: 0 auto;
  3455. width: 600px;
  3456. padding-top: 12px;
  3457. overflow: hidden;
  3458. }
  3459. #advanced_search dt {
  3460. clear: both;
  3461. float: left;
  3462. padding: 2px;
  3463. text-align: right;
  3464. width: 20%;
  3465. }
  3466. #advanced_search dd {
  3467. width: 75%;
  3468. float: left;
  3469. padding: 2px;
  3470. margin: 0 0 0 6px;
  3471. text-align: left;
  3472. }
  3473. #searchform p.clear {
  3474. clear: both;
  3475. }
  3476. /* Styles for the search results page.
  3477. ------------------------------------------------- */
  3478. .topic_table td blockquote, .topic_table td .quoteheader {
  3479. margin: 6px;
  3480. }
  3481. .search_results_posts {
  3482. overflow: hidden;
  3483. }
  3484. .search_results_posts .buttons {
  3485. padding: 5px 12px 0 0;
  3486. }
  3487. /* Styles for the help section.
  3488. ------------------------------------------------- */
  3489. #help_container {
  3490. margin: 0 0 0 0;
  3491. padding: 0 0 8px 0;
  3492. overflow: auto;
  3493. }
  3494. #helpmain {
  3495. margin: 12px 0 0 0;
  3496. padding: 8px 20px 12px 20px;
  3497. border: 1px solid #ccc;
  3498. border-radius: 7px;
  3499. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3500. overflow: auto;
  3501. }
  3502. #helpmain p {
  3503. margin: 10px 0;
  3504. line-height: 1.5em;
  3505. }
  3506. #helpmain ul {
  3507. line-height: 2em;
  3508. margin: 0 0 0 25px;
  3509. }
  3510. #helpmain ul li{
  3511. list-style-type: disc;
  3512. }
  3513. #helpmain ul li a {
  3514. font-weight: bold;
  3515. }
  3516. /* Styles for print media.
  3517. ------------------------------------------------------- */
  3518. @media print {
  3519. #headerarea
  3520. {
  3521. display: none;
  3522. }
  3523. .tborder
  3524. {
  3525. border: none;
  3526. }
  3527. }
  3528. /* Styles for the tooltips
  3529. ------------------------------------------------------- */
  3530. .tooltip {
  3531. position: absolute;
  3532. z-index: 999;
  3533. left: -9999px;
  3534. word-wrap: break-word;
  3535. max-width: 350px;
  3536. padding: 6px 9px;
  3537. color: #333;
  3538. background: #fff;
  3539. border: 1px solid #aaa;
  3540. border-radius: 4px 4px 4px 4px;
  3541. box-shadow: 1px 2px 4px rgba(0,0,0,0.2), 0 0px 10px rgba(0,0,0,0.05) inset;
  3542. }
  3543. /* Styles for popup windows
  3544. ------------------------------------------------------- */
  3545. .popup_container
  3546. {
  3547. display: none;
  3548. position: fixed;
  3549. top: 0;
  3550. left: 0;
  3551. width: 100%;
  3552. height: 100%;
  3553. background: rgba(40,64,80,0.5);
  3554. }
  3555. .popup_window
  3556. {
  3557. position: fixed;
  3558. width: 480px;
  3559. z-index: 99;
  3560. padding: 0;
  3561. box-shadow: 0 3px 6px rgba(0,0,0,0.5);
  3562. border: 1px solid #777;
  3563. border-radius: 7px 7px 3px 3px;
  3564. max-height: none!important;
  3565. overflow: visible!important;
  3566. background: #fff url(../images/theme/lower_section.png) 0 100% repeat-x;
  3567. }
  3568. .popup_content, .popup_heading
  3569. {
  3570. padding: 12px;
  3571. margin: 0;
  3572. }
  3573. .popup_heading
  3574. {
  3575. padding: 10px 8px 8px 8px;
  3576. color: #bf6900;
  3577. background: none;
  3578. }
  3579. .popup_content
  3580. {
  3581. color: #222;
  3582. line-height: 1.6em;
  3583. max-height: 20em;
  3584. overflow: auto;
  3585. background: #fff url(../images/theme/upper_section.png) 0 -55px repeat-x;
  3586. margin: 0px 6px;
  3587. padding: 8px 8px 16px 8px;
  3588. border: 1px solid #bbb;
  3589. border-bottom: 1px solid #ccc;
  3590. border-radius: 6px 6px 2px 2px;
  3591. box-shadow: 0 -2px 3px rgba(0,0,0,0.15), 0 1px 1px rgba(255,255,255,0.2);
  3592. }
  3593. .popup_heading .hide_popup
  3594. {
  3595. display: inline-block;
  3596. width: 16px;
  3597. height: 16px;
  3598. background: url(../images/buttons/delete.png) center center no-repeat;
  3599. float: right;
  3600. }
  3601. .popup_heading .icon
  3602. {
  3603. vertical-align: middle;
  3604. margin: -4px 4px 0 0;
  3605. }
  3606. /* Styles for the progress bar
  3607. -------------------------------------------------- */
  3608. .progress_bar {
  3609. height: 15pt;
  3610. border: 1px solid black;
  3611. background-color: white;
  3612. padding: 3px;
  3613. width: 80%;
  3614. margin: 20px auto 0 auto; /* Top padding should get rid of the <br /> tags in admin for these bars. */
  3615. position: relative;
  3616. border-radius: 5px;
  3617. box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
  3618. }
  3619. .progress_bar div.full_bar {
  3620. padding-top: 1pt;
  3621. width: 100%;
  3622. color: black;
  3623. position: absolute;
  3624. text-align: center;
  3625. font-weight: bold;
  3626. border-radius: 3px;
  3627. z-index: 2;
  3628. }
  3629. .progress_bar div.green_percent {
  3630. height: 15pt;
  3631. background-color: #c1ffc1;
  3632. background-image: -webkit-linear-gradient(top, #c1ffc1, green);
  3633. background-image: -moz-linear-gradient(top, #c1ffc1, green);
  3634. background-image: -ms-linear-gradient(top, #c1ffc1, green);
  3635. background-image: -o-linear-gradient(top, #c1ffc1, green);
  3636. background-image: linear-gradient(top, #c1ffc1, green);
  3637. border-radius: 3px;
  3638. z-index: 1;
  3639. }
  3640. .progress_bar div.blue_percent {
  3641. height: 15pt;
  3642. background-color: #98b8f4;
  3643. background-image: -webkit-linear-gradient(top, #98b8f4, blue);
  3644. background-image: -moz-linear-gradient(top, #98b8f4, blue);
  3645. background-image: -ms-linear-gradient(top, #98b8f4, blue);
  3646. background-image: -o-linear-gradient(top, #98b8f4, blue);
  3647. background-image: linear-gradient(top, #98b8f4, blue);
  3648. border-radius: 3px;
  3649. z-index: 1;
  3650. }
  3651. /* Experimental additions. */
  3652. /*-------------------------*/
  3653. /* Drop the stats cell from the board index on narrow screens. */
  3654. /* Much more user-friendly IMHO. */
  3655. @media screen and (max-width: 1220px) {
  3656. .table_list td.stats {
  3657. display: none;
  3658. }
  3659. .table_list td.lastpost p {
  3660. border-left: 1px solid #ccc;
  3661. padding: 1px 5px 2px 10px;
  3662. margin-top: 1px;
  3663. }
  3664. }
  3665. /* General WIP stuff follows. Just added here temporarily, for convenience while trying stuff out. */
  3666. /* Forum posts may require some special treatment for dealing with clearing floated content. */
  3667. /* Suspect it will be necessary to use float: left; width: 100%; on the windowbg and windowbg2 divs. */
  3668. #forumposts .windowbg, #forumposts .windowbg2, #statistics .flow_hidden {
  3669. background: /*#e8eff5;*/#f0f4f7;
  3670. margin: 12px 0 0 0;
  3671. padding: 8px 8px 16px 8px;
  3672. border: 1px solid #ccc;
  3673. border-radius: 5px;
  3674. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3675. }
  3676. #forumposts .windowbg2 {
  3677. background: #eaf1f4;
  3678. }
  3679. #statistics .flow_hidden {
  3680. background: #e8eff5;
  3681. margin: 12px 0 0 0;
  3682. padding: 8px 8px 16px 8px;
  3683. border: 1px solid #ccc;
  3684. border-radius: 5px;
  3685. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3686. }
  3687. #statistics div.title_bar {
  3688. background: none;
  3689. border-bottom: 2px solid #f5f5f5;
  3690. border-radius: 2px 2px 0 0;
  3691. margin: 1px 4px 0 4px;
  3692. }
  3693. #statistics h4.titlebg {
  3694. background: none;
  3695. border-bottom: 1px solid #bbb;
  3696. border-radius: 0;
  3697. padding: 6px 0;
  3698. margin: 0;
  3699. font-size: 1.1em;
  3700. }
  3701. /* The generic wrapper thingy for teh awesome cool looks innit. */
  3702. /* This lot will be simplified once I get all the styling hooks in place. */
  3703. .generic_list_wrapper, .action_profile #permissions, #postmodify .roundframe, .add_buddy, #creator .windowbg2,
  3704. #notify_options .windowbg2, #info_center, #profileview, #messageindex, #mlist,
  3705. #main_grid table, .core_posts, #recent .core_posts, #recent .topic_table, #searchform .roundframe {
  3706. background: #f0f4f7;
  3707. margin: 12px 0 0 0;
  3708. padding: 8px 8px 16px 8px;
  3709. border: 1px solid #ccc;
  3710. border-radius: 7px;
  3711. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3712. overflow: auto;
  3713. -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-sizing: border-box;
  3714. }
  3715. .generic_list_wrapper .title_bar{
  3716. background: none;
  3717. border-bottom: 1px solid #fff;
  3718. border-radius: 0;
  3719. }
  3720. .generic_list_wrapper .titlebg {
  3721. background: none;
  3722. border-bottom: 1px solid #aaa;
  3723. font-size: 1.1em;
  3724. }
  3725. .generic_list_wrapper .additional_row {
  3726. margin: 0;
  3727. padding: 0;
  3728. border-bottom: 1px solid #aaa;
  3729. border-radius: 0;
  3730. }
  3731. .generic_list_wrapper .information {
  3732. margin: 0;
  3733. padding: 0;
  3734. background: none;
  3735. border: none;
  3736. border-bottom: 1px solid #fff;
  3737. }
  3738. #searchform .roundframe {
  3739. background: #f0f4f7;
  3740. margin: 8px 0 0 0;
  3741. padding: 32px;
  3742. border: 1px solid #ccc;
  3743. border-radius: 7px;
  3744. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3745. overflow: auto;
  3746. }
  3747. .add_buddy .roundframe, .add_buddy .title_bar {
  3748. background: none;
  3749. border: none;
  3750. max-width: 70em;
  3751. }
  3752. #activitytime .windowbg2 .flow_hidden {
  3753. background: none;
  3754. border: none;
  3755. box-shadow: none;
  3756. }
  3757. /* Some caution required here, as Post.template.php topic summary shares #recent with recent posts. */
  3758. #recent .core_posts {
  3759. padding: 8px 0;
  3760. }
  3761. #recent .core_posts span {
  3762. font-weight: normal;
  3763. }
  3764. #recent .quickbuttons {
  3765. margin-top: -2px;
  3766. }
  3767. /* Will find a less verbose way of handling this. */
  3768. .action_recent #recent .core_posts, .action_profile #recent .core_posts {
  3769. padding: 8px 12px;
  3770. }
  3771. .action_recent #recent .quickbuttons {
  3772. margin-top: 8px;
  3773. }
  3774. /* [WIP] Some odd inheritance glitch here with font-size. Check it out. */
  3775. .topic_details .smalltext {
  3776. font-size: 0.9em;
  3777. }
  3778. #recent .windowbg2, .windowbg2 {
  3779. background: /*#eaf1f4;*/#f0f4f7;
  3780. }
  3781. #recent .windowbg, .windowbg {
  3782. background: /*#e8eff5;*/#f0f4f7;
  3783. }
  3784. #recent .pagesection {
  3785. padding: 3px 4px;
  3786. margin: 0 0 -10px 0;
  3787. }
  3788. #left_admsection {
  3789. margin: 0 8px 0 0;
  3790. padding: 0 4px 8px 4px;
  3791. }
  3792. #info_center{
  3793. background: #f8f8f8;
  3794. margin: 12px 0 0 0;
  3795. padding: 16px 12px 6px 12px;
  3796. }
  3797. #info_center .cat_bar, .table_grid tr.catbg th, #show_attachments th, #searchform .roundframe .title_bar {
  3798. border-top: 2px solid #ff9400;
  3799. border-bottom: 2px solid #bf6900;
  3800. background: #fff;
  3801. color: #444;
  3802. border-radius: 2px 2px 0 0;
  3803. text-align: left;
  3804. }
  3805. #show_attachments th {
  3806. text-align: left;
  3807. }
  3808. #info_center .cat_bar {
  3809. border-right: 1px solid #ddd;
  3810. border-left: 1px solid #ddd;
  3811. margin: 0 -1px;
  3812. }
  3813. .table_grid tr.catbg th {
  3814. font-size: 1em;
  3815. padding: 4px 3px 3px 3px;
  3816. }
  3817. tr.catbg th:first-child, #show_attachments th:first-child {
  3818. border-left: 1px solid #ddd;
  3819. }
  3820. tr.catbg th:last-child, #show_attachments th:last-child {
  3821. border-right: 1px solid #ddd;
  3822. }
  3823. #info_center .catbg {
  3824. padding: 6px 12px 5px 12px;
  3825. background: none;
  3826. font-size: 1.1em;
  3827. }
  3828. #info_center .catbg, #info_center .catbg a, .table_grid tr.catbg th a {
  3829. color: #555;
  3830. text-shadow: none;
  3831. }
  3832. #info_center .title_barIC, #postmodify .roundframe .title_bar,
  3833. #activitytime .cat_bar, #popularposts .cat_bar, #popularactivity .cat_bar{
  3834. background: none;
  3835. border-top: 1px solid #999;
  3836. border-bottom: 1px solid #fff;
  3837. border-radius: 0;
  3838. }
  3839. #info_center h4.titlebg, #postmodify .roundframe .titlebg,
  3840. #activitytime .catbg, #popularposts .catbg, #popularactivity .catbg {
  3841. border-bottom: 1px solid #ccc;
  3842. border-top: 1px solid #ccc;
  3843. box-shadow: 0 1px 0 #fff inset, 0 -1px 0 #999 inset;
  3844. padding: 6px 6px 5px 6px;
  3845. font-size: 1em;
  3846. color: #444;
  3847. text-shadow: none;
  3848. }
  3849. #info_center .title_barIC:first-child, #info_center .title_barIC:first-child .titlebg {
  3850. border-top: none;
  3851. box-shadow: 0 -1px 0 #999 inset;
  3852. }
  3853. #postmodify .roundframe .title_bar{
  3854. background: #f8f8f8;
  3855. border-left: 1px solid #ccc;
  3856. border-right: 1px solid #ccc;
  3857. border-radius: 2px;
  3858. }
  3859. #postmodify .roundframe div{
  3860. padding-right: 0;
  3861. }
  3862. #postmodify #message{
  3863. width: 100%;
  3864. -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-sizing: border-box;
  3865. }
  3866. /* Subtle zebra striping to make tables easier to follow. Will make a solution for IE8. */
  3867. /* CSS for locked, sticky, etc has not been applied yet. Don't panic. She'll be right, mate. :P */
  3868. .table_grid td.statsbar div{display: none;}
  3869. .table_grid tr td:first-child, .table_grid td.icon2 {
  3870. border-left: 1px solid #ccc;
  3871. }
  3872. .table_grid td.lastpost, .table_grid td.whos_viewing, .table_grid td.moderation, .table_grid td.qaction_cell {
  3873. border-right: 1px solid #ccc;
  3874. }
  3875. .table_grid td.windowbg, .table_grid td.windowbg2,.table_grid td.lockedbg, .table_grid td.lockedbg2,
  3876. .table_grid td.stickybg, .table_grid td.stickybg2,.table_grid td.locked_sticky, .table_grid td.locked_sticky2,
  3877. .table_grid td.whos_viewing, .table_grid td.moderation, .table_grid td.qaction_cell {
  3878. border-bottom: 1px solid #ccc;
  3879. }
  3880. .table_grid tr:nth-child(even) td {
  3881. background: #fdfdfd;
  3882. }
  3883. .table_grid tr:nth-child(odd) td {
  3884. background: #fafafa;
  3885. }
  3886. .table_grid td.whos_viewing {
  3887. font-size: 0.9em;
  3888. }