index.css 87 KB

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