index.css 99 KB

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