index.css 94 KB

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