index.css 87 KB

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