index.css 91 KB

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