index.css 90 KB

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