index.css 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050
  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 4px -237px;
  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. .quickbuttons li.quick_edit {
  2166. display: none;
  2167. }
  2168. ul.quickbuttons li.inline_mod_check {
  2169. padding: 3px 0 0 3px;
  2170. background: none;
  2171. border: none;
  2172. box-shadow: none;
  2173. }
  2174. .quickbuttons li a, .quickbuttons li a:hover {
  2175. text-decoration: none;
  2176. color: #222;
  2177. }
  2178. .quickbuttons li.post_options {
  2179. padding: 0 4px 0 4px;
  2180. cursor: pointer;
  2181. border-radius: 1px 4px 4px 1px;
  2182. }
  2183. .quickbuttons li.post_options ul {
  2184. position: absolute;
  2185. top: 2.1em;
  2186. right: -1px;
  2187. z-index: -1;
  2188. min-width: 10em;
  2189. padding: 5px 0 7px 0;
  2190. font-weight: normal;
  2191. background: #fff url(../images/theme/bars.png) 0 -580px repeat-x;
  2192. border: solid 1px #999;
  2193. border-left: solid 1px #aaa;
  2194. border-top: solid 1px #bbb;
  2195. border-radius: 4px 2px 4px 0;
  2196. box-shadow: 2px 3px 3px rgba(0,0,0,0.2);
  2197. }
  2198. .quickbuttons li.post_options:hover ul {
  2199. z-index: 10;
  2200. }
  2201. .quickbuttons li.post_options ul li, .quickbuttons li.post_options:hover ul li{
  2202. display: block;
  2203. background: none;
  2204. border: none;
  2205. box-shadow: none;
  2206. min-width: 11em;
  2207. margin: 0;
  2208. line-height: 2.5em;
  2209. border-top: 1px solid rgba(0,0,0,0);
  2210. border-bottom: 1px solid rgba(0,0,0,0);
  2211. }
  2212. .quickbuttons li.post_options ul li:hover {
  2213. border-top: 1px solid #d4dee6;
  2214. border-bottom: 1px solid #cbdae6;
  2215. background: #e3e9ef url(../images/theme/lower_section.png) 0 0 repeat-x;
  2216. }
  2217. .quickbuttons li.post_options ul li a {
  2218. padding: 2px 6px 2px 26px;
  2219. }
  2220. /*-------------------------------------*/
  2221. /* The new little droppy off the "More.." button. */
  2222. /* This should probably be Superfished for production, but transitions were fun to play with in testing. */
  2223. /* [WIP] */
  2224. .quickbuttons li.post_options ul {
  2225. opacity: 0;
  2226. z-index: -1;
  2227. transition-property: opacity 0.4s linear 0.5s, z-index 0.2s linear 0.7s;
  2228. /* Firefox 4 */
  2229. -moz-transition: opacity 0.4s linear 0.5s, z-index 0.2s linear 0.7s;
  2230. /* Safari and Chrome */
  2231. -webkit-transition: left 1s linear 2s;
  2232. /* Opera */
  2233. -o-transition: left 1s linear 2s;
  2234. }
  2235. .quickbuttons li.post_options:hover ul
  2236. {
  2237. z-index: 1;
  2238. opacity: 1;
  2239. -moz-transition: opacity 0.4s ease-in-out 0.1s, z-index 0.05s linear 0.05s;
  2240. }
  2241. /*-------------------------------------*/
  2242. /* Separator of posts. More useful in the print stylesheet. */
  2243. #forumposts .post_separator {
  2244. display: none;
  2245. }
  2246. /* Basic stuff for the bottom of Display.template.php. */
  2247. #moderationbuttons {
  2248. float: left;
  2249. }
  2250. #moderationbuttons_strip {
  2251. float: left;
  2252. margin: 4px 0 4px -4px;
  2253. }
  2254. #moderationbuttons ul li {
  2255. padding: 0 6px 4px 0;
  2256. margin: 0;
  2257. }
  2258. /* The jump to box */
  2259. #display_jump_to {
  2260. padding: 11px 5px 5px 0;
  2261. margin: 0;
  2262. border: none;
  2263. float: right;
  2264. font-size: 1em;
  2265. }
  2266. #display_jump_to select {
  2267. margin: 0 -12px 0 0;
  2268. padding: 2px;
  2269. }
  2270. /* Styles for the quick reply area.
  2271. ----------------------------------------------------*/
  2272. #quickreplybox {
  2273. clear: both;
  2274. }
  2275. #quickReplyOptions .roundframe {
  2276. background: #f0f4f7;
  2277. margin: 8px 0 0 0;
  2278. padding: 8px 10% 12px 10%;
  2279. border: 1px solid #ccc;
  2280. border-radius: 7px;
  2281. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  2282. overflow: auto;
  2283. }
  2284. #quickReplyOptions form textarea {
  2285. height: 100px;
  2286. width: 635px;
  2287. max-width: 100%;
  2288. min-width: 100%;
  2289. }
  2290. /* Styles for edit post section
  2291. ---------------------------------------------------- */
  2292. form#postmodify .roundframe {
  2293. padding: 12px 12%;
  2294. }
  2295. #post_header, .postbox {
  2296. padding: 6px;
  2297. overflow: hidden;
  2298. }
  2299. #post_header dt, .postbox dt {
  2300. float: left;
  2301. padding: 0;
  2302. width: 15%;
  2303. margin: 6px 0 0 0;
  2304. font-weight: bold;
  2305. }
  2306. #post_header dd, .postbox dd {
  2307. float: left;
  2308. padding: 0;
  2309. width: 83%;
  2310. margin: 4px 0;
  2311. }
  2312. #post_header img {
  2313. vertical-align: middle;
  2314. }
  2315. ul.post_options {
  2316. margin: 0 0 0 12px;
  2317. padding: 0;
  2318. overflow: hidden;
  2319. }
  2320. ul.post_options li {
  2321. margin: 2px 0;
  2322. width: 49%;
  2323. float: left;
  2324. }
  2325. #postAdditionalOptionsHeader {
  2326. margin-top: 12px;
  2327. }
  2328. #postMoreOptions {
  2329. border-bottom: 1px solid #cacdd3;
  2330. padding: 6px;
  2331. }
  2332. #postAttachment, #postAttachment2 {
  2333. overflow: hidden;
  2334. margin: 6px 0;
  2335. padding: 0;
  2336. padding: 6px;
  2337. }
  2338. #postAttachment dd, #postAttachment2 dd {
  2339. margin: 4px 0 4px 12px;
  2340. }
  2341. #postAttachment dt, #postAttachment2 dt {
  2342. font-weight: bold;
  2343. }
  2344. #postAttachment3 {
  2345. margin-left: 12px;
  2346. }
  2347. #post_confirm_strip /* < That may be deprecated. */, #shortcuts {
  2348. padding: 12px 0;
  2349. }
  2350. .post_verification {
  2351. margin-top: 6px;
  2352. }
  2353. .post_verification #verification_control {
  2354. margin: 4px 0 4px 12px;
  2355. }
  2356. /* The BBC buttons */
  2357. #bbcBox_message {
  2358. margin: 10px 6px;
  2359. }
  2360. #bbcBox_message div {
  2361. margin: 2px 0;
  2362. vertical-align: top;
  2363. }
  2364. #bbcBox_message div img {
  2365. margin: 0 1px 0 0;
  2366. vertical-align: top;
  2367. }
  2368. #bbcBox_message select {
  2369. margin: 0 2px;
  2370. }
  2371. /* The smiley strip */
  2372. #smileyBox_message {
  2373. margin: 6px;
  2374. }
  2375. /* Styles for edit event section
  2376. ---------------------------------------------------- */
  2377. #post_event .roundframe {
  2378. padding: 12px 12%;
  2379. overflow: auto;
  2380. }
  2381. #post_event fieldset {
  2382. padding: 6px;
  2383. clear: both;
  2384. }
  2385. #post_event #event_main input {
  2386. margin: 0 0 12px 0;
  2387. float: left;
  2388. }
  2389. #post_event #event_main div.smalltext {
  2390. width: 34.6em;
  2391. float: right;
  2392. }
  2393. #post_event div.event_options {
  2394. float: right;
  2395. }
  2396. #post_event .event_main, .event_options {
  2397. padding: 0;
  2398. overflow: hidden;
  2399. }
  2400. #post_event ul.event_main li {
  2401. list-style-type: none;
  2402. margin: 2px 0;
  2403. width: 49%;
  2404. float: left;
  2405. }
  2406. #post_event ul.event_options {
  2407. margin: 0;
  2408. padding: 0 0 8px 8px;
  2409. }
  2410. #post_event ul.event_options li {
  2411. list-style-type: none;
  2412. margin: 0;
  2413. float: left;
  2414. }
  2415. #post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check {
  2416. margin: 0 12px 0 0;
  2417. }
  2418. /* Styles for edit poll section.
  2419. ---------------------------------------------------- */
  2420. #edit_poll {
  2421. overflow: hidden;
  2422. }
  2423. #edit_poll fieldset {
  2424. padding: 6px;
  2425. clear: both;
  2426. overflow: hidden;
  2427. }
  2428. #edit_poll fieldset input {
  2429. margin-left: 8.1em;
  2430. }
  2431. #edit_poll ul.poll_main li {
  2432. padding-left: 12px;
  2433. }
  2434. #edit_poll ul.poll_main input {
  2435. margin-left: 12px;
  2436. }
  2437. #edit_poll ul.poll_main, dl.poll_options {
  2438. overflow: hidden;
  2439. padding: 0 0 8px 8px;
  2440. }
  2441. #edit_poll ul.poll_main li {
  2442. margin: 2px 0;
  2443. }
  2444. #edit_poll dl.poll_options dt {
  2445. width: 33%;
  2446. padding: 0 0 0 12px;
  2447. }
  2448. #edit_poll dl.poll_options dd {
  2449. width: 65%;
  2450. }
  2451. #edit_poll dl.poll_options dd input {
  2452. margin-left: 0;
  2453. }
  2454. /* Styles for the recent messages section.
  2455. ---------------------------------------------------- */
  2456. #readbuttons_top .pagelinks, #readbuttons .pagelinks {
  2457. padding-bottom: 12px;
  2458. width: 60%;
  2459. }
  2460. #readbuttons .pagelinks {
  2461. padding-top: 12px;
  2462. }
  2463. #recent {
  2464. clear: both;
  2465. }
  2466. /* Styles for the move topic section.
  2467. ---------------------------------------------------- */
  2468. #move_topic dl {
  2469. margin-bottom: 0;
  2470. }
  2471. #move_topic dl.settings dt {
  2472. width: 40%;
  2473. }
  2474. #move_topic dl.settings dd {
  2475. width: 59%;
  2476. }
  2477. .move_topic {
  2478. width: 710px;
  2479. margin: auto;
  2480. text-align: left;
  2481. }
  2482. div.move_topic fieldset {
  2483. padding: 6px;
  2484. }
  2485. /* Styles for the send topic section.
  2486. ---------------------------------------------------- */
  2487. fieldset.send_topic {
  2488. border: none;
  2489. padding: 6px;
  2490. }
  2491. dl.send_topic {
  2492. margin-bottom: 0;
  2493. }
  2494. dl.send_mail dt {
  2495. width: 35%;
  2496. }
  2497. dl.send_mail dd {
  2498. width: 64%;
  2499. }
  2500. /* Styles for the report topic section.
  2501. ---------------------------------------------------- */
  2502. #report_topic dl {
  2503. margin-bottom: 0;
  2504. }
  2505. #report_topic dl.settings dt {
  2506. width: 20%;
  2507. }
  2508. #report_topic dl.settings dd {
  2509. width: 79%;
  2510. }
  2511. /* Styles for the split topic section.
  2512. ---------------------------------------------------- */
  2513. div#selected, div#not_selected {
  2514. width: 49%;
  2515. }
  2516. ul.split_messages li.windowbg, ul.split_messages li.windowbg2 {
  2517. margin: 1px;
  2518. }
  2519. ul.split_messages li a.split_icon {
  2520. padding: 0 6px;
  2521. }
  2522. ul.split_messages div.post {
  2523. padding: 12px 0 0 0;
  2524. border-top: 1px solid #fff;
  2525. }
  2526. /* Styles for the merge topic section.
  2527. ---------------------------------------------------- */
  2528. ul.merge_topics li {
  2529. list-style-type: none;
  2530. }
  2531. dl.merge_topic dt {
  2532. width: 25%;
  2533. }
  2534. dl.merge_topic dd {
  2535. width: 74%;
  2536. }
  2537. fieldset.merge_options {
  2538. clear: both;
  2539. }
  2540. .custom_subject {
  2541. margin: 6px 0;
  2542. }
  2543. /* Styles for the login areas.
  2544. ------------------------------------------------------- */
  2545. .login {
  2546. width: 540px;
  2547. margin: 0 auto;
  2548. }
  2549. .login dl {
  2550. overflow: auto;
  2551. clear: right;
  2552. }
  2553. .login dt, .login dd {
  2554. margin: 0 0 5px 0;
  2555. width: 44%;
  2556. padding: 1px;
  2557. }
  2558. .login dt {
  2559. float: left;
  2560. clear: both;
  2561. text-align: right;
  2562. font-weight: bold;
  2563. }
  2564. .login dd {
  2565. width: 54%;
  2566. float: right;
  2567. text-align: left;
  2568. }
  2569. .login p {
  2570. text-align: center;
  2571. }
  2572. /* Additional register fields */
  2573. dl.register_form {
  2574. margin: 0;
  2575. clear: right;
  2576. }
  2577. dl.register_form dt {
  2578. font-weight: normal;
  2579. float: left;
  2580. clear: both;
  2581. width: 50%;
  2582. margin: 6px 0 0 0;
  2583. }
  2584. dl.register_form dt span {
  2585. display: block;
  2586. }
  2587. dl.register_form dd {
  2588. float: left;
  2589. width: 49%;
  2590. margin: 6px 0 0 0;
  2591. }
  2592. #confirm_buttons {
  2593. text-align: center;
  2594. padding: 12px 0;
  2595. }
  2596. .coppa_contact {
  2597. padding: 4px;
  2598. width: 32ex;
  2599. background: #fff;
  2600. color: #222;
  2601. margin-left: 5ex;
  2602. border: 1px solid #222;
  2603. }
  2604. .valid_input {
  2605. background: #f5fff0;
  2606. }
  2607. .invalid_input {
  2608. background: #fff0f0;
  2609. }
  2610. /* Styles for maintenance mode.
  2611. ------------------------------------------------------- */
  2612. #maintenance_mode {
  2613. width: 75%;
  2614. min-width: 520px;
  2615. text-align: left;
  2616. }
  2617. #maintenance_mode img.floatleft {
  2618. margin-right: 12px;
  2619. }
  2620. /* common for all admin sections */
  2621. h3.titlebg img {
  2622. vertical-align: middle;
  2623. margin: 0 5px 0 0;
  2624. }
  2625. tr.titlebg td {
  2626. padding-left: 8px;
  2627. }
  2628. #admin_content {
  2629. clear: left;
  2630. padding-top: 6px;
  2631. }
  2632. /* Custom profile fields like to play with us some times. */
  2633. #admin_content .custom_field {
  2634. margin-bottom: 15px;
  2635. }
  2636. #admin_login .centertext {
  2637. padding: 12px;
  2638. }
  2639. #admin_login .centertext .error {
  2640. padding: 0 0 12px 0;
  2641. }
  2642. #admin_login .centertext a.help img {
  2643. vertical-align: middle;
  2644. }
  2645. tr.windowbg td, tr.windowbg2 td, tr.approvebg td, tr.highlight2 td {
  2646. padding: 4px 8px;
  2647. }
  2648. #credits p {
  2649. padding: 0;
  2650. font-style: italic;
  2651. margin: 0;
  2652. }
  2653. /* Styles for generic tables.
  2654. ------------------------------------------------------- */
  2655. .topic_table table {
  2656. width: 100%;
  2657. }
  2658. .topic_table .icon1, .topic_table .icon2, .topic_table .stats {
  2659. text-align: center;
  2660. }
  2661. .topic_table table thead {
  2662. border-bottom: 1px solid #fff;
  2663. }
  2664. /* the subject column */
  2665. .topic_table td {
  2666. font-size: 1em;
  2667. }
  2668. .topic_table td.subject p, .topic_table td.stats {
  2669. font-size: 0.9em;
  2670. padding: 0;
  2671. margin: 0;
  2672. }
  2673. .topic_table td.lastpost {
  2674. font-size: 0.9em;
  2675. line-height: 1.3em;
  2676. padding: 4px;
  2677. }
  2678. /* Sticky topics get a different background */
  2679. .topic_table td.stickybg {
  2680. background: #e8d8cf url(../images/icons/quick_sticky.png) no-repeat 98% 4px;
  2681. }
  2682. .topic_table td.stickybg2 {
  2683. background: #f2e3d9 url(../images/icons/quick_sticky.png) no-repeat 98% 4px;
  2684. }
  2685. .topic_table td.locked_sticky, .topic_table td.stickybglockedbg {
  2686. background: #e8d8cf url(../images/icons/quick_sticky_lock.png) no-repeat 98% 4px;
  2687. }
  2688. .topic_table td.locked_sticky2, .topic_table td.stickybglockedbg2 {
  2689. background: #f2e3d9 url(../images/icons/quick_sticky_lock.png) no-repeat 98% 4px;
  2690. }
  2691. /* Plain locked topics just get the icon. */
  2692. /* Nobody wants them to stand out much. */
  2693. .topic_table td.lockedbg {
  2694. background: #e7eaef url(../images/icons/quick_lock.png) no-repeat 98% 4px;
  2695. }
  2696. .topic_table td.lockedbg2 {
  2697. background: #f0f4f7 url(../images/icons/quick_lock.png) no-repeat 98% 4px;
  2698. }
  2699. /* Stop those damned icons popping up in every table cell! */
  2700. .topic_table td.icon1, .topic_table td.icon2, .topic_table td.stats,
  2701. .topic_table td.lastpost, .topic_table td.moderation {
  2702. background-image: none;
  2703. }
  2704. /* Styles for (fatal) errors.
  2705. ------------------------------------------------- */
  2706. #fatal_error {
  2707. width: 80%;
  2708. margin: auto;
  2709. }
  2710. .errorbox {
  2711. background: #fee url(../images/warning_mute.png) 10px 50% no-repeat;
  2712. text-align: left;
  2713. border-top: 2px solid #c34;
  2714. border-bottom: 2px solid #c34;
  2715. padding: 7px 10px 7px 35px;
  2716. margin-bottom: 12px;
  2717. }
  2718. .errorbox h3 {
  2719. padding: 0;
  2720. margin: 0;
  2721. font-size: 1.1em;
  2722. text-decoration: underline;
  2723. }
  2724. .errorbox p {
  2725. margin: 12px 0 0 0;
  2726. }
  2727. .errorbox p.alert {
  2728. padding: 0;
  2729. margin: 0;
  2730. float: left;
  2731. width: 12px;
  2732. font-size: 1.5em;
  2733. }
  2734. .errorbox span {
  2735. text-decoration: underline;
  2736. }
  2737. /* Styles for info boxes
  2738. ------------------------------------------------- */
  2739. .noticebox {
  2740. color: #666;
  2741. background: #fff6ca url(../images/warning_moderate.png) 10px 50% no-repeat;
  2742. text-align: left;
  2743. border-top: 1px solid #ffd324;
  2744. border-bottom: 1px solid #ffd324;
  2745. padding: 7px 10px 7px 35px;
  2746. margin-bottom: 12px;
  2747. }
  2748. .infobox {
  2749. color: #222;
  2750. background: #efe url(../images/icons/field_valid.png) 10px 50% no-repeat;
  2751. text-align: left;
  2752. border-top: 1px solid green;
  2753. border-bottom: 1px solid green;
  2754. padding: 7px 10px 7px 35px;
  2755. margin-bottom: 12px;
  2756. }
  2757. /* Styles for the profile section.
  2758. ------------------------------------------------- */
  2759. dl {
  2760. overflow: auto;
  2761. margin: 0;
  2762. padding: 0;
  2763. }
  2764. /* The basic user info on the left */
  2765. #basicinfo {
  2766. width: 20%;
  2767. float: left;
  2768. }
  2769. #basicinfo .windowbg .content {
  2770. padding-left: 20px;
  2771. }
  2772. #detailedinfo {
  2773. width: 79.5%;
  2774. float: right;
  2775. }
  2776. #basicinfo h4 {
  2777. font-size: 1.4em;
  2778. font-weight: 100;
  2779. white-space: pre-wrap;
  2780. overflow: hidden;
  2781. }
  2782. #basicinfo h4 span.position {
  2783. font-size: 0.8em;
  2784. font-weight: 100;
  2785. display: block;
  2786. }
  2787. #basicinfo img.avatar {
  2788. display: block;
  2789. margin: 10px 0 0 0;
  2790. }
  2791. #basicinfo ul {
  2792. list-style-type: none;
  2793. margin: 10px 0 0 0;
  2794. }
  2795. #basicinfo ul li {
  2796. display: block;
  2797. float: left;
  2798. margin-right: 5px;
  2799. height: 20px;
  2800. }
  2801. #basicinfo#userstatus {
  2802. display: block;
  2803. clear: both;
  2804. }
  2805. #basicinfo #userstatus img {
  2806. vertical-align: middle;
  2807. }
  2808. #detailedinfo dl, #tracking dl {
  2809. clear: right;
  2810. overflow: auto;
  2811. margin: 0 0 18px 0;
  2812. padding: 0 0 15px 0;
  2813. border-bottom: 1px #ccc solid;
  2814. }
  2815. #detailedinfo dt, #tracking dt {
  2816. width: 35%;
  2817. float: left;
  2818. margin: 0 0 3px 0;
  2819. padding: 0;
  2820. font-weight: bold;
  2821. color: #444;
  2822. clear: both;
  2823. }
  2824. #detailedinfo dd, #tracking dd {
  2825. width: 65%;
  2826. float: left;
  2827. margin: 0 0 3px 0;
  2828. padding: 0;
  2829. }
  2830. #detailedinfo .noborder {
  2831. border-bottom: 0;
  2832. }
  2833. #detailedinfo dt.clear {
  2834. width: 100%;
  2835. }
  2836. #personal_picture {
  2837. display: block;
  2838. margin-bottom: 4px;
  2839. }
  2840. #avatar_server_stored div {
  2841. float: left;
  2842. }
  2843. #avatar_upload {
  2844. overflow: auto;
  2845. }
  2846. #main_admsection #basicinfo, #main_admsection #detailedinfo {
  2847. width: 100%;
  2848. }
  2849. #main_admsection #basicinfo h4 {
  2850. float: left;
  2851. width: 35%;
  2852. }
  2853. #main_admsection #basicinfo img.avatar {
  2854. float: right;
  2855. vertical-align: top;
  2856. }
  2857. #main_admsection #basicinfo ul {
  2858. clear: left;
  2859. }
  2860. #main_admsection #basicinfo span#userstatus {
  2861. clear: left;
  2862. }
  2863. #main_admsection #basicinfo p#infolinks {
  2864. display: none;
  2865. clear: both;
  2866. }
  2867. #main_admsection #basicinfo .botslice {
  2868. clear: both;
  2869. }
  2870. /* Profile statistics */
  2871. #generalstats div.content dt {
  2872. width: 50%;
  2873. float: left;
  2874. margin: 0 0 3px 0;
  2875. padding: 0;
  2876. font-weight: bold;
  2877. clear: both;
  2878. }
  2879. #generalstats div.content dd {
  2880. width: 50%;
  2881. float: left;
  2882. margin: 0 0 3px 0;
  2883. padding: 0;
  2884. }
  2885. /* Activity by time */
  2886. #activitytime {
  2887. margin: 6px 0;
  2888. }
  2889. .activity_stats {
  2890. margin: 0;
  2891. padding: 0;
  2892. }
  2893. .activity_stats li {
  2894. margin: 0;
  2895. padding: 0;
  2896. width: 4.16%;
  2897. float: left;
  2898. }
  2899. .activity_stats li span {
  2900. display: block;
  2901. border: solid #666;
  2902. border-width: 1px 1px 1px 1px;
  2903. border-left: none;
  2904. border-right: none; background: #eee;
  2905. text-align: center;
  2906. }
  2907. .activity_stats li.last span {
  2908. border-right: none;
  2909. }
  2910. .activity_stats li div.bar {
  2911. margin: 0 auto;
  2912. width: 15px;
  2913. border: 1px solid #ccc;
  2914. border-bottom: none;
  2915. background: #fff;
  2916. }
  2917. .activity_stats li div.bar div {
  2918. background: #6294CE;
  2919. background: orange;
  2920. box-shadow: 4px -4px 4px rgba(0,0,0,0.1) inset, 4px 4px 4px rgba(255,255,255,0.3) inset;
  2921. }
  2922. .activity_stats li div.bar span {
  2923. position: absolute;
  2924. top: -1000em;
  2925. left: -1000em;
  2926. }
  2927. /* Most popular boards by posts and activity */
  2928. #popularposts {
  2929. width: 49.5%;
  2930. float: left;
  2931. }
  2932. #popularactivity {
  2933. width: 49.5%;
  2934. float: right;
  2935. }
  2936. #popularposts div.content dt, #popularactivity div.content dt {
  2937. width: 65%;
  2938. float: left;
  2939. margin: 0 0 3px 0;
  2940. padding: 0;
  2941. font-weight: bold;
  2942. clear: both;
  2943. }
  2944. #popularposts div.content dd, #popularactivity div.content dd {
  2945. width: 35%;
  2946. float: left;
  2947. margin: 0 0 3px 0;
  2948. padding: 0;
  2949. }
  2950. .profile_pie {
  2951. background: url(../images/stats_pie.png);
  2952. float: left;
  2953. height: 20px;
  2954. width: 20px;
  2955. margin: 0 12px 0 0;
  2956. padding: 0;
  2957. text-indent: -1000em;
  2958. }
  2959. /* View posts */
  2960. .topic .time {
  2961. float: right;
  2962. }
  2963. .counter {
  2964. margin: 0 0 0 0;
  2965. padding: 5px 6px 1px 2px;
  2966. font-size: 2.2em;
  2967. font-weight: bold;
  2968. color: #3f3f3f;
  2969. float: left;
  2970. }
  2971. .topic_details {
  2972. border-bottom: 1px solid #999;
  2973. padding: 0 4px 4px 4px;
  2974. }
  2975. .list_posts {
  2976. border-top: 1px solid #ccc;
  2977. box-shadow: 0 1px 0 #fff inset;
  2978. padding-top: 12px;
  2979. margin: 0;
  2980. overflow: auto;
  2981. }
  2982. .topic h4 {
  2983. margin: 3px 0;
  2984. }
  2985. .topic .post {
  2986. margin: 0 12px;
  2987. min-height: 80px;
  2988. height: auto !important;
  2989. height: 80px;
  2990. }
  2991. .topic .mod_icons {
  2992. text-align: right;
  2993. margin-right: 12px;
  2994. }
  2995. #tracking div.content dl {
  2996. border-bottom: 0;
  2997. margin: 0;
  2998. padding: 0;
  2999. }
  3000. #creator dl {
  3001. margin: 0;
  3002. }
  3003. #creator dt {
  3004. width: 40%;
  3005. float: left;
  3006. clear: both;
  3007. margin: 0 0 10px 0;
  3008. }
  3009. #creator dd {
  3010. float: right;
  3011. width: 55%;
  3012. margin: 0 0 10px 2px;
  3013. overflow: auto;
  3014. }
  3015. img.centericon {
  3016. vertical-align: middle;
  3017. }
  3018. .ignoreboards {
  3019. margin: 0 2%;
  3020. padding: 0;
  3021. width: 90%;
  3022. }
  3023. .ignoreboards a {
  3024. font-weight: bold;
  3025. border-bottom: 1px solid #c4c4c4;
  3026. padding: 1px 0;
  3027. }
  3028. .ignoreboards a:hover {
  3029. text-decoration: none;
  3030. border-bottom: 1px solid #334466;
  3031. }
  3032. .ignoreboards ul {
  3033. margin: 0;
  3034. padding: 0;
  3035. }
  3036. .ignoreboards li {
  3037. float: left;
  3038. clear: both;
  3039. }
  3040. .ignoreboards li.category {
  3041. margin: 8px 0 0 0;
  3042. width: 100%;
  3043. }
  3044. .ignoreboards li ul {
  3045. margin: 2px 0 0 0;
  3046. }
  3047. .ignoreboards li.category ul li.board {
  3048. width: 93%;
  3049. }
  3050. #theme_settings {
  3051. overflow: auto;
  3052. margin: 0;
  3053. padding: 0;
  3054. }
  3055. #theme_settings li {
  3056. margin: 10px 0;
  3057. padding: 0;
  3058. }
  3059. /* Paid Subscriptions */
  3060. #paid_subscription {
  3061. width: 100%;
  3062. }
  3063. #paid_subscription dl.settings {
  3064. margin-bottom: 0;
  3065. }
  3066. #paid_subscription dl.settings dd, #paid_subscription dl.settings dt {
  3067. margin-bottom: 4px;
  3068. }
  3069. /* Pick theme */
  3070. #pick_theme {
  3071. width: 100%;
  3072. float: left;
  3073. }
  3074. /*Issue a warning*/
  3075. #warn_body{
  3076. width: 80%;
  3077. font-size: 0.9em;
  3078. }
  3079. /* Styles for the statistics center.
  3080. ------------------------------------------------- */
  3081. #statistics {
  3082. padding: 6px 0;
  3083. }
  3084. #statistics div {
  3085. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  3086. }
  3087. #statistics div.title_bar {
  3088. margin: 4px 0 0 0;
  3089. }
  3090. #statistics .titlebg img {
  3091. margin: 3px 6px 0 3px;
  3092. }
  3093. #statistics .cat_bar {
  3094. margin: 4px 0 0 0;
  3095. }
  3096. #statistics .flow_hidden {
  3097. background: #f0f4f7;
  3098. margin: 4px 0;
  3099. padding: 2px 6px;
  3100. border-radius: 7px;
  3101. }
  3102. #statistics div.windowbg2 {
  3103. background: none;
  3104. }
  3105. #stats_left, #top_posters, #top_topics_replies, #top_topics_starter {
  3106. float: left;
  3107. width: 50%;
  3108. padding: 0 3px 0 0;
  3109. }
  3110. #stats_right, #top_boards, #top_topics_views, #most_online {
  3111. float: right;
  3112. width: 50%;
  3113. padding: 0 0 0 3px;
  3114. }
  3115. #stats_left{
  3116. border-right: 1px solid #bbb;
  3117. margin-top: 8px;
  3118. }
  3119. #stats_right{
  3120. border-left: 1px solid #fff;
  3121. margin-top: 8px;
  3122. }
  3123. dl.stats {
  3124. clear: both;
  3125. overflow: hidden;
  3126. margin: 0 0 0 0;
  3127. padding: 0 0 0 0;
  3128. }
  3129. #stats_left dl.stats, #stats_right dl.stats{
  3130. margin: -8px 0 -12px 0;
  3131. }
  3132. dl.stats dt {
  3133. width: 50%;
  3134. float: left;
  3135. margin: 0 0 4px 0;
  3136. padding: 0;
  3137. line-height: 1.5em;
  3138. clear: both;
  3139. font-size: 1em;
  3140. }
  3141. dl.stats dd {
  3142. text-align: right;
  3143. width: 50%;
  3144. font-size: 1em;
  3145. float: right;
  3146. margin: 0 0 4px 0;
  3147. padding: 0 4px 0 0;
  3148. line-height: 1.4em;
  3149. min-height: 1.4em;
  3150. background: #fff;
  3151. border: 1px solid #aaa;
  3152. border-radius: 2px;
  3153. position: relative;
  3154. }
  3155. /* Methinks topic links, etc need a little more oomph next to the orange bars. */
  3156. /* Open to suggestions. */
  3157. #stats_left dt a {
  3158. color: #232f46;
  3159. }
  3160. .top_row dl.stats dd {
  3161. background: none; border: none;
  3162. }
  3163. /* Give a bit more room for the date here. */
  3164. #stats_left dt {
  3165. width: 35%;
  3166. }
  3167. #stats_left dd {
  3168. width: 65%;
  3169. }
  3170. .statsbar div.bar {
  3171. float: left;
  3172. background: orange;
  3173. border-right: 1px solid #999;
  3174. border-radius: 1px 0 0 1px;
  3175. box-shadow: 4px -4px 8px rgba(0,0,0,0.1) inset, 4px 4px 8px rgba(255,255,255,0.3) inset;
  3176. display: block;
  3177. margin: 0 4px 0 0;
  3178. height: 1.4em;
  3179. }
  3180. /* Absolute positioning stops these breaking the bars on narrow screens. */
  3181. dl.stats dd span {
  3182. padding: 0 2px;
  3183. position: absolute;
  3184. right: 0;
  3185. top: 0;
  3186. z-index: 2;
  3187. background: #fff;
  3188. white-space: pre;
  3189. }
  3190. #stats {
  3191. margin: 4px 0;
  3192. }
  3193. #stats th.first_th {
  3194. padding-left: 8px;
  3195. }
  3196. #stats tr.windowbg2 th.lefttext {
  3197. border-left: 1px solid #fff;
  3198. }
  3199. #stats tr.windowbg2 th {
  3200. border-right: 1px solid #fff;
  3201. border-bottom: 1px solid #fff;
  3202. }
  3203. tr.windowbg2 th.stats_month {
  3204. width: 25%;
  3205. padding: 0 2em;
  3206. text-align: left;
  3207. border-left: 1px solid #fff;
  3208. }
  3209. tr.windowbg2 td.stats_day {
  3210. padding: 0 3.5em;
  3211. text-align: left;
  3212. border-left: 1px solid #fff;
  3213. }
  3214. /* Styles for the personal messages section.
  3215. ------------------------------------------------- */
  3216. #personal_messages h3 span#author, #personal_messages h3 span#topic_title {
  3217. float: left;
  3218. }
  3219. #personal_messages h3 span#author {
  3220. margin: 0 0 0 6px;
  3221. }
  3222. #personal_messages h3 span#topic_title {
  3223. margin: 0 0 0 9em;
  3224. }
  3225. #personal_messages div.labels {
  3226. padding: 0 12px 0 0;
  3227. }
  3228. #personal_messages .capacity_bar {
  3229. background: #f0f4f7;
  3230. display: block;
  3231. margin: 6px 0 0 12px;
  3232. height: 12px;
  3233. border: 1px solid #adadad;
  3234. width: 10em;
  3235. }
  3236. #personal_messages .capacity_bar span {
  3237. border-right: 1px solid #adadad;
  3238. display: block;
  3239. height: 12px;
  3240. }
  3241. #personal_messages .capacity_bar span.empty {
  3242. background: #a6d69d;
  3243. }
  3244. #personal_messages .capacity_bar span.filled {
  3245. background: #eea800;
  3246. }
  3247. #personal_messages .capacity_bar span.full {
  3248. background: #f10909;
  3249. }
  3250. #personal_messages .reportlinks {
  3251. padding: 6px 1.3em;
  3252. }
  3253. #searchLabelsExpand li {
  3254. padding: 4px 6px;
  3255. }
  3256. #manrules div.righttext {
  3257. padding: 4px 1px;
  3258. }
  3259. dl.addrules dt.floatleft {
  3260. width: 15em;
  3261. color: #333;
  3262. padding: 0 15px 6px 15px;
  3263. }
  3264. #addrule fieldset {
  3265. clear: both;
  3266. }
  3267. #to_item_list_container div, #bcc_item_list_container div {
  3268. float:left;
  3269. margin-right:10px;
  3270. }
  3271. /* Styles for the calendar section.
  3272. ------------------------------------------------- */
  3273. #calendar {
  3274. overflow: hidden;
  3275. }
  3276. /* Used to indicate the current day in the grid. */
  3277. .calendar_today {
  3278. background: #fff;
  3279. border: 1px solid #bbb;
  3280. box-shadow: 0 2px 5px rgba(0,0,0,0.05) inset;
  3281. }
  3282. #month_grid {
  3283. padding: 0 15px 0 0;
  3284. width: 215px;
  3285. text-align: center;
  3286. float: left;
  3287. }
  3288. #month_grid div.cat_bar {
  3289. border-radius: 5px 5px 0 0;
  3290. margin: 0 1px 0 0;
  3291. padding: 0 0 0 0;
  3292. }
  3293. #month_grid h3 a {
  3294. padding: 0 6px 0 6px;
  3295. }
  3296. #month_grid table {
  3297. width: 100%;
  3298. margin-bottom: 12px;
  3299. }
  3300. #main_grid {
  3301. position: relative;
  3302. overflow: hidden;
  3303. }
  3304. #main_grid table {
  3305. width: 100%;
  3306. margin-bottom: 2px;
  3307. padding-bottom: 4px;
  3308. }
  3309. #main_grid .cat_bar {
  3310. border-radius: 5px 5px 0 0;
  3311. margin: 0 1px;
  3312. }
  3313. #main_grid h3.catbg {
  3314. padding: 8px 6px 4px 6px;
  3315. }
  3316. #main_grid h3.catbg span {
  3317. display: block;
  3318. font-size: 1.5em;
  3319. margin: -3px 4px 0 4px;
  3320. }
  3321. #main_grid table th.days {
  3322. width: 14%;
  3323. padding: 4px 0;
  3324. }
  3325. #main_grid table td.weeks {
  3326. text-align: center;
  3327. font-weight: bold;
  3328. font-size: 1.8em;
  3329. }
  3330. #main_grid table td.weeks a:hover {
  3331. text-decoration: none;
  3332. }
  3333. #main_grid table td.days {
  3334. vertical-align: top;
  3335. text-align: center;
  3336. }
  3337. #main_grid h3.weekly {
  3338. text-align: center;
  3339. font-size: 1.4em;
  3340. }
  3341. #main_grid ul.weeklist, #main_grid ul.weeklist li {
  3342. margin: 0 0 8px 0;
  3343. padding: 0;
  3344. float: left;
  3345. width: 100%;
  3346. overflow: hidden;
  3347. }
  3348. #main_grid ul.weeklist li {
  3349. margin: 0 1px 0 1px;
  3350. border-top: 2px solid #fff;
  3351. }
  3352. #main_grid .weeklist h4 {
  3353. text-align: center;
  3354. float: left;
  3355. width: 10em;
  3356. font-size: 1.2em;
  3357. padding: 15px 0;
  3358. }
  3359. #main_grid .weeklist h4 a:hover {
  3360. text-decoration: none;
  3361. border-bottom: 1px solid #346;
  3362. }
  3363. /* Use the old one true layout trick here. */
  3364. #main_grid .weeklist .windowbg2 {
  3365. margin: 0 0 -95px 12em;
  3366. padding: 8px 8px 100px 8px;
  3367. border-radius: 0;
  3368. border-left: 2px solid #fff;
  3369. }
  3370. #main_grid .weeklist .calendar_today {
  3371. margin: 0 0 -95px 12em;
  3372. padding: 8px 8px 100px 8px;
  3373. border-left: none;
  3374. background: #fff;
  3375. }
  3376. a.modify_event {
  3377. color: red;
  3378. }
  3379. span.hidelink {
  3380. font-style: italic;
  3381. }
  3382. /* Add a background that fits with the calendar. */
  3383. #calendar_navigation {
  3384. margin: -6px 1px 0 1px;
  3385. padding: 12px 0;
  3386. text-align: center;
  3387. float: left;
  3388. width: 100%;
  3389. background: #e7eaef;
  3390. }
  3391. /* Cheat and match this to the submit button. */
  3392. #main_grid .buttonlist {
  3393. position: absolute;
  3394. bottom: 12px;
  3395. right: 12px;
  3396. }
  3397. #main_grid .buttonlist a {
  3398. background: #cde7ff url(../images/theme/submit_bg.png) no-repeat;
  3399. border: 1px solid #aaa;
  3400. border-radius: 3px;
  3401. }
  3402. #main_grid .buttonlist a:hover {
  3403. background: #dceeff url(../images/theme/submit_bg.png) no-repeat 0 -140px;
  3404. color: #222;
  3405. }
  3406. /* Styles for the memberlist section.
  3407. ------------------------------------------------- */
  3408. #mlist_search {
  3409. margin: auto;
  3410. width: 500px;
  3411. }
  3412. /* Styles for the basic search section.
  3413. ------------------------------------------------- */
  3414. #searchform, #simple_search p {
  3415. padding: 6px;
  3416. margin: 0;
  3417. }
  3418. #simple_search, #simple_search p, #advanced_search {
  3419. text-align: center !important;
  3420. margin: 0;
  3421. }
  3422. #search_error {
  3423. font-style: italic;
  3424. padding: 4px 12px;
  3425. }
  3426. #search_term_input {
  3427. font-size: 1.1em;
  3428. margin: 0 0 12px;
  3429. }
  3430. /* Styles for the advanced search section.
  3431. ------------------------------------------------- */
  3432. #searchform fieldset {
  3433. text-align: left;
  3434. padding: 0;
  3435. border: none;
  3436. }
  3437. #advanced_search dl#search_options {
  3438. margin: 0 auto;
  3439. width: 600px;
  3440. padding-top: 12px;
  3441. overflow: hidden;
  3442. }
  3443. #advanced_search dt {
  3444. clear: both;
  3445. float: left;
  3446. padding: 2px;
  3447. text-align: right;
  3448. width: 20%;
  3449. }
  3450. #advanced_search dd {
  3451. width: 75%;
  3452. float: left;
  3453. padding: 2px;
  3454. margin: 0 0 0 6px;
  3455. text-align: left;
  3456. }
  3457. #searchform p.clear {
  3458. clear: both;
  3459. }
  3460. /* Styles for the search results page.
  3461. ------------------------------------------------- */
  3462. .topic_table td blockquote, .topic_table td .quoteheader {
  3463. margin: 6px;
  3464. }
  3465. .search_results_posts {
  3466. overflow: hidden;
  3467. }
  3468. .search_results_posts .buttons {
  3469. padding: 5px 12px 0 0;
  3470. }
  3471. /* Styles for the help section.
  3472. ------------------------------------------------- */
  3473. #help_container {
  3474. margin: 0 0 0 0;
  3475. padding: 0 0 8px 0;
  3476. overflow: auto;
  3477. }
  3478. #helpmain {
  3479. margin: 12px 0 0 0;
  3480. padding: 8px 20px 12px 20px;
  3481. border: 1px solid #ccc;
  3482. border-radius: 7px;
  3483. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3484. overflow: auto;
  3485. }
  3486. #helpmain p {
  3487. margin: 10px 0;
  3488. line-height: 1.5em;
  3489. }
  3490. #helpmain ul {
  3491. line-height: 2em;
  3492. margin: 0 0 0 25px;
  3493. }
  3494. #helpmain ul li{
  3495. list-style-type: disc;
  3496. }
  3497. #helpmain ul li a {
  3498. font-weight: bold;
  3499. }
  3500. /* Styles for print media.
  3501. ------------------------------------------------------- */
  3502. @media print {
  3503. #headerarea
  3504. {
  3505. display: none;
  3506. }
  3507. .tborder
  3508. {
  3509. border: none;
  3510. }
  3511. }
  3512. /* Styles for the tooltips
  3513. ------------------------------------------------------- */
  3514. .tooltip {
  3515. position: absolute;
  3516. z-index: 999;
  3517. left: -9999px;
  3518. word-wrap: break-word;
  3519. max-width: 350px;
  3520. padding: 6px 9px;
  3521. color: #333;
  3522. background: #fff;
  3523. border: 1px solid #aaa;
  3524. border-radius: 4px 4px 4px 4px;
  3525. box-shadow: 1px 2px 4px rgba(0,0,0,0.2), 0 0px 10px rgba(0,0,0,0.05) inset;
  3526. }
  3527. /* Styles for popup windows
  3528. ------------------------------------------------------- */
  3529. .popup_container
  3530. {
  3531. display: none;
  3532. position: fixed;
  3533. top: 0;
  3534. left: 0;
  3535. width: 100%;
  3536. height: 100%;
  3537. background: rgba(40,64,80,0.5);
  3538. }
  3539. .popup_window
  3540. {
  3541. position: fixed;
  3542. width: 480px;
  3543. z-index: 99;
  3544. padding: 0;
  3545. box-shadow: 0 3px 6px rgba(0,0,0,0.5);
  3546. border: 1px solid #777;
  3547. border-radius: 7px 7px 3px 3px;
  3548. max-height: none!important;
  3549. overflow: visible!important;
  3550. background: #fff url(../images/theme/lower_section.png) 0 100% repeat-x;
  3551. }
  3552. .popup_content, .popup_heading
  3553. {
  3554. padding: 12px;
  3555. margin: 0;
  3556. }
  3557. .popup_heading
  3558. {
  3559. padding: 10px 8px 8px 8px;
  3560. color: #bf6900;
  3561. background: none;
  3562. }
  3563. .popup_content
  3564. {
  3565. color: #222;
  3566. line-height: 1.6em;
  3567. max-height: 20em;
  3568. overflow: auto;
  3569. background: #fff url(../images/theme/upper_section.png) 0 -55px repeat-x;
  3570. margin: 0px 6px;
  3571. padding: 8px 8px 16px 8px;
  3572. border: 1px solid #bbb;
  3573. border-bottom: 1px solid #ccc;
  3574. border-radius: 6px 6px 2px 2px;
  3575. box-shadow: 0 -2px 3px rgba(0,0,0,0.15), 0 1px 1px rgba(255,255,255,0.2);
  3576. }
  3577. .popup_heading .hide_popup
  3578. {
  3579. display: inline-block;
  3580. width: 16px;
  3581. height: 16px;
  3582. background: url(../images/buttons/delete.png) center center no-repeat;
  3583. float: right;
  3584. }
  3585. .popup_heading .icon
  3586. {
  3587. vertical-align: middle;
  3588. margin: -4px 4px 0 0;
  3589. }
  3590. /* Styles for the progress bar
  3591. -------------------------------------------------- */
  3592. .progress_bar {
  3593. height: 15pt;
  3594. border: 1px solid black;
  3595. background-color: white;
  3596. padding: 3px;
  3597. width: 80%;
  3598. margin: 20px auto 0 auto; /* Top padding should get rid of the <br /> tags in admin for these bars. */
  3599. position: relative;
  3600. border-radius: 5px;
  3601. box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
  3602. }
  3603. .progress_bar div.full_bar {
  3604. padding-top: 1pt;
  3605. width: 100%;
  3606. color: black;
  3607. position: absolute;
  3608. text-align: center;
  3609. font-weight: bold;
  3610. border-radius: 3px;
  3611. z-index: 2;
  3612. }
  3613. .progress_bar div.green_percent {
  3614. height: 15pt;
  3615. background-color: #c1ffc1;
  3616. background-image: -webkit-linear-gradient(top, #c1ffc1, green);
  3617. background-image: -moz-linear-gradient(top, #c1ffc1, green);
  3618. background-image: -ms-linear-gradient(top, #c1ffc1, green);
  3619. background-image: -o-linear-gradient(top, #c1ffc1, green);
  3620. background-image: linear-gradient(top, #c1ffc1, green);
  3621. border-radius: 3px;
  3622. z-index: 1;
  3623. }
  3624. .progress_bar div.blue_percent {
  3625. height: 15pt;
  3626. background-color: #98b8f4;
  3627. background-image: -webkit-linear-gradient(top, #98b8f4, blue);
  3628. background-image: -moz-linear-gradient(top, #98b8f4, blue);
  3629. background-image: -ms-linear-gradient(top, #98b8f4, blue);
  3630. background-image: -o-linear-gradient(top, #98b8f4, blue);
  3631. background-image: linear-gradient(top, #98b8f4, blue);
  3632. border-radius: 3px;
  3633. z-index: 1;
  3634. }
  3635. /* Experimental additions. */
  3636. /*-------------------------*/
  3637. /* Drop the stats cell from the board index on narrow screens. */
  3638. /* Much more user-friendly IMHO. */
  3639. @media screen and (max-width: 1220px) {
  3640. .table_list td.stats {
  3641. display: none;
  3642. }
  3643. .table_list td.lastpost p {
  3644. border-left: 1px solid #ccc;
  3645. padding: 1px 5px 2px 10px;
  3646. margin-top: 1px;
  3647. }
  3648. }
  3649. /* General WIP stuff follows. Just added here temporarily, for convenience while trying stuff out. */
  3650. /* Forum posts may require some special treatment for dealing with clearing floated content. */
  3651. /* Suspect it will be necessary to use float: left; width: 100%; on the windowbg and windowbg2 divs. */
  3652. #forumposts .windowbg, #forumposts .windowbg2, #statistics .flow_hidden {
  3653. background: /*#e8eff5;*/#f0f4f7;
  3654. margin: 12px 0 0 0;
  3655. padding: 8px 8px 16px 8px;
  3656. border: 1px solid #ccc;
  3657. border-radius: 5px;
  3658. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3659. }
  3660. #forumposts .windowbg2 {
  3661. background: #eaf1f4;
  3662. }
  3663. #statistics .flow_hidden {
  3664. background: #e8eff5;
  3665. margin: 12px 0 0 0;
  3666. padding: 8px 8px 16px 8px;
  3667. border: 1px solid #ccc;
  3668. border-radius: 5px;
  3669. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3670. }
  3671. #statistics div.title_bar {
  3672. background: none;
  3673. border-bottom: 2px solid #f5f5f5;
  3674. border-radius: 2px 2px 0 0;
  3675. margin: 1px 4px 0 4px;
  3676. }
  3677. #statistics h4.titlebg {
  3678. background: none;
  3679. border-bottom: 1px solid #bbb;
  3680. border-radius: 0;
  3681. padding: 6px 0;
  3682. margin: 0;
  3683. font-size: 1.1em;
  3684. }
  3685. /* The generic wrapper thingy for teh awesome cool looks innit. */
  3686. /* This lot will be simplified once I get all the styling hooks in place. */
  3687. .generic_list_wrapper, .action_profile #permissions, #postmodify .roundframe, .add_buddy, #creator .windowbg2,
  3688. #notify_options .windowbg2, #info_center, #profileview, #messageindex, #mlist,
  3689. #main_grid table, .core_posts, #recent .core_posts, #recent .topic_table, #searchform .roundframe {
  3690. background: #f0f4f7;
  3691. margin: 12px 0 0 0;
  3692. padding: 8px 8px 16px 8px;
  3693. border: 1px solid #ccc;
  3694. border-radius: 7px;
  3695. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3696. overflow: auto;
  3697. -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-sizing: border-box;
  3698. }
  3699. .generic_list_wrapper .title_bar{
  3700. background: none;
  3701. border-bottom: 1px solid #fff;
  3702. border-radius: 0;
  3703. }
  3704. .generic_list_wrapper .titlebg {
  3705. background: none;
  3706. border-bottom: 1px solid #aaa;
  3707. font-size: 1.1em;
  3708. }
  3709. .generic_list_wrapper .additional_row {
  3710. margin: 0;
  3711. padding: 0;
  3712. border-bottom: 1px solid #aaa;
  3713. border-radius: 0;
  3714. }
  3715. .generic_list_wrapper .information {
  3716. margin: 0;
  3717. padding: 0;
  3718. background: none;
  3719. border: none;
  3720. border-bottom: 1px solid #fff;
  3721. }
  3722. #searchform .roundframe {
  3723. background: #f0f4f7;
  3724. margin: 8px 0 0 0;
  3725. padding: 32px;
  3726. border: 1px solid #ccc;
  3727. border-radius: 7px;
  3728. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  3729. overflow: auto;
  3730. }
  3731. .add_buddy .roundframe, .add_buddy .title_bar {
  3732. background: none;
  3733. border: none;
  3734. max-width: 70em;
  3735. }
  3736. #activitytime .windowbg2 .flow_hidden {
  3737. background: none;
  3738. border: none;
  3739. box-shadow: none;
  3740. }
  3741. /* Some caution required here, as Post.template.php topic summary shares #recent with recent posts. */
  3742. #recent .core_posts {
  3743. padding: 8px 0;
  3744. }
  3745. #recent .core_posts span {
  3746. font-weight: normal;
  3747. }
  3748. #recent .quickbuttons {
  3749. margin-top: -2px;
  3750. }
  3751. /* Will find a less verbose way of handling this. */
  3752. .action_recent #recent .core_posts, .action_profile #recent .core_posts {
  3753. padding: 8px 12px;
  3754. }
  3755. .action_recent #recent .quickbuttons {
  3756. margin-top: 8px;
  3757. }
  3758. /* [WIP] Some odd inheritance glitch here with font-size. Check it out. */
  3759. .topic_details .smalltext {
  3760. font-size: 0.9em;
  3761. }
  3762. #recent .windowbg2, .windowbg2 {
  3763. background: /*#eaf1f4;*/#f0f4f7;
  3764. }
  3765. #recent .windowbg, .windowbg {
  3766. background: /*#e8eff5;*/#f0f4f7;
  3767. }
  3768. #recent .pagesection {
  3769. padding: 3px 4px;
  3770. margin: 0 0 -10px 0;
  3771. }
  3772. #left_admsection {
  3773. margin: 0 8px 0 0;
  3774. padding: 0 4px 8px 4px;
  3775. }
  3776. #info_center{
  3777. background: #f8f8f8;
  3778. margin: 12px 0 0 0;
  3779. padding: 16px 12px 6px 12px;
  3780. }
  3781. #info_center .cat_bar, .table_grid tr.catbg th, #show_attachments th, #searchform .roundframe .title_bar {
  3782. border-top: 2px solid #ff9400;
  3783. border-bottom: 2px solid #bf6900;
  3784. background: #fff;
  3785. color: #444;
  3786. border-radius: 2px 2px 0 0;
  3787. text-align: left;
  3788. }
  3789. #show_attachments th {
  3790. text-align: left;
  3791. }
  3792. #info_center .cat_bar {
  3793. border-right: 1px solid #ddd;
  3794. border-left: 1px solid #ddd;
  3795. margin: 0 -1px;
  3796. }
  3797. .table_grid tr.catbg th {
  3798. font-size: 1em;
  3799. padding: 4px 3px 3px 3px;
  3800. }
  3801. tr.catbg th:first-child, #show_attachments th:first-child {
  3802. border-left: 1px solid #ddd;
  3803. }
  3804. tr.catbg th:last-child, #show_attachments th:last-child {
  3805. border-right: 1px solid #ddd;
  3806. }
  3807. #info_center .catbg {
  3808. padding: 6px 12px 5px 12px;
  3809. background: none;
  3810. font-size: 1.1em;
  3811. }
  3812. #info_center .catbg, #info_center .catbg a, .table_grid tr.catbg th a {
  3813. color: #555;
  3814. text-shadow: none;
  3815. }
  3816. #info_center .title_barIC, #postmodify .roundframe .title_bar,
  3817. #activitytime .cat_bar, #popularposts .cat_bar, #popularactivity .cat_bar{
  3818. background: none;
  3819. border-top: 1px solid #999;
  3820. border-bottom: 1px solid #fff;
  3821. border-radius: 0;
  3822. }
  3823. #info_center h4.titlebg, #postmodify .roundframe .titlebg,
  3824. #activitytime .catbg, #popularposts .catbg, #popularactivity .catbg {
  3825. border-bottom: 1px solid #ccc;
  3826. border-top: 1px solid #ccc;
  3827. box-shadow: 0 1px 0 #fff inset, 0 -1px 0 #999 inset;
  3828. padding: 6px 6px 5px 6px;
  3829. font-size: 1em;
  3830. color: #444;
  3831. text-shadow: none;
  3832. }
  3833. #info_center .title_barIC:first-child, #info_center .title_barIC:first-child .titlebg {
  3834. border-top: none;
  3835. box-shadow: 0 -1px 0 #999 inset;
  3836. }
  3837. #postmodify .roundframe .title_bar{
  3838. background: #f8f8f8;
  3839. border-left: 1px solid #ccc;
  3840. border-right: 1px solid #ccc;
  3841. border-radius: 2px;
  3842. }
  3843. #postmodify .roundframe div{
  3844. padding-right: 0;
  3845. }
  3846. #postmodify #message{
  3847. width: 100%;
  3848. -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-sizing: border-box;
  3849. }
  3850. /* Subtle zebra striping to make tables easier to follow. Will make a solution for IE8. */
  3851. /* CSS for locked, sticky, etc has not been applied yet. Don't panic. She'll be right, mate. :P */
  3852. .table_grid td.statsbar div{display: none;}
  3853. .table_grid tr td:first-child, .table_grid td.icon2 {
  3854. border-left: 1px solid #ccc;
  3855. }
  3856. .table_grid td.lastpost, .table_grid td.whos_viewing, .table_grid td.moderation, .table_grid td.qaction_cell {
  3857. border-right: 1px solid #ccc;
  3858. }
  3859. .table_grid td.windowbg, .table_grid td.windowbg2,.table_grid td.lockedbg, .table_grid td.lockedbg2,
  3860. .table_grid td.stickybg, .table_grid td.stickybg2,.table_grid td.locked_sticky, .table_grid td.locked_sticky2,
  3861. .table_grid td.whos_viewing, .table_grid td.moderation, .table_grid td.qaction_cell {
  3862. border-bottom: 1px solid #ccc;
  3863. }
  3864. .table_grid tr:nth-child(even) td {
  3865. background: #fdfdfd;
  3866. }
  3867. .table_grid tr:nth-child(odd) td {
  3868. background: #fafafa;
  3869. }
  3870. .table_grid td.whos_viewing {
  3871. font-size: 0.9em;
  3872. }