2
0

index.css 92 KB

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