index.css 86 KB

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