index.css 93 KB

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