index.css 92 KB

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