index.css 85 KB

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