index.css 93 KB

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