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. /* Everything is same except HTML5 valid */
  382. .bbc_tt {
  383. font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
  384. }
  385. /* No image should have a border when linked. */
  386. a img {
  387. border: 0;
  388. }
  389. /* Generally, those [?] icons. This makes your cursor a help icon. */
  390. .help {
  391. cursor: help;
  392. }
  393. .help .icon {
  394. margin: 0;
  395. cursor: help;
  396. opacity: 0.8;
  397. }
  398. .help .icon:hover {
  399. opacity: 1;
  400. }
  401. /* /me uses this a lot. (emote, try typing /me in a post.) */
  402. .meaction {
  403. color: red;
  404. }
  405. /* Highlighted text - such as search results. */
  406. .highlight {
  407. font-weight: bold;
  408. color: #ff7200 !important;
  409. font-size: 1.1em;
  410. }
  411. /* A more discreet highlight color, for selected membergroups etc. */
  412. /* Could be deprecated. */
  413. .highlight2 {
  414. background: #D1E1EF;
  415. color: #222 !important;
  416. }
  417. /* Generic, mostly color-related, classes.
  418. ------------------------------------------------------- */
  419. .titlebg, .titlebg2, tr.titlebg th, tr.titlebg td, tr.titlebg2 td {
  420. color: #444;
  421. font-size: 1.1em;
  422. font-weight: bold;
  423. background: #c5cfd9 url(../images/theme/bars.png) 0 -340px repeat-x;
  424. }
  425. .catbg, .catbg2, tr.catbg td, tr.catbg2 td, tr.catbg th, tr.catbg2 th {
  426. color: #fff;
  427. font-size: 1.1em;
  428. font-weight: bold;
  429. background: #99abbf url(../images/theme/bars.png) 0 -170px repeat-x;
  430. }
  431. /* adjust the table versions of headers */
  432. tr.titlebg th, tr.titlebg2 th, td.titlebg, td.titlebg2, tr.catbg th, tr.catbg2 th, td.catbg, td.catbg2 {
  433. padding: 0 6px;
  434. }
  435. tr.titlebg th a:link, tr.titlebg th a:visited, tr.titlebg2 td a:link, tr.titlebg2 td a:visited {
  436. color: #444;
  437. }
  438. tr.catbg th a:link, tr.catbg th a:visited, tr.catbg2 td a:link, tr.catbg2 td a:visited {
  439. color: #fff;
  440. }
  441. .catbg select {
  442. height: 2em;
  443. font-size: 0.9em;
  444. padding: 0;
  445. }
  446. /* Alternating backgrounds for posts, and several other sections of the forum. */
  447. .windowbg, #preview_body {
  448. color: #222;
  449. background: #e7eaef;
  450. }
  451. .windowbg2 {
  452. color: #222;
  453. background: #f0f4f7;
  454. }
  455. .windowbg3 {
  456. color: #222;
  457. background: #cacdd3;
  458. }
  459. /* General code for generic divs. Should make them behave. */
  460. div.windowbg, div.windowbg2 {
  461. border-radius: 5px;
  462. overflow: auto;
  463. padding: 10px 0;
  464. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  465. }
  466. /* the page navigation area */
  467. .pagesection {
  468. font-size: 0.9em;
  469. padding: 2px 4px;
  470. overflow: hidden;
  471. margin: 0;
  472. clear: both;
  473. }
  474. div.pagesection div.floatright input, div.pagesection div.floatright select {
  475. margin-top: 3px;
  476. }
  477. .pagelinks {
  478. margin: 8px 0 0 0;
  479. }
  480. .navPages {
  481. padding: 0 1px;
  482. }
  483. .next_page, .previous_page {
  484. text-transform: capitalize;
  485. padding: 0 2px;
  486. }
  487. .current_page strong {
  488. font-size: 1.2em;
  489. padding: 0 4px 0 2px;
  490. color: #b46100;
  491. font-family: verdana, sans-serif;
  492. }
  493. /* Next and previous topic links for Display.template.php. */
  494. .nextlinks {
  495. text-transform: capitalize;
  496. }
  497. /* Go up and go down links. */
  498. .topbottom {
  499. display: block;
  500. cursor: pointer;
  501. background: #fff url(../images/theme/lower_section.png) 0 45% repeat-x;
  502. border: 1px solid #ccc;
  503. border-right: 1px solid #bbb;
  504. border-bottom: 1px solid #aaa;
  505. border-radius: 3px;
  506. box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  507. padding: 2px 7px 1px 7px;
  508. margin: 5px 8px 0 0;
  509. color: #222;
  510. /* @todo*/
  511. -moz-transition: all 0.05s linear 0.05s;
  512. }
  513. .topbottom:hover {
  514. text-decoration: none;
  515. background: #fff url(../images/theme/upper_section.png) 0 45% repeat-x;
  516. color: #af6700;
  517. text-decoration: none;
  518. border: 1px solid #ccc;
  519. border-left: 1px solid #bbb;
  520. border-top: 1px solid #aaa;
  521. box-shadow: -1px -1px 2px rgba(0,0,0,0.07), -1px -2px 4px rgba(255,255,255,0.33) inset;
  522. /* @todo*/
  523. -moz-transition: all 0.05s linear 0.05s;
  524. }
  525. /* Sticky topics get a different background */
  526. .stickybg {
  527. background: #e8d8cf;
  528. }
  529. .stickybg2 {
  530. background: #f2e3d9;
  531. }
  532. /* Plain locked topics just get the icon. */
  533. /* Nobody wants them to stand out much. */
  534. .lockedbg {
  535. background: #e7eaef;
  536. }
  537. .lockedbg2 {
  538. background: #f0f4f7;
  539. }
  540. /* Posts and personal messages displayed throughout the forum. */
  541. .post, .personalmessage {
  542. overflow: auto;
  543. line-height: 1.4em;
  544. padding: 1px 0;
  545. }
  546. /* All the signatures used in the forum. If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
  547. .signature, .attachments {
  548. width: 100%;
  549. overflow: auto;
  550. clear: right;
  551. padding: 12px 0 3px 0;
  552. border-top: 1px solid #aaa;
  553. line-height: 1.4em;
  554. font-size: 0.9em;
  555. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  556. }
  557. .custom_fields_above_signature {
  558. width: 98%;
  559. clear: right;
  560. padding: 12px 0 3px 0;
  561. border-top: 1px solid #aaa;
  562. line-height: 1.4em;
  563. font-size: 0.9em;
  564. }
  565. /* Sometimes there will be an error when you post */
  566. .error {
  567. color: red;
  568. }
  569. /* Messages that somehow need to attract the attention. */
  570. .alert {
  571. color: red;
  572. }
  573. /* Calendar colors for birthdays, events and holidays */
  574. .birthday {
  575. color: #920ac4;
  576. }
  577. .event {
  578. color: #078907;
  579. }
  580. .holiday {
  581. color: #000080;
  582. }
  583. /* Colors for warnings */
  584. .warn_mute {
  585. color: red;
  586. }
  587. .warn_moderate {
  588. color: #ffa500;
  589. }
  590. .warn_watch, .success {
  591. color: green;
  592. }
  593. a.moderation_link, a.moderation_link:visited {
  594. color: red;
  595. font-weight: bold;
  596. }
  597. .openid_login {
  598. background: white url(../images/openid.png) no-repeat;
  599. padding-left: 18px;
  600. }
  601. /* a descriptive style */
  602. .description, .description_board, .information, .plainbox {
  603. padding: 6px 12px;
  604. font-size: 0.9em;
  605. line-height: 1.4em;
  606. border: 1px solid #ccc;
  607. border-top: none;
  608. border-radius: 0 0 3px 3px;
  609. background: none;
  610. margin: -1px 0 12px 0;
  611. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  612. }
  613. /* an informative style */
  614. .information {
  615. background: #f0f6f0;
  616. margin: 2px 1px 12px 1px;
  617. }
  618. .information p {
  619. padding: 12px;
  620. margin: 0;
  621. }
  622. p.para2 {
  623. padding: 12px 0 44px 0;
  624. margin: 0;
  625. }
  626. /* AJAX notification bar
  627. ------------------------------------------------------- */
  628. #ajax_in_progress {
  629. background: url(../images/theme/loadingbar.png) repeat-x;
  630. color: #f96f00;
  631. text-align: center;
  632. font-size: 1.6em;
  633. padding: 8px;
  634. width: 100%;
  635. height: 66px;
  636. line-height: 25px;
  637. position: fixed;
  638. top: 0;
  639. left: 0;
  640. }
  641. #ajax_in_progress a {
  642. color: orange;
  643. text-decoration: underline;
  644. font-size: 0.9em;
  645. float: right;
  646. margin-right: 20px;
  647. }
  648. /* Lists with settings use these a lot.
  649. ------------------------------------------------------- */
  650. dl.settings {
  651. clear: right;
  652. overflow: auto;
  653. margin: 0 0 10px 0;
  654. padding: 0;
  655. }
  656. dl.settings dt {
  657. width: 40%;
  658. float: left;
  659. margin: 0 0 10px 0;
  660. padding: 0;
  661. clear: both;
  662. }
  663. dl.settings dt.settings_title {
  664. width: 100%;
  665. float: none;
  666. margin: 0 0 10px 0;
  667. padding: 5px 0 0 0;
  668. font-weight: bold;
  669. clear: both;
  670. }
  671. dl.settings dt.windowbg {
  672. width: 98%;
  673. float: left;
  674. margin: 0 0 3px 0;
  675. padding: 0 0 5px 0;
  676. clear: both;
  677. }
  678. dl.settings dd {
  679. width: 56%;
  680. float: right;
  681. overflow: auto;
  682. margin: 0 0 3px 0;
  683. padding: 0;
  684. }
  685. dl.settings img {
  686. margin: 0 10px 0 0;
  687. vertical-align: middle;
  688. }
  689. /* help icons */
  690. dl.settings dt a img {
  691. position: relative;
  692. vertical-align: top;
  693. }
  694. /* Styles for rounded headers.
  695. ------------------------------------------------------- */
  696. h3.catbg, h3.catbg2, h3.titlebg, h4.titlebg, h4.catbg {
  697. overflow: hidden;
  698. font-size: 1.1em;
  699. font-family: tahoma;/* @todo */
  700. font-weight: bold;
  701. line-height: 1.5em;
  702. padding: 8px;
  703. }
  704. h3.catbg a:link, h3.catbg a:visited, h4.catbg a:link, h4.catbg a:visited, h3.catbg, .table_list tbody.header td, .table_list tbody.header td a {
  705. color: #fff;
  706. }
  707. h3.catbg2 a, h3.catbg2 {
  708. color: #feb;
  709. }
  710. h3.catbg a:hover, h4.catbg a:hover, .table_list tbody.header td a:hover {
  711. color: #ffc178;
  712. text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.4);
  713. text-decoration: none;
  714. }
  715. h3.catbg2 a:hover {
  716. color: #fff;
  717. text-decoration: none;
  718. }
  719. h3.titlebg a, h3.titlebg, h4.titlebg, h4.titlebg a {
  720. color: #444;
  721. }
  722. h3.titlebg a:hover, h4.titlebg a:hover {
  723. color: #000838;
  724. text-decoration: none;
  725. }
  726. h3.catbg img.icon {
  727. vertical-align: middle;
  728. margin: 0 5px 0 0;
  729. }
  730. h4.catbg a.toggle img {
  731. vertical-align: middle;
  732. margin: 0 5px 0 5px;
  733. }
  734. h4.catbg, h4.catbg2, h3.catbg, h3.catbg2, .table_list tbody.header td.catbg {
  735. background: none;
  736. }
  737. h4.titlebg, h3.titlebg {
  738. background: none;
  739. }
  740. h4.titlebg img.icon {
  741. float: left;
  742. margin: 0 8px 0 0;
  743. }
  744. /* Box-sizing for these should be useful. */
  745. div.cat_bar, div.title_bar,div.title_barIC {
  746. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  747. margin-bottom: 1px;
  748. border-radius: 5px;
  749. }
  750. div.cat_bar {
  751. background: #557ea0;
  752. border-bottom: 1px solid #777;
  753. padding: 0;
  754. border-radius: 6px 6px 0 0;
  755. box-shadow: 0 16px 20px rgba(255,255,255,0.15) inset;
  756. text-shadow: -1px -1px 1px rgba(0,0,0,0.2)
  757. }
  758. /* Message index board descriptions*/
  759. .description_header {
  760. margin: 6px 0 0 0;
  761. }
  762. .cat_bar h3 {
  763. padding: 8px 12px 6px 12px;
  764. }
  765. div.title_bar {
  766. background: #c5cfd9 url(../images/theme/bars.png) 0 -340px repeat-x;
  767. }
  768. /* Info center title bars are a bit different. */ /* @todo */
  769. /*div.title_barIC {
  770. background: #dde3e9 url(../images/theme/bars.png) 0 0 repeat-x;
  771. }*/
  772. div.title_barIC h4.titlebg {
  773. font-size: 1.1em;
  774. }
  775. /* Upshrinks in cat and title bars. */
  776. #upshrinkHeaderIC p.pminfo {
  777. margin: 0;
  778. padding: 6px;
  779. }
  780. img#upshrink_ic, img#newsupshrink, img.panel_toggle, img#quickReplyExpand {
  781. float: right;
  782. margin: 0;
  783. padding: 4px 4px 0 4px;
  784. }
  785. table.table_list a.unreadlink, table.table_list a.collapse {
  786. float: right;
  787. }
  788. table.table_list a.collapse {
  789. padding: 4px 4px 0 8px;
  790. }
  791. /* Basic icons in cat and title bars. */
  792. #upshrinkHeaderIC h4.titlebg a img{
  793. margin: 0;
  794. padding: 2px 6px 0 0;
  795. }
  796. .table_grid th.last_th input {
  797. margin: 0 2px;
  798. }
  799. .table_grid th.lefttext {
  800. padding: 0 8px;
  801. }
  802. /* a general table class */
  803. table.table_grid {
  804. border-collapse: collapse;
  805. margin-top: 1px;
  806. }
  807. table.table_grid td {
  808. padding: 3px;
  809. }
  810. /* GenericList */
  811. .additional_row {
  812. padding: 6px 0 6px 0;
  813. }
  814. table.table_grid thead tr.catbg th {
  815. /*white-space: nowrap;*/
  816. }
  817. img.sort {
  818. margin-bottom: -4px;
  819. margin-left: 4px;
  820. }
  821. /* table_grid styles for Profile > Show Permissions. */
  822. #permissions table.table_grid td {
  823. padding: 5px 10px;
  824. cursor: default;
  825. }
  826. .postbg {
  827. border-left: 1px solid #7f7f7f;
  828. border-right: 1px solid #7f7f7f;
  829. }
  830. /* Used for sections that need somewhat larger corners.
  831. ----------------------------------------------------------- */ /* @todo */
  832. .roundframe {
  833. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  834. margin: 2px 0 0 0;
  835. padding: 9px;
  836. background: #f5f5f5;
  837. border: 1px solid #c5c5c5;
  838. border-radius: 7px;
  839. overflow: hidden;
  840. }
  841. .roundframe dl, .roundframe dt, .roundframe p {
  842. margin: 0;
  843. }
  844. .roundframe p {
  845. padding: 6px;
  846. }
  847. /* The main content area.
  848. ------------------------------------------------------- */
  849. .content {
  850. padding: 6px 15px;
  851. margin: 0;
  852. border: none;
  853. }
  854. .content p {
  855. margin: 0 0 6px 0;
  856. }
  857. /* Styles used by the auto suggest control.
  858. ------------------------------------------------------- */
  859. .auto_suggest_div {
  860. position: absolute;
  861. visibility: hidden;
  862. border-radius: 3px;
  863. outline: none !important;
  864. border: 1px solid #bbb;
  865. }
  866. .auto_suggest_item {
  867. background: #ddd;
  868. padding: 1px 4px;
  869. }
  870. .auto_suggest_item_hover {
  871. background: #888;
  872. cursor: pointer;
  873. color: #eee;
  874. padding: 1px 4px;
  875. }
  876. /* Styles for the standard dropdown menus.
  877. ------------------------------------------------------- */
  878. #main_menu {
  879. margin: 0 0 0 0;
  880. padding: 0 0 0 0;
  881. float: left;
  882. width: 100%;
  883. }
  884. .dropmenu {
  885. margin: 0 0 0 0;
  886. padding: 0 20px 0 0;
  887. float: left;
  888. width: 100%;
  889. position: relative; /* WTF is this relative for? Hmmmm.*/
  890. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  891. }
  892. /* Level 1 button background. */
  893. .dropmenu li {
  894. margin: 0 2px 0 2px;
  895. padding: 0 0 0.3em 0;
  896. float: left;
  897. font-size: 0.9em;
  898. line-height: 1.9em;
  899. position: relative;
  900. }
  901. /* Needed for new PM notifications. */
  902. .dropmenu li strong {
  903. color: #333;
  904. }
  905. .dropmenu li a {
  906. padding: 0 7px 0 7px;
  907. margin: 0 0 0 0;
  908. display: block;
  909. border: 1px solid rgba(0,0,0,0);
  910. border-radius: 4px;
  911. }
  912. /* Level 1 active button. */
  913. .dropmenu li a.active {
  914. background: orange;
  915. color: #fff;
  916. font-weight: bold;
  917. border: 1px solid #f49a3a;
  918. box-shadow: 0 5px 5px rgba(255,255,255,0.2) inset;
  919. text-shadow: 0 0 1px rgba(0,0,0,0.4);
  920. }
  921. /* Level 1 hover effects. */
  922. .dropmenu li a:hover, .dropmenu li:hover a, .dropmenu li a:focus {
  923. background: #597b9f;
  924. border: 1px solid #4a6b8c;
  925. color: #fff;
  926. cursor: pointer;
  927. text-decoration: none;
  928. box-shadow: 0 4px 4px rgba(255,255,255,0.1) inset;
  929. }
  930. /* Level 1 active button. */
  931. .dropmenu li a.active:hover, .dropmenu li:hover a.active {
  932. background: orange;
  933. border: 1px solid #f49a3a;
  934. color: #444;
  935. box-shadow: 0 5px 5px rgba(255,255,255,0.2) inset;
  936. text-shadow: none;
  937. }
  938. /* This CSS is for adding top level subsection indicators, just in case anyone wants them. */
  939. /* I'm not that keen on them, but perhaps the commented code should be left as a handy demo. */
  940. /*
  941. .dropmenu>li.subsections>a {
  942. padding: 0 17px 0 7px;
  943. background: url(../images/selected_open.png) no-repeat 96% 60%;
  944. }
  945. .dropmenu>li.subsections>a.active {
  946. background: orange url(../images/selected_open.png) no-repeat 96% 60%;
  947. }
  948. .dropmenu>li.subsections>a:hover, .dropmenu>li.subsections:hover>a, .dropmenu>li.subsections>a:focus {
  949. background: #597b9f url(../images/selected_open.png) no-repeat 96% 60%;
  950. }
  951. .dropmenu li.subsections>a.active:hover, .dropmenu li.subsections:hover>a.active, .dropmenu li.subsections>a.active:focus {
  952. background: orange url(../images/selected_open.png) no-repeat 96% 60%;
  953. }
  954. */
  955. /* Levels 2 and 3 submenu wrapper. */
  956. .dropmenu li ul {
  957. z-index: 90;
  958. position: absolute;
  959. top: 2.25em;
  960. left: -9999px;
  961. width: 17em;
  962. padding: 5px 0 7px 0;
  963. font-weight: normal;
  964. background: #fff url(../images/theme/bars.png) 0 -580px repeat-x;
  965. border: solid 1px #999;
  966. border-left: solid 1px #bbb;
  967. border-top: solid 1px #ccc;
  968. border-radius: 2px 7px 0 4px;
  969. box-shadow: 3px 3px 4px rgba(0,0,0,0.3);
  970. }
  971. /* Level 2 link background. */
  972. .dropmenu li li {
  973. margin: 0 0 0 0;
  974. padding: 0 0 0 0;
  975. position: relative;
  976. overflow: visible;
  977. border-top: 1px solid rgba(0,0,0,0);
  978. border-bottom: 1px solid rgba(0,0,0,0);
  979. float: none;
  980. font-size: 1em;
  981. }
  982. .dropmenu li li a {
  983. line-height: 2.4em;
  984. padding: 0 0 0 0;
  985. display: block;
  986. }
  987. .dropmenu li li a img {
  988. vertical-align: middle;
  989. padding: 0 0 0 0;
  990. }
  991. /* Note: The next two declarations are for keyboard access with js disabled. */
  992. .dropmenu ul a:focus {
  993. margin-left: 9999px;
  994. background: #fff;
  995. border-radius: 0 0 0 0;
  996. }
  997. .dropmenu ul ul a:focus {
  998. margin-left: 19950px;
  999. }
  1000. .dropmenu li:hover li a, .dropmenu li.sfhover li a {
  1001. margin: 0 0 0 0;
  1002. padding: 0 9px;
  1003. border: none;
  1004. border-radius: 0;
  1005. /* Necessary to allow highlighting of 1st level while hovering over submenu. */
  1006. background: none;
  1007. color: #346;
  1008. box-shadow: none;
  1009. }
  1010. /* Level 3 submenu wrapper positioning. */
  1011. .dropmenu li ul ul, .dropmenu li.sfhover ul ul {
  1012. margin: -2.3em 0 0 15.3em;
  1013. }
  1014. /* Level 3 maintains font-size the same as Level 2. */
  1015. .dropmenu li li li a {
  1016. font-size: 1em;
  1017. }
  1018. /* Levels 2 and 3 hover effects. */
  1019. .dropmenu li li:hover, .dropmenu li li:hover>a, .dropmenu li li a:focus, .dropmenu li li.subsections a:focus {
  1020. background: none;
  1021. color: #333;
  1022. text-decoration: none;
  1023. }
  1024. .dropmenu li li:hover {
  1025. border-top: 1px solid #d4dee6;
  1026. border-bottom: 1px solid #cbdae6;
  1027. background: #e3e9ef url(../images/theme/lower_section.png) 0 0 repeat-x;
  1028. }
  1029. /* Reposition Level 2 submenu as visible on hover. */
  1030. .dropmenu li:hover ul, .dropmenu li.sfhover ul {
  1031. left: 0;
  1032. }
  1033. /* Hiding Level 3 submenu off hover. */
  1034. .dropmenu li:hover ul ul, .dropmenu li.sfhover ul ul, .dropmenu li:hover ul ul ul, .dropmenu li.sfhover ul ul ul {
  1035. left: -9999px;
  1036. }
  1037. /* Reposition as visible on hover. */
  1038. .dropmenu li li:hover ul, .dropmenu li li.sfhover ul {
  1039. left: -14px;
  1040. }
  1041. /* Indicator for additonal levels. Best in the anchor so it stays visible on hover. */
  1042. .dropmenu li li.subsections a {
  1043. background: url(../images/admin/subsection.png) no-repeat 99% 40%;
  1044. }
  1045. /* For no-js background. */
  1046. .dropmenu li li.subsections a:focus {
  1047. background: #e3e9ef url(../images/admin/subsection.png) no-repeat 99% 40%, url(../images/theme/lower_section.png) 0 0 repeat-x;
  1048. }
  1049. /* Stops inheritance of indicator icon if there is no fourth level. */
  1050. .dropmenu li li.subsections li a {
  1051. background: none;
  1052. }
  1053. /* Highlighting of current section */
  1054. .dropmenu li li a.chosen {
  1055. font-weight: bold;
  1056. }
  1057. /* To allow absoluting teh toggle innit. */
  1058. div#admin_menu {
  1059. position: relative;
  1060. padding-right: 50px;
  1061. }
  1062. /* The dropdown menu toggle image */
  1063. #menu_toggle {
  1064. position: absolute;
  1065. z-index: 5;
  1066. right: 2px;
  1067. padding: 5px 9px 2px 9px;
  1068. background: #e3e9ef url(../images/theme/lower_section.png) 0 100% repeat-x;
  1069. border: 1px solid #bbb;
  1070. border-bottom: 1px solid #aaa;
  1071. border-radius: 4px;
  1072. }
  1073. .adm_section h4 img {
  1074. float: right;
  1075. margin: 0 1px;
  1076. padding: 3px 3px 0 3px;
  1077. border: 1px solid #ccc;
  1078. border-radius: 4px;
  1079. background: #e3e9ef;
  1080. }
  1081. #menu_toggle:hover, .adm_section h4 img:hover {
  1082. background: #fff url(../images/theme/lower_section.png) 0 30% repeat-x;
  1083. }
  1084. /* Styles for sidebar menus.
  1085. ------------------------------------------------------- */
  1086. #main_container {
  1087. position: relative;
  1088. }
  1089. #main_admsection {
  1090. position: relative;
  1091. left: 0;
  1092. right: 0;
  1093. overflow: auto;
  1094. }
  1095. #left_admsection {
  1096. width: 160px;
  1097. float: left;
  1098. padding-right: 10px;
  1099. }
  1100. .adm_section h4.catbg {
  1101. padding: 6px 8px 4px 8px;
  1102. font-size: 1em;
  1103. }
  1104. .left_admmenu {
  1105. margin: -1px 0 9px 0;
  1106. padding: 8px 6px;
  1107. border: 1px solid #ccc;
  1108. border-top: none;
  1109. border-radius: 0 0 5px 5px;
  1110. line-height: 1.8em;
  1111. }
  1112. li#collapse_button {
  1113. float: right;
  1114. position: absolute;
  1115. top: 0;
  1116. right: 0;
  1117. }
  1118. /* Styles for the standard button lists.
  1119. ------------------------------------------------------- */
  1120. .buttonlist ul {
  1121. z-index: 100;
  1122. padding: 5px;
  1123. margin: 0 0 5px 0;
  1124. }
  1125. .buttonlist ul li {
  1126. margin: 0 0 0 6px;
  1127. padding: 0;
  1128. float: left;
  1129. }
  1130. .buttonlist ul li a {
  1131. display: block;
  1132. text-transform: uppercase;
  1133. cursor: pointer;
  1134. background: #fff url(../images/theme/lower_section.png) 0 45% repeat-x;
  1135. border: 1px solid #ccc;
  1136. border-right: 1px solid #bbb;
  1137. border-bottom: 1px solid #aaa;
  1138. border-radius: 1px;
  1139. box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  1140. padding: 0 1px;
  1141. margin: 0;
  1142. overflow: visible;
  1143. /* font-weight: bold;*/
  1144. color: #444;
  1145. font-size: 0.8em;
  1146. /* @todo*/
  1147. -moz-transition: all 0.05s linear 0.05s;
  1148. }
  1149. /* Keep a consistent size when wrapped in pagesection. */
  1150. .pagesection .buttonlist ul li a {
  1151. font-size: 0.889em;
  1152. /* @todo*/
  1153. -moz-transition: all 0.05s linear 0.05s;
  1154. }
  1155. .buttonlist ul li a:hover {
  1156. background: #fff url(../images/theme/upper_section.png) 0 45% repeat-x;
  1157. color: #af6700;
  1158. text-decoration: none;
  1159. border: 1px solid #ccc;
  1160. border-left: 1px solid #bbb;
  1161. border-top: 1px solid #aaa;
  1162. box-shadow: -1px -1px 2px rgba(0,0,0,0.07), -1px -2px 4px rgba(255,255,255,0.33) inset;
  1163. /* @todo*/
  1164. -moz-transition: all 0.05s linear 0.05s;
  1165. }
  1166. .buttonlist ul li a span {
  1167. display: block;
  1168. height: 2.2em;
  1169. line-height: 2.2em;
  1170. padding: 0 8px;
  1171. }
  1172. /* the active one */
  1173. .buttonlist ul li a.active {
  1174. background: #557ea0;
  1175. color: #fff;
  1176. font-weight: bold;
  1177. border-radius: 3px;
  1178. border: 1px solid #558080;
  1179. border-left: 1px solid #bbb;
  1180. border-top: 1px solid #354f64;
  1181. 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;
  1182. /* @todo*/
  1183. -moz-transition: all 0.05s linear 0.05s;
  1184. }
  1185. .buttonlist ul li a.active:hover {
  1186. color: #ffc187;
  1187. /* @todo*/
  1188. -moz-transition: all 0.05s linear 0.05s;
  1189. }
  1190. .align_top ul li a, .align_bottom ul li a {
  1191. margin: 0 12px 0 0;
  1192. }
  1193. #adm_submenus {
  1194. margin: 0;
  1195. padding: 10px 15px 0 15px;
  1196. overflow: hidden;
  1197. }
  1198. /* Styles for the general looks of the theme.
  1199. ------------------------------------------------------- */
  1200. /* Do all these here to save repetition. */
  1201. #header, #header .frame, #top_section, #upper_wrap, #upper_section, #upper_section .user,
  1202. #upper_section .news, .navigate_section, #content_section, #main_content_section,
  1203. #lower_section, #lower_section .frame, #footer_section, #footer_section div.frame {
  1204. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1205. }
  1206. /* These divisions wrap the forum sections when a forum width is set. */
  1207. #wrapper, .frame {
  1208. margin: 0 auto;
  1209. min-width: 764px;
  1210. }
  1211. /* Box-shadow only on this one. */
  1212. #wrapper {
  1213. clear: both;
  1214. border-radius: 8px;
  1215. box-shadow: 0 2px 3px rgba(0,0,0,0.14);
  1216. }
  1217. /* The framing graphics */
  1218. /* The top bar. */
  1219. #top_section {
  1220. overflow: hidden;
  1221. margin: 0;
  1222. padding: 0 4px;
  1223. background: #e2e9f3 url(../images/theme/lower_section.png) 0 0 repeat-x;
  1224. border-bottom: 1px solid #bbb;
  1225. box-shadow: 0 1px 4px rgba(0,0,0,0.16);
  1226. }
  1227. #top_section .frame{
  1228. clear: both;
  1229. }
  1230. #top_section ul {
  1231. margin: 0;
  1232. padding: 9px 9px 7px 9px;
  1233. line-height: 1.3em;
  1234. }
  1235. #top_section ul li {
  1236. margin-bottom: 2px;
  1237. display: inline;
  1238. font-size: 0.9em;
  1239. }
  1240. #search_form {
  1241. padding: 6px 0 0 0;
  1242. text-align: right;
  1243. min-width: 30em;
  1244. }
  1245. #search_form .input_text, #search_form select, #search_form .button_submit {
  1246. padding: 2px;
  1247. margin: 0 0 0 0;
  1248. background: #fff;
  1249. border: 1px solid #ccc;
  1250. border-left: 1px solid #bbb;
  1251. border-top: 1px solid #aaa;
  1252. box-shadow: -1px -1px 2px rgba(0,0,0,0.07), -3px -3px 6px rgba(255,255,255,0.8) inset;
  1253. }
  1254. #search_form select {
  1255. padding: 1px;
  1256. }
  1257. #search_form .button_submit {
  1258. padding: 1px 2px;
  1259. margin: 2px 5px;
  1260. background: #fff url(../images/theme/lower_section.png) 0 45% repeat-x;
  1261. color: #333;
  1262. }
  1263. /* @todo In practice it may be better to set a different value for Firefox and Opera only, */
  1264. /* just to save a little bit of code. Will wait for Opera detection on body tag. */
  1265. #ie #search_form .button_submit, #chrome #search_form .button_submit {
  1266. padding: 3px 5px;
  1267. }
  1268. #search_form .button_submit:hover {
  1269. background: #fff url(../images/theme/upper_section.png) 0 45% repeat-x;
  1270. color: #a85400;
  1271. text-decoration: none;
  1272. }
  1273. /* The logo and slogan. */
  1274. #header {
  1275. padding: 2px 2px 12px 2px;
  1276. float: left;
  1277. width: 100%;
  1278. }
  1279. /* The main title. */
  1280. h1.forumtitle {
  1281. font-size: 1.8em;
  1282. font-family: tahoma;
  1283. margin: 0;
  1284. padding: 22px 12px 6px 12px;
  1285. float: left;
  1286. font-weight: normal;
  1287. }
  1288. h1.forumtitle a {
  1289. color: #a85400;
  1290. text-shadow: -1px -1px 0 rgba(0,0,0,0.5), 1px 1px 0 #fff;
  1291. }
  1292. /* Float these items to the right */
  1293. #siteslogan, img#smflogo {
  1294. margin: 0;
  1295. padding: 0;
  1296. float: right;
  1297. line-height: 50px;
  1298. font-size: 1.8em;
  1299. }
  1300. /* Tweak the SMF logo */
  1301. img#smflogo {
  1302. margin: 16px 0 0 0;
  1303. }
  1304. /*
  1305. /* The user info, news, etc.*/
  1306. #upper_section {
  1307. padding: 2px 2px 0 2px;
  1308. margin: 0;
  1309. border: 1px solid #bbb;
  1310. border-bottom: none;
  1311. border-radius: 8px 8px 0 0;
  1312. background: #fff;
  1313. float: left;
  1314. width: 100%;
  1315. }
  1316. #inner_section {
  1317. padding: 12px 10px 2px 10px;
  1318. border-radius: 6px 6px 0 0;
  1319. background: #fff url(../images/theme/upper_section.png) 0 -43px repeat-x;
  1320. float: left;
  1321. width: 100%;
  1322. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1323. }
  1324. #inner_wrap {
  1325. float: left;
  1326. width: 100%;
  1327. }
  1328. /* The upper_section, float the two each way */
  1329. .user {
  1330. width: 50%;
  1331. float: left;
  1332. overflow: auto;
  1333. padding: 0 4px;
  1334. font-size: 0.9em;
  1335. }
  1336. ul li.greeting {
  1337. font-weight: bold;
  1338. }
  1339. /* The login form. */
  1340. #guest_form {
  1341. overflow: hidden;
  1342. font-size: 0.9em;
  1343. }
  1344. /* User information. */
  1345. #inner_wrap a.avatar {
  1346. float: left;
  1347. margin: 0 -10px 0 -20px;
  1348. padding: 0;
  1349. text-align: center;
  1350. }
  1351. /* No more huge avatars up top. YAY! */
  1352. #inner_wrap a.avatar img {
  1353. height: 45%;
  1354. width: 45%;
  1355. }
  1356. /* News section. */
  1357. #inner_wrap .news {
  1358. width: 50%;
  1359. max-width: 27em;
  1360. float: right;
  1361. overflow: auto;
  1362. padding: 0 0 6px 0;
  1363. font-size: 0.9em;
  1364. }
  1365. #inner_wrap .news h2, #inner_wrap .news p {
  1366. display: inline;
  1367. padding: 0 0 0 4px;
  1368. }
  1369. /* The upshrink image needs some tweaking */
  1370. img#upshrink {
  1371. float: right;
  1372. padding: 4px;
  1373. border: 1px solid #ccc;
  1374. border-radius: 4px;
  1375. }
  1376. /* The navigation list (i.e. linktree) */
  1377. .navigate_section {
  1378. padding: 3px 0;
  1379. margin: 0 0 6px 0;
  1380. float: left;
  1381. width: 100%;
  1382. }
  1383. #main_content_section .navigate_section {
  1384. margin: 4px 0 0 0;
  1385. padding: 0 0 0 0;
  1386. }
  1387. .navigate_section ul {
  1388. margin: 4px 0 0 0;
  1389. padding: 4px 8px 4px 4px;
  1390. font-size: 0.9em;
  1391. overflow: hidden;
  1392. background: #f0f4f7 url(../images/theme/upper_section.png) 0 -55px repeat-x;
  1393. border: 1px solid #ccc;
  1394. border-radius: 2px;
  1395. box-shadow: 0 -2px 2px rgba(0,0,0,0.08);
  1396. -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-sizing: border-box;
  1397. }
  1398. .navigate_section ul li {
  1399. float: left;
  1400. padding: 0 0 0 4px;
  1401. line-height: 1.8em;
  1402. color: #444;
  1403. text-shadow: 1px 1px 0 #fff;
  1404. }
  1405. .navigate_section ul li a {
  1406. display: inline-block;
  1407. position: relative;
  1408. }
  1409. .navigate_section ul li .dividers {
  1410. color: #3f6b8c;
  1411. font: 83.33%/150% Arial,sans-serif;
  1412. 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);
  1413. }
  1414. /* "Unread posts" and "New replies" links, accessible with header collapsed. */
  1415. .navigate_section .unread_links {
  1416. float: right;
  1417. padding: 0 0 0 14px;
  1418. }
  1419. /* The content section */
  1420. #content_section {
  1421. background: #fff;
  1422. margin: 0 auto;
  1423. padding: 0;
  1424. border: 1px solid #b8b8b8;
  1425. border-top: none;
  1426. border-radius: 0 0 8px 8px;
  1427. clear: both;
  1428. }
  1429. #main_content_section {
  1430. padding: 1px 12px 16px 13px;
  1431. min-height: 300px;
  1432. overflow: auto;
  1433. }
  1434. /* Footer is now full-width by default. Frame inside it will match theme wrapper width automatically. */
  1435. /* The footer wih copyright links etc. */
  1436. #footer_section {
  1437. margin: 4em 0 0 0;
  1438. padding: 0;
  1439. overflow: auto;
  1440. background: #3e5a78;
  1441. border-top: 3px solid #bbb;
  1442. }
  1443. /* min-width should be equal to #wrapper min-width. */
  1444. #footer_section div.frame {
  1445. padding: 10px 5px;
  1446. overflow: auto;
  1447. }
  1448. #footer_section ul li, #footer_section p,
  1449. #footer_section ul li a, #footer_section p a {
  1450. font-size: 0.9em;
  1451. color: #fff;
  1452. }
  1453. #footer_section ul li {
  1454. display: inline;
  1455. padding-right: 5px;
  1456. }
  1457. #footer_section ul li.copyright {
  1458. display: block;
  1459. }
  1460. /* Globally accessible "go up" link. */
  1461. #bot {
  1462. display: block;
  1463. margin: 0;
  1464. width: 25px;
  1465. float: right;
  1466. }
  1467. #bot img{
  1468. padding: 4px;
  1469. }
  1470. /* Styles for the board index and child boards tables.
  1471. ------------------------------------------------------- */
  1472. .table_list {
  1473. width: 100%;
  1474. border-collapse: collapse;
  1475. }
  1476. .table_list .header td {
  1477. padding: 0;
  1478. }
  1479. .table_list .content td {
  1480. padding: 7px;
  1481. }
  1482. .table_list .header .cat_bar {
  1483. margin: 0 0 0 -1px;
  1484. }
  1485. .table_list .icon, .table_list .info, .table_list .stats, .table_list.lastpost {
  1486. border-top: 2px solid #fff;
  1487. height: 4.5em;
  1488. }
  1489. .table_list td.icon {
  1490. margin: 0 0 0 1px;
  1491. padding: 8px 0 0 0;
  1492. width: 5%;
  1493. min-width: 50px;
  1494. /*Top aligned is much nicer for the icon. */
  1495. vertical-align: top;
  1496. border-left: 1px solid #ddd;
  1497. text-align: center;
  1498. }
  1499. .table_list td.info {
  1500. padding: 0 7px 0 0;
  1501. }
  1502. /* The board title! */
  1503. .table_list .info .subject {
  1504. font-weight: 600;
  1505. font-size: 1.1em;
  1506. color: #a85400;
  1507. }
  1508. .table_list .info p {
  1509. margin: 0;
  1510. padding: 0;
  1511. font-size: 1em;
  1512. }
  1513. .table_list .info p.moderators {
  1514. font-size: 0.9em;
  1515. }
  1516. .table_list .stats {
  1517. font-size: 0.9em;
  1518. line-height: 1.55em;
  1519. width: 12%;
  1520. }
  1521. .table_list .stats p {
  1522. border-left: 1px solid #ccc;
  1523. border-right: 1px solid #ccc;
  1524. min-height: 3em;
  1525. margin: 3px 0 0 0;
  1526. padding: 0px 7px 0 7px;
  1527. text-align: center;
  1528. }
  1529. .table_list .lastpost {
  1530. font-size: 0.9em;
  1531. line-height: 1.55em;
  1532. width: 24%;
  1533. min-width: 27em;
  1534. border-right: 1px solid #ddd;
  1535. }
  1536. .table_list .lastpost p {
  1537. margin: 3px 0 0 0;
  1538. padding: 0 0 0 0;
  1539. }
  1540. .table_list td.children {
  1541. color: #555;
  1542. font-size: 0.9em;
  1543. padding: 0 0 0 0;
  1544. border-top: 1px solid #ddd;
  1545. border-right: 1px solid #ddd;
  1546. background: #fff;
  1547. }
  1548. .table_list .children p {
  1549. padding: 4px 0 0 0;
  1550. }
  1551. .table_list .icon, .table_list .info, .table_list .stats, .table_list .lastpost {
  1552. background: #fff url(../images/theme/upper_section.png) 0 -57px repeat-x;
  1553. border-top: double #ddd;
  1554. }
  1555. /* Hiding unwanted border repeats. */
  1556. .table_list .content tr:first-child .icon, .table_list .content tr:first-child .info,
  1557. .table_list .content tr:first-child .stats, .table_list .content tr:first-child .lastpost {
  1558. border-top: none;
  1559. }
  1560. .table_list .divider {
  1561. border: none;
  1562. border-top: 1px solid #ddd;
  1563. height: 18px;
  1564. }
  1565. /* the posting icons */
  1566. #posting_icons {
  1567. padding: 0 12px 6px 12px;
  1568. margin: 0 0 12px 0;
  1569. line-height: 12px;
  1570. float: left;
  1571. }
  1572. #posting_icons li {
  1573. font-size: 0.9em;
  1574. }
  1575. #posting_icons img {
  1576. vertical-align: middle;
  1577. margin: 0 0 0 12px;
  1578. }
  1579. #postbuttons_upper ul li a span {
  1580. line-height: 19px;
  1581. padding: 0 0 0 6px;
  1582. }
  1583. .mark_read {
  1584. margin: -5px 0 0 0;
  1585. padding: 0 6px;
  1586. float: right;
  1587. }
  1588. .mark_read .buttonlist ul {
  1589. margin: 0 0 0 0;
  1590. padding: 0 0 0 0;
  1591. }
  1592. /* the newsfader */
  1593. #newsfader {
  1594. margin: 0;
  1595. }
  1596. #smfFadeScroller {
  1597. text-align: center;
  1598. padding: 12px 25px;
  1599. overflow: auto;
  1600. color: #444444; /* shouldn't be shorthand style due to a JS bug in IE! */
  1601. }
  1602. /* Styles for the info center on the board index.
  1603. ---------------------------------------------------- */
  1604. #info_center {
  1605. clear: both;
  1606. margin: 0;
  1607. }
  1608. #upshrinkHeaderIC {
  1609. margin-top: 4px;
  1610. }
  1611. #ic_recentposts {
  1612. line-height: 1.6em;
  1613. width: 98%;
  1614. margin: -2px 0 0 23px;
  1615. font-size: 0.9em;
  1616. }
  1617. #ic_recentposts td {
  1618. border-top: 1px solid #eaeaea;
  1619. padding: 0 4px;
  1620. vertical-align: top;
  1621. }
  1622. #ic_recentposts tr:first-child td {
  1623. border-top: none;
  1624. }
  1625. #ic_recentposts .recentpost strong {
  1626. width: 40%;
  1627. }
  1628. #ic_recentposts .recentposter {
  1629. width: 15%;
  1630. }
  1631. #ic_recentposts .recentboard {
  1632. width: 20%;
  1633. }
  1634. #ic_recentposts .recenttime {
  1635. width: 25%;
  1636. }
  1637. #ic_recentposts .recenttime strong {
  1638. color: #555;
  1639. }
  1640. #upshrinkHeaderIC p.inline, #upshrinkHeaderIC p.last {
  1641. border: none;
  1642. margin: 0 0 0 0;
  1643. padding: 2px 29px;
  1644. line-height: 1.6em;
  1645. font-size: 0.9em;
  1646. }
  1647. #upshrinkHeaderIC p.inline span {
  1648. margin: 0;
  1649. padding: 4px 0 0 0;
  1650. }
  1651. #upshrinkHeaderIC span.membergroups {
  1652. display: block;
  1653. }
  1654. #upshrinkHeaderIC p.last {
  1655. border-top: double #ddd;
  1656. padding-bottom: 0;
  1657. }
  1658. /* the small stats */
  1659. #index_common_stats {
  1660. margin: -4px 8px 6px 8px;
  1661. padding: 4px 0 0 0;
  1662. font-size: 0.9em;
  1663. border-top: 1px solid #ccc;
  1664. }
  1665. img.new_posts {
  1666. padding: 0 1px;
  1667. }
  1668. .fix_rtl_names {
  1669. display:inline-block;
  1670. }
  1671. /* Styles for the message (topic) index.
  1672. ---------------------------------------------------- */
  1673. div.table_frame .table_list {
  1674. border-collapse: collapse;
  1675. margin: 2px 0;
  1676. }
  1677. #messageindex {
  1678. clear: both;
  1679. }
  1680. /* the page navigation area */
  1681. .childboards {
  1682. margin-bottom: 2px;
  1683. }
  1684. #childboards h3 {
  1685. padding-bottom: 0;
  1686. }
  1687. #childboards .table_list thead {
  1688. display: none;
  1689. }
  1690. #childboards .table_list {
  1691. margin-bottom: 12px;
  1692. }
  1693. .lastpost img {
  1694. float: right;
  1695. padding: 4px;
  1696. }
  1697. .titlebg td.qaction_cell {
  1698. font-size: 0.909em;
  1699. }
  1700. select.qaction, input.qaction {
  1701. padding: 0;
  1702. }
  1703. .qaction_cell .button_submit {
  1704. margin: 2px 4px 0 4px;
  1705. }
  1706. #topic_icons {
  1707. margin-top: 6px;
  1708. float: left;
  1709. width: 100%;
  1710. }
  1711. #topic_icons .description {
  1712. border: 1px solid #ccc;
  1713. }
  1714. #topic_icons p.floatleft {
  1715. padding: 0 12px 4px 0;
  1716. }
  1717. #message_index_jump_to_select {
  1718. font-size: 1em;
  1719. margin: 0 -12px 0 0;
  1720. padding: 2px;
  1721. }
  1722. #message_index_jump_to .button_submit {
  1723. padding: 4px 6px 2px 6px;
  1724. }
  1725. /* Styles for the display template (topic view).
  1726. ---------------------------------------------------- */
  1727. /* Events */
  1728. .linked_events {
  1729. padding: 12px 0;
  1730. }
  1731. .edit_event {
  1732. margin: 0 10px;
  1733. vertical-align: top;
  1734. }
  1735. /* Poll question */
  1736. #poll {
  1737. overflow: hidden;
  1738. }
  1739. #poll .content {
  1740. padding: 0 12px;
  1741. }
  1742. h4#pollquestion {
  1743. padding: 0 0 6px 25px;
  1744. }
  1745. /* Poll vote options */
  1746. #poll_options ul.options {
  1747. border-top: 1px solid #9999aa;
  1748. padding: 12px 30px 0 25px;
  1749. margin: 0 0 12px 0;
  1750. }
  1751. #poll_options div.submitbutton {
  1752. border-bottom: 1px solid #9999aa;
  1753. clear: both;
  1754. padding: 0 0 12px 25px;
  1755. margin: 0 0 12px 0;
  1756. }
  1757. /* Poll results */
  1758. #poll_options dl.options {
  1759. border: solid #9999aa;
  1760. border-width: 1px 0;
  1761. padding: 12px 0 12px 25px;
  1762. margin: 0 0 12px 0;
  1763. line-height: 1.4em;
  1764. }
  1765. #poll_options dl.options dt {
  1766. padding: 4px 0;
  1767. width: 30%;
  1768. max-width: 30em;
  1769. float: left;
  1770. margin: 0;
  1771. clear: left;
  1772. }
  1773. #poll_options dl.options .voted {
  1774. font-weight: bold;
  1775. }
  1776. #poll_options dl.options dd {
  1777. margin: 0 0 0 15px;
  1778. padding: 1px 0 0 0;
  1779. width: 60%;
  1780. max-width: 45em;
  1781. float: left;
  1782. margin: 0 0 4px 0;
  1783. padding: 0 4px 0 0;
  1784. line-height: 1.4em;
  1785. min-height: 1.4em;
  1786. background: #fff;
  1787. border: 1px solid #aaa;
  1788. border-radius: 2px;
  1789. position: relative;
  1790. }
  1791. /* Absolute positioning stops these breaking the bars on narrow screens. */
  1792. #poll_options dl.options .percentage {
  1793. display: block;
  1794. float: right;
  1795. margin: 0 0 0 0;
  1796. padding: 0 2px;
  1797. position: absolute;
  1798. right: 0;
  1799. top: 0;
  1800. z-index: 2;
  1801. background: #fff;
  1802. white-space: pre;
  1803. }
  1804. /* Poll notices */
  1805. #poll_options p {
  1806. margin: 0 18px 2px 18px;
  1807. padding: 0 6px 6px 6px;
  1808. }
  1809. div#pollmoderation {
  1810. margin: 0;
  1811. padding: 0;
  1812. overflow: auto;
  1813. }
  1814. #poll_options .submitbutton {
  1815. float: right;
  1816. width: 100%;
  1817. }
  1818. /* On to the posts */
  1819. #forumposts {
  1820. clear: both;
  1821. margin: 8px 0 0 0;
  1822. }
  1823. #forumposts .cat_bar {
  1824. margin: 0 0 -4px 0;
  1825. }
  1826. /* Topic information */
  1827. #forumposts .catbg img {
  1828. margin: 0 4px -2px 0;
  1829. }
  1830. #forumposts .catbg span {
  1831. white-space: pre;
  1832. /* Specific sizing for clarity without ClearType. */
  1833. font-size: 0.818em;
  1834. font-weight: normal;
  1835. padding-top: 2px;
  1836. }
  1837. p#whoisviewing {
  1838. margin: 0;
  1839. padding: 6px 6px 0 6px;
  1840. }
  1841. /* poster and postarea + moderation area underneath */
  1842. /* Need to sort the overflow on the post backgrounds. */
  1843. #forumposts .windowbg, #forumposts .windowbg2, #forumposts .approvebg, #forumposts .approvebg2, #personal_messages div.windowbg, #personal_messages div.windowbg2 {
  1844. overflow: visible;
  1845. float: left;
  1846. width: 100%;
  1847. }
  1848. .post_wrapper {
  1849. float: left;
  1850. width: 100%;
  1851. }
  1852. /* poster details and list of items */
  1853. .poster {
  1854. float: left;
  1855. /* Don't set this in em.It will eat too much space if people nead to set large text sizes. */
  1856. /* Better to just break the few words here, and leave more space for actual topic content. */
  1857. width: 160px;
  1858. word-wrap: break-word;
  1859. /*border: 1px solid #ccc;*/
  1860. border-radius: 5px;
  1861. }
  1862. .poster h4 {
  1863. font-size: 1.2em;
  1864. }
  1865. .poster h4, .poster h4 a, .poster h4 a:hover, .poster h4 li:hover a, .poster li.sfhover a {
  1866. margin: 0 0 0 0;
  1867. padding: 0 0 0 0;
  1868. color: #c06002;
  1869. display: block;
  1870. }
  1871. /* Nifty new flyout menu for the poster info. */
  1872. /* @todo Can probably clean up the CSS here a bit. */
  1873. /* Check inheritance with font size in the dropdown. */
  1874. .poster .dropmenu {
  1875. padding: 0 0 0 0;
  1876. margin: -8px 0 0 0;
  1877. float: none;
  1878. }
  1879. .poster .dropmenu>li, .poster .dropmenu>li:hover, .poster .dropmenu>li.sfhover
  1880. .poster .dropmenu>li h4, .poster .dropmenu>li:hover h4, .poster .dropmenu>li.sfhover h4,
  1881. .poster .dropmenu>li h4 a,.poster .dropmenu>li:hover h4 a, .poster .dropmenu>li.sfhover h4 a {
  1882. padding: 0 0 0 0;
  1883. margin: 0 0 0 0;
  1884. float: none;
  1885. border: none;
  1886. background: none;
  1887. line-height: 1.5em;
  1888. text-align: center;
  1889. }
  1890. .poster .dropmenu li:hover a, .poster .dropmenu li.sfhover a, .poster .dropmenu li a:hover,
  1891. .poster .dropmenu li:hover a:hover, .poster .dropmenu li.sfhover a:hover, .poster .dropmenu li a {
  1892. background: none;
  1893. border: none;
  1894. }
  1895. .poster .dropmenu>li>ul {
  1896. top: 3em;
  1897. float: none;
  1898. }
  1899. .poster .dropmenu>li>ul>li {
  1900. float: none;
  1901. text-align: left;
  1902. }
  1903. .poster .dropmenu>li.sfhover>ul, .poster .dropmenu>li:hover>ul {
  1904. left: 0;
  1905. width: 15em;
  1906. padding: 6px 2px 4px 2px;
  1907. }
  1908. .poster .dropmenu>li>ul>li, .poster .dropmenu>li>ul>li:hover {
  1909. background: none;
  1910. border: none;
  1911. }
  1912. .poster .dropmenu ul ol {
  1913. padding: 0 0 0 0;
  1914. margin: 6px 0 0 0;
  1915. float: left;
  1916. width: 100%;
  1917. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1918. }
  1919. .poster .dropmenu li ul li, .poster .dropmenu li ul li:hover {
  1920. background: none;
  1921. border: none;
  1922. }
  1923. .poster .dropmenu li ul li.im_icons, .poster .dropmenu ul ol li {
  1924. padding: 3px;
  1925. }
  1926. .poster .dropmenu ul ol li {
  1927. display: table-cell;
  1928. }
  1929. .poster .dropmenu li.postgroup, .poster .dropmenu li.postcount, .poster .dropmenu li.karma,
  1930. .poster .dropmenu li.karma_allow, .poster .dropmenu li.gender, .poster .dropmenu li.blurb {
  1931. padding: 0 10px 0 10px;
  1932. }
  1933. .poster .dropmenu li ul li.report_link, .poster .dropmenu li ul li.issue_warning, .poster .dropmenu li ul li.poster_ip {
  1934. margin: 0 0 0 0;
  1935. padding: 0 0 0 0;
  1936. float: left;
  1937. width: 100%;
  1938. font-size: 1.1em;
  1939. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1940. }
  1941. .poster .dropmenu li ul li hr {
  1942. margin: 4px 3px;
  1943. }
  1944. .poster .dropmenu li ul li.poster_ip a {
  1945. display: table-cell;
  1946. }
  1947. /* The visible stuff below the avatar. */
  1948. .poster>ul>li.icons, .poster li.membergroup, .poster li.title, .poster li.poster_online, .poster li.warning,
  1949. .poster>ul>li.icons:hover, .poster li.membergroup:hover, .poster li.title:hover, .poster li.poster_online:hover, .poster li.warning:hover {
  1950. font-size: 0.9em;
  1951. line-height: 1.4em;
  1952. padding: 0;
  1953. margin: 3px 0 0 0;
  1954. }
  1955. .poster li.membergroup {
  1956. font-weight: bold;
  1957. }
  1958. .poster li.poster_online, .poster li.poster_online:hover {
  1959. background: #fff url(../images/theme/lower_section.png) 0 40% repeat-x;
  1960. border: 1px solid #ccc;
  1961. border-right: 1px solid #bbb;
  1962. border-bottom: 1px solid #aaa;
  1963. box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  1964. border-radius: 2px;
  1965. padding: 1px 1px 1px 1px;
  1966. color: #222;
  1967. margin: 3px 19px;
  1968. }
  1969. .poster li.poster_online a, .poster li.poster_online:hover a {
  1970. color: #333;
  1971. }
  1972. .poster li.poster_online:hover {
  1973. background: #fff url(../images/theme/upper_section.png) 0 -30px repeat-x;
  1974. box-shadow: 1px 1px 1px rgba(0,0,0,0.07) inset;
  1975. border: 1px solid #ccc;
  1976. border-left: 1px solid #bbb;
  1977. border-top: 1px solid #aaa;
  1978. }
  1979. .poster li.warning a img {
  1980. vertical-align: bottom;
  1981. padding: 0 2px;
  1982. }
  1983. .poster img {
  1984. vertical-align: middle;
  1985. }
  1986. /* End nifty new flyout. */
  1987. .postarea, .moderatorbar {
  1988. margin: 0 0 0 175px;
  1989. }
  1990. .postarea div.flow_hidden {
  1991. width: 100%;
  1992. }
  1993. .moderatorbar {
  1994. clear: right;
  1995. }
  1996. .messageicon {
  1997. float: left;
  1998. margin: -2px 6px -6px 0;
  1999. }
  2000. .messageicon img {
  2001. padding: 0 3px 0 3px;
  2002. }
  2003. .keyinfo {
  2004. padding: 0;
  2005. margin: 0;
  2006. }
  2007. .keyinfo h5 {
  2008. padding: 2px 0 5px 0;
  2009. margin: 0 0 0 0;
  2010. line-height: 1.5em;
  2011. font-size: 0.9em;
  2012. }
  2013. .keyinfo h5 a, .keyinfo h5 a strong {
  2014. color: #ad6825;
  2015. }
  2016. .keyinfo h5 a.floatright {
  2017. padding: 0 12px 0 0;
  2018. }
  2019. .keyinfo h5 .modified {
  2020. float: right;
  2021. color: #333;
  2022. font-weight: normal;
  2023. padding: 2px 4px 0 4px;
  2024. }
  2025. .post {
  2026. margin-top: 0;
  2027. clear: right;
  2028. }
  2029. .inner {
  2030. padding: 6px 12px 2px 0;
  2031. margin: 0 12px 0 0;
  2032. border-top: 1px solid #ccc;
  2033. min-height: 80px;
  2034. }
  2035. img.smiley {
  2036. vertical-align: bottom;
  2037. }
  2038. .attachments {
  2039. padding: 12px 0 0 0;
  2040. }
  2041. .attachments .floatleft {
  2042. padding: 0 6px 8px 6px;
  2043. }
  2044. .attachments_top {
  2045. margin: 0 auto;
  2046. text-align: center;
  2047. }
  2048. .attachments hr {
  2049. clear: both;
  2050. margin: 12px 0;
  2051. }
  2052. /* The quick buttons */
  2053. div.quickbuttons_wrap {
  2054. padding: 2px 0;
  2055. width: 100%;
  2056. float: left;
  2057. }
  2058. ul.quickbuttons {
  2059. margin: 11px 0 0 0;
  2060. padding: 0 0 4px 0;
  2061. clear: right;
  2062. float: right;
  2063. text-align: right;
  2064. }
  2065. ul.quickbuttons li {
  2066. float: left;
  2067. display: inline;
  2068. margin: 0 0px 0 0;
  2069. font-size: 0.9em;
  2070. }
  2071. ul.quickbuttons li a {
  2072. padding: 0 4px 0 20px;
  2073. display: block;
  2074. line-height: 1.9em;
  2075. float: left;
  2076. }
  2077. ul.quickbuttons li a.quote_button {
  2078. padding: 0 4px 0 16px;
  2079. }
  2080. ul.quickbuttons a:hover {
  2081. color: #a70;
  2082. }
  2083. ul.quickbuttons li a.quote_button {
  2084. background: url(../images/theme/quickbuttons.png) no-repeat -1px -1px;
  2085. }
  2086. ul.quickbuttons li a.remove_button {
  2087. background: url(../images/theme/quickbuttons.png) no-repeat 3px -27px;
  2088. }
  2089. ul.quickbuttons li a.modify_button {
  2090. background: url(../images/theme/quickbuttons.png) no-repeat 3px -57px;
  2091. }
  2092. ul.quickbuttons li a.approve_button {
  2093. background: url(../images/theme/quickbuttons.png) no-repeat 0 -90px;
  2094. }
  2095. ul.quickbuttons li a.restore_button {
  2096. background: url(../images/theme/quickbuttons.png) no-repeat 0 -120px;
  2097. }
  2098. ul.quickbuttons li a.split_button {
  2099. background: url(../images/theme/quickbuttons.png) no-repeat 5px -147px;
  2100. }
  2101. ul.quickbuttons li a.reply_button {
  2102. background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
  2103. }
  2104. ul.quickbuttons li a.reply_all_button {
  2105. background: url(../images/theme/quickbuttons.png) no-repeat 0 -180px;
  2106. }
  2107. ul.quickbuttons li a.notify_button {
  2108. background: url(../images/theme/quickbuttons.png) no-repeat 0 -210px;
  2109. }
  2110. ul.quickbuttons li a.unapprove_button {
  2111. background: url(../images/theme/quickbuttons.png) no-repeat 4px -237px;
  2112. }
  2113. ul.quickbuttons li.inline_mod_check {
  2114. padding: 1px 1px 1px 1px;
  2115. }
  2116. .quickbuttons li {
  2117. background: #fff url(../images/theme/lower_section.png) 0 45% repeat-x;
  2118. border: 1px solid #ccc;
  2119. border-right: 1px solid #bbb;
  2120. border-bottom: 1px solid #aaa;
  2121. border-radius: 1px;
  2122. box-shadow: 1px 1px 1px rgba(0,0,0,0.1);
  2123. padding: 0 1px 0 1px;
  2124. color: /*#492700*/ #222;
  2125. margin: 3px 19px;
  2126. overflow: visible;
  2127. /* @todo */
  2128. -moz-transition: all 0.1s linear 0.05s;
  2129. }
  2130. .quickbuttons li:first-child {
  2131. border-radius: 4px 1px 1px 4px;
  2132. padding-bottom: 0;
  2133. }
  2134. .quickbuttons li:hover {
  2135. background: #fff url(../images/theme/upper_section.png) 0 -30px repeat-x;
  2136. box-shadow: 1px 1px 1px rgba(0,0,0,0.07) inset;
  2137. border: 1px solid #ccc;
  2138. border-left: 1px solid #bbb;
  2139. border-top: 1px solid #aaa;
  2140. /* @todo */
  2141. -moz-transition: all 0.1s linear 0.05s;
  2142. }
  2143. .quickbuttons li.quick_edit, .quickbuttons li.post_options {
  2144. padding: 0 6px 0 22px;
  2145. line-height: 1.9em;
  2146. position: relative;
  2147. color: #222;
  2148. }
  2149. .quickbuttons li.quick_edit img {
  2150. padding: 2px 7em 2px 3px;
  2151. position: absolute;
  2152. left: 0;
  2153. top: 0;
  2154. }
  2155. .quickbuttons li.quick_edit {
  2156. display: none;
  2157. }
  2158. ul.quickbuttons li.inline_mod_check {
  2159. padding: 3px 0 0 3px;
  2160. background: none;
  2161. border: none;
  2162. box-shadow: none;
  2163. }
  2164. .quickbuttons li a, .quickbuttons li a:hover {
  2165. text-decoration: none;
  2166. color: #222;
  2167. }
  2168. .quickbuttons li.post_options {
  2169. padding: 0 4px 0 4px;
  2170. cursor: pointer;
  2171. border-radius: 1px 4px 4px 1px;
  2172. }
  2173. .quickbuttons li.post_options ul {
  2174. position: absolute;
  2175. top: 2.1em;
  2176. right: -1px;
  2177. z-index: -1;
  2178. min-width: 10em;
  2179. padding: 5px 0 7px 0;
  2180. font-weight: normal;
  2181. background: #fff url(../images/theme/bars.png) 0 -580px repeat-x;
  2182. border: solid 1px #999;
  2183. border-left: solid 1px #aaa;
  2184. border-top: solid 1px #bbb;
  2185. border-radius: 4px 2px 4px 0;
  2186. box-shadow: 2px 3px 3px rgba(0,0,0,0.2);
  2187. }
  2188. .quickbuttons li.post_options:hover ul {
  2189. z-index: 10;
  2190. }
  2191. .quickbuttons li.post_options ul li, .quickbuttons li.post_options:hover ul li{
  2192. display: block;
  2193. background: none;
  2194. border: none;
  2195. box-shadow: none;
  2196. min-width: 11em;
  2197. margin: 0;
  2198. line-height: 2.5em;
  2199. border-top: 1px solid rgba(0,0,0,0);
  2200. border-bottom: 1px solid rgba(0,0,0,0);
  2201. }
  2202. .quickbuttons li.post_options ul li:hover {
  2203. border-top: 1px solid #d4dee6;
  2204. border-bottom: 1px solid #cbdae6;
  2205. background: #e3e9ef url(../images/theme/lower_section.png) 0 0 repeat-x;
  2206. }
  2207. .quickbuttons li.post_options ul li a {
  2208. padding: 2px 6px 2px 26px;
  2209. }
  2210. /*-------------------------------------*/
  2211. /* The new little droppy off the "More.." button. */
  2212. /* This should probably be Superfished for production, but transitions were fun to play with in testing. */
  2213. /* @todo */
  2214. .quickbuttons li.post_options ul {
  2215. opacity: 0;
  2216. z-index: -1;
  2217. transition-property: opacity 0.4s linear 0.5s, z-index 0.2s linear 0.7s;
  2218. /* Firefox 4 */
  2219. -moz-transition: opacity 0.4s linear 0.5s, z-index 0.2s linear 0.7s;
  2220. /* Safari and Chrome */
  2221. -webkit-transition: left 1s linear 2s;
  2222. /* Opera */
  2223. -o-transition: left 1s linear 2s;
  2224. }
  2225. .quickbuttons li.post_options:hover ul
  2226. {
  2227. z-index: 1;
  2228. opacity: 1;
  2229. -moz-transition: opacity 0.4s ease-in-out 0.1s, z-index 0.05s linear 0.05s;
  2230. }
  2231. /*-------------------------------------*/
  2232. /* Separator of posts. More useful in the print stylesheet. */
  2233. #forumposts .post_separator {
  2234. display: none;
  2235. }
  2236. /* Basic stuff for the bottom of Display.template.php. */
  2237. #moderationbuttons {
  2238. float: left;
  2239. }
  2240. #moderationbuttons_strip {
  2241. float: left;
  2242. margin: 4px 0 4px -4px;
  2243. }
  2244. #moderationbuttons ul li {
  2245. padding: 0 6px 4px 0;
  2246. margin: 0;
  2247. }
  2248. /* The jump to box */
  2249. #display_jump_to {
  2250. padding: 11px 5px 5px 0;
  2251. margin: 0;
  2252. border: none;
  2253. float: right;
  2254. font-size: 1em;
  2255. }
  2256. #display_jump_to select {
  2257. margin: 0 -12px 0 0;
  2258. padding: 2px;
  2259. }
  2260. /* Styles for the quick reply area.
  2261. ----------------------------------------------------*/
  2262. #quickreplybox {
  2263. clear: both;
  2264. }
  2265. #quickReplyOptions .roundframe {
  2266. background: #f0f4f7;
  2267. margin: 8px 0 0 0;
  2268. padding: 8px 10% 12px 10%;
  2269. border: 1px solid #ccc;
  2270. border-radius: 7px;
  2271. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  2272. overflow: auto;
  2273. }
  2274. #quickReplyOptions form textarea {
  2275. height: 100px;
  2276. width: 635px;
  2277. max-width: 100%;
  2278. min-width: 100%;
  2279. }
  2280. /* Styles for edit post section
  2281. ---------------------------------------------------- */
  2282. form#postmodify .roundframe {
  2283. padding: 12px 12%;
  2284. }
  2285. #post_header, .postbox {
  2286. padding: 6px;
  2287. overflow: hidden;
  2288. }
  2289. #post_header dt, .postbox dt {
  2290. float: left;
  2291. padding: 0;
  2292. width: 15%;
  2293. margin: 6px 0 0 0;
  2294. font-weight: bold;
  2295. }
  2296. #post_header dd, .postbox dd {
  2297. float: left;
  2298. padding: 0;
  2299. width: 83%;
  2300. margin: 4px 0;
  2301. }
  2302. #post_header img {
  2303. vertical-align: middle;
  2304. }
  2305. ul.post_options {
  2306. margin: 0 0 0 12px;
  2307. padding: 0;
  2308. overflow: hidden;
  2309. }
  2310. ul.post_options li {
  2311. margin: 2px 0;
  2312. width: 49%;
  2313. float: left;
  2314. }
  2315. #postAdditionalOptionsHeader {
  2316. margin-top: 12px;
  2317. }
  2318. #postMoreOptions {
  2319. border-bottom: 1px solid #cacdd3;
  2320. padding: 6px;
  2321. }
  2322. #postAttachment, #postAttachment2 {
  2323. overflow: hidden;
  2324. margin: 6px 0;
  2325. padding: 0;
  2326. padding: 6px;
  2327. }
  2328. #postAttachment dd, #postAttachment2 dd {
  2329. margin: 4px 0 4px 12px;
  2330. }
  2331. #postAttachment dd {
  2332. width: 45%;
  2333. float: left;
  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. }