foreground.css 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650
  1. :root {
  2. --main-color: #8b0024;
  3. --second-color: #e05176;
  4. --button-color: #367fa9;
  5. --link-color: #009bff;
  6. --link-hover-color: #367FA9;
  7. --link-broken-color: #970000;
  8. }
  9. body {
  10. line-height: 1.6em;
  11. font-family: "Nunito", Helvetica, Roboto, Arial, sans-serif;
  12. background: #ffffff;
  13. }
  14. p {
  15. margin-bottom: 0.25em;
  16. }
  17. #page-content {
  18. margin: 2rem 0 0;
  19. }
  20. .row {
  21. max-width: 75em;
  22. }
  23. a.label:hover, a.label:focus {
  24. color: white;
  25. }
  26. a.label.new {
  27. background-color: #d0d0d0;
  28. }
  29. a#actions-button {
  30. float: right;
  31. z-index: 499;
  32. background-color: var(--button-color, #367fa9);
  33. }
  34. /* rtl an ltr */
  35. [dir=ltr] * {
  36. direction: ltr;
  37. }
  38. [dir=rtl] * {
  39. direction: rtl;
  40. }
  41. [dir=ltr] {
  42. direction: ltr;
  43. }
  44. [dir=rtl] {
  45. direction: rtl;
  46. }
  47. /* Reset all table CSS from Foundation styles back to MediaWiki */
  48. table { width: 0; }
  49. td.mw-label { width: 0; }
  50. td.smwpropname, th.smwpropname, td.smwspecname { text-align: inherit; }
  51. table tbody tr td, table tr td { line-height: inherit; }
  52. table { background: transparent; margin-bottom: 1.25em; border: 0; }
  53. table thead, table tfoot { background: 0; font-weight: normal; }
  54. table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0; font-size: 100%; color: inherit; text-align: inherit; }
  55. table tr th, table tr td { padding: 0; font-size: 100%; color: inherit; }
  56. table tr.even, table tr.alt, table tr:nth-of-type(even) { background: transparent; }
  57. table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: inherit; text-align: inherit; }
  58. /* wikitable classes reset */
  59. table.wikitable {
  60. margin: 1em 0;
  61. }
  62. table.wikitable > tr > th,
  63. table.wikitable > * > tr > th {
  64. text-align: inherit;
  65. }
  66. /* Style MW Table of Contents */
  67. .toctoggle, .toctoggle a {
  68. line-height: 2em;
  69. display: inline;
  70. vertical-align: top;
  71. }
  72. #toctitle h2 {
  73. display: inline;
  74. font-size: 1.8rem;
  75. }
  76. #toc, .toc {
  77. padding: 1em 1em;
  78. border: 1px solid #dddddd;
  79. display: inline-block;
  80. width: auto;
  81. margin: 1.5em 0;
  82. }
  83. #toc ul, .toc ul {
  84. list-style-type: none;
  85. list-style-image: none;
  86. padding: 0;
  87. width: auto;
  88. }
  89. /* Hide the page actions button for special pages (cuz there's nothing in it) */
  90. .mw-special-FormEdit a#actions-button, .ns-special a#actions-button {
  91. display: none;
  92. }
  93. /* Hide some rows on form-edit (e.g. a thing's title) */
  94. body.action-formedit .row.hide-on-form-edit {
  95. display: none;
  96. }
  97. /* Move the MediaWiki notification area so it isn't on top of the Action menu */
  98. .mw-notification-area {
  99. margin-top: 2em;
  100. }
  101. /* Also adjust z-index of action menu to force it on top */
  102. #p-cactions #actions {
  103. z-index: 500;
  104. white-space: nowrap;
  105. }
  106. #p-cactions #actions a {
  107. width: 100%;
  108. text-align: left;
  109. }
  110. /* Make sure top bar is even more z-indx! */
  111. #toolbox-dropdown {
  112. z-index: 601;
  113. }
  114. #personal-tools-dropdown {
  115. z-index: 601;
  116. }
  117. /* Dropdown Icon Alignment */
  118. .drop-icon {
  119. display: inline;
  120. margin-right: 4px;
  121. }
  122. td.mw-submit a, .htmlform-tip, #mw-upload-permitted p {
  123. font-size: 90%;
  124. }
  125. alert.label a {
  126. color: pink;
  127. }
  128. code {
  129. font-weight: normal;
  130. color: var(--main-color);
  131. }
  132. small {
  133. font-size: 80%;
  134. }
  135. h4.namespace.label {
  136. font-size: 1rem;
  137. display: inline-block;
  138. margin-bottom: 0.5rem;
  139. }
  140. .label {
  141. padding-bottom: 0.39em;
  142. font-family: inherit;
  143. }
  144. h2 span {
  145. display: inline-block;
  146. }
  147. h2.title {
  148. margin-bottom: 0.1em;
  149. }
  150. h3#tagline {
  151. font-style: italic;
  152. font-size: small;
  153. margin-bottom: 0.5em;
  154. color: #6f6f6f;
  155. }
  156. .clear_both {
  157. clear: both;
  158. }
  159. .large-2 strong, .large-2 b {
  160. display: block;
  161. }
  162. .large-2 strong, .large-2 b, table th {
  163. font-size: 0.875em;
  164. color: #4d4d4d;
  165. font-weight: 500;
  166. }
  167. /* LAYOUT */
  168. .row .row {
  169. margin-bottom: 0.9em;
  170. }
  171. div.small-10 .row {
  172. margin: 1em 0 0 0;
  173. }
  174. div.small-9.columns textarea {
  175. margin-bottom: 0.25em;
  176. }
  177. footer.row {
  178. margin-top: 2em;
  179. color: grey;
  180. }
  181. div {
  182. line-height: 1.60em;
  183. }
  184. /* NOTICES, ALERTS, WARNINGS */
  185. div#userloginprompt, p#userloginlink {
  186. font-size: 80%;
  187. }
  188. /* LISTS */
  189. ul#actions.f-dropdown {
  190. margin-left: 0;
  191. margin-top: .5em;
  192. margin-bottom: .25em;
  193. padding: .25em;
  194. }
  195. dl {
  196. margin-bottom: 0em;
  197. margin-top: .75em;
  198. }
  199. /* Override MW legacy.module for all skins styling of ul and ol */
  200. .mw-content-ltr ul,
  201. .mw-content-rtl .mw-content-ltr ul {
  202. /* @noflip */
  203. margin: 0.5em 0 0 2em;
  204. padding: 0;
  205. }
  206. .mw-content-rtl ul,
  207. .mw-content-ltr .mw-content-rtl ul {
  208. /* @noflip */
  209. margin: 0.5em 2em 0 0;
  210. padding: 0;
  211. }
  212. .mw-content-ltr ol,
  213. .mw-content-rtl .mw-content-ltr ol {
  214. /* @noflip */
  215. margin: 0.5em 0 0 2em;
  216. padding: 0;
  217. }
  218. .mw-content-rtl ol,
  219. .mw-content-ltr .mw-content-rtl ol {
  220. /* @noflip */
  221. margin: 0.5em 2em 0 0;
  222. padding: 0;
  223. }
  224. /* @noflip */
  225. .mw-content-ltr dd,
  226. .mw-content-rtl .mw-content-ltr dd {
  227. margin-left: 1.6em;
  228. margin-right: 0;
  229. }
  230. /* @noflip */
  231. .mw-content-rtl dd,
  232. .mw-content-ltr .mw-content-rtl dd {
  233. margin-right: 1.6em;
  234. margin-left: 0;
  235. }
  236. /* Tabs */
  237. /* make sure tabs ul element has no margins */
  238. #mw-content-text ul.tabs {
  239. margin: 0;
  240. }
  241. /* stop focus outline */
  242. .tabs dd.active>a, .tabs .tab-title.active>a:focus {
  243. outline: none;
  244. }
  245. /* make sure orbit image slider has no margins */
  246. #mw-content-text .orbit-container ul {
  247. margin: 0;
  248. }
  249. footer.row ul {
  250. list-style-type: none;
  251. margin: 0 0 1em 0;
  252. }
  253. footer.row ul.views.columns li {
  254. margin-right: 1em;
  255. }
  256. #footer footer.row ul {
  257. margin: 0;
  258. list-style-type: none;
  259. }
  260. /* Make social follow float right */
  261. .social-follow {
  262. text-align: center;
  263. }
  264. div.social-follow div[class*="addthis"] {
  265. text-align: left;
  266. display: inline-block;
  267. }
  268. /* end social footer classes */
  269. #footer-left {
  270. font-size: 90%;
  271. text-align: left;
  272. }
  273. #footer-right-icons {
  274. font-size: 85%;
  275. text-align: center;
  276. }
  277. #footer-right-icons li {
  278. display: inline-block;
  279. text-align: center;
  280. margin: 0 0 .5em .5em;
  281. }
  282. li#footer-privacy {
  283. float: left;
  284. margin-right: 2em;
  285. }
  286. li#footer-about {
  287. float: left;
  288. margin-right: 2em;
  289. }
  290. li#footer-disclaimer {
  291. float: left;
  292. margin-right: 2em;
  293. }
  294. .text-center #footer-left li {
  295. float: none;
  296. margin: 0;
  297. }
  298. .text-center #footer-left {
  299. text-align: center;
  300. }
  301. @media only screen and (max-width: 641px) {
  302. #footer-left {
  303. font-size: 85%;
  304. text-align: center;
  305. }
  306. #footer-right-icons {
  307. font-size: 80%;
  308. }
  309. li#footer-privacy {
  310. float: none;
  311. margin-right: 0;
  312. }
  313. li#footer-about {
  314. float: none;
  315. margin-right: 0;
  316. }
  317. li#footer-disclaimer {
  318. float: none;
  319. margin-right: 0;
  320. }
  321. }
  322. .columns ul.special li {
  323. float: none;
  324. width: 100%;
  325. }
  326. .columns div#uploadtext ul {
  327. list-style-type: disc;
  328. }
  329. .columns div#uploadtext ul li {
  330. float: none;
  331. width: 95%;
  332. margin-left: 2em;
  333. }
  334. #catlinks {
  335. border: 1px solid #aaa;
  336. padding: 0.25rem;
  337. }
  338. #catlinks .label {
  339. font-size: .9rem;
  340. }
  341. #catlinks a.label.new {
  342. background-color: #BA0F2A;
  343. }
  344. .catlinks li {
  345. border-left: none;
  346. }
  347. .mw-specialpages-table td ul.columns li {
  348. width: 50%;
  349. }
  350. /*#mw-content-text .columns li {float:none;width:90%;}*/
  351. footer.row ul.columns li {
  352. display: inline;
  353. float: none;
  354. }
  355. .columns #mw-normal-catlinks ul li {
  356. float: none;
  357. width: auto;
  358. }
  359. #mw-normal-catlinks a.new {
  360. color: white;
  361. }
  362. ul.vcard {
  363. padding: 0.5em 0.5em 0.55em 0.5em;
  364. }
  365. /* HEADERS */
  366. h1, h2, h3, h4, h5, h6 {
  367. margin-top: 0em;
  368. line-height: 1em;
  369. font-family: inherit;
  370. }
  371. .page-Special_SpecialPages h2 {
  372. margin-bottom: 0.5em;
  373. }
  374. .editsection {
  375. font-weight: normal;
  376. font-size: 0.4em;
  377. }
  378. p.title {
  379. padding: 0.9375em;
  380. }
  381. /* TABLES */
  382. .mw-content-ltr table#toc {
  383. float: right;
  384. width: auto;
  385. }
  386. .mw-content-rtl table#toc {
  387. float: left;
  388. width: auto;
  389. }
  390. table.formtable {
  391. border: none;
  392. }
  393. table td[align="right"] {
  394. text-align: right;
  395. }
  396. /* TURN OFF TABLE STRIPING FOR EDITFORMS */
  397. table.formedit tr.even, table.formedit tr.alt, table.formedit tr:nth-of-type(even) {
  398. background: transparent;
  399. }
  400. table {
  401. width: 100%;
  402. }
  403. td.mw-label {
  404. width: 20%;
  405. }
  406. td.mw-input {
  407. width: 80%;
  408. }
  409. thead tr th {
  410. cursor: pointer;
  411. }
  412. table.formtable th {
  413. text-align: right !important;
  414. }
  415. td.smwpropname, th.smwpropname, td.smwspecname {
  416. text-align: left;
  417. }
  418. table tbody tr td, table tr td {
  419. line-height: 1.6em;
  420. }
  421. table.wikitable {
  422. margin: 0em 0 1em 0;
  423. }
  424. table.wikitable>tr>th, table.wikitable>*>tr>th {
  425. text-align: left;
  426. }
  427. table.wikitable>tr>th, table.wikitable>tr>td, table.wikitable>*>tr>th, table.wikitable>*>tr>td {
  428. border: 3px #fff solid;
  429. padding: 0.6em;
  430. }
  431. /* FORMS, INPUTS, FIELDSETS */
  432. .multipleTemplateInstance {
  433. background-color: white !important;
  434. border: none !important;
  435. border-bottom: 1px dashed #999999 !important;
  436. }
  437. .multipleTemplateInstance table {
  438. border: none !important;
  439. }
  440. .multipleTemplateAdder {
  441. font-size: 0.9em;
  442. padding: 0.4125em 0.5em 0.55em 0.5em;
  443. }
  444. .novalue {
  445. color: #999999;
  446. font-style: italic;
  447. font-size: small;
  448. }
  449. input[type="file"], input[type="checkbox"], input[type="radio"], select {
  450. padding: 5px;
  451. }
  452. input[type="file"], select {
  453. padding: 5px;
  454. border: 1px solid #cccccc;
  455. }
  456. .inputSpan select.createboxInput, .dateInput select.monthInput, input.hourInput, input.minuteInput, input.secondInput, input.dayInput, input.yearInput, input[name="*[* date][hour]"], input[name="*[* date][minute]"], input[name="*[* date][second]"] {
  457. width: auto;
  458. margin-right: 1em;
  459. }
  460. /*
  461. .inputSpan input.createboxInput {
  462. width: 100%;
  463. }
  464. */
  465. .inputSpan button, .inputSpan .button {
  466. margin: -4px 0 0 0;
  467. padding: 0.37em 0.75em 0.6em 0.70em;
  468. }
  469. .ms-selectable input[type="text"] {
  470. width: 100%;
  471. }
  472. button.ui-button-icon-only {
  473. height: 2.24em !important;
  474. }
  475. select {
  476. width: auto;
  477. }
  478. input[type="checkbox"].createboxInput {
  479. width: auto;
  480. }
  481. label.checkboxLabel {
  482. margin-right: 0.5em;
  483. }
  484. .edit_with_form {
  485. margin: -2em 0 0 0;
  486. float: right;
  487. }
  488. input[type="radio"], input[type="checkbox"] {
  489. display: inline;
  490. }
  491. input[type='file'] {
  492. margin-top: 0.4em;
  493. }
  494. input:not([type]), textarea, p.meta {
  495. margin-bottom: 4px;
  496. }
  497. label {
  498. display: inline;
  499. font-weight: normal;
  500. }
  501. .mw-input label {
  502. font-weight: normal;
  503. }
  504. #mw-content-text ul.SFI_timepicker_hours, #mw-content-text ul.SFI_timepicker_minutes {
  505. list-style-type: none;
  506. }
  507. #mw-content-text ul.SFI_timepicker_hours li {
  508. margin: 2px 2px;
  509. padding: 4px;
  510. }
  511. .sminput.sminput-googlemaps3 p button {
  512. padding-top: 0.35em;
  513. padding-bottom: 0.6em;
  514. }
  515. li label.inline {
  516. margin-bottom: 2px;
  517. padding: 0;
  518. }
  519. button, .button {
  520. margin: 0.5em 0;
  521. padding: 0.3em 0.75em 0.4em 0.75em;
  522. background-color: var(--button-color, #367fa9);
  523. font-family: inherit;
  524. }
  525. .top-bar-logo {
  526. max-width: 100%;
  527. height: auto;
  528. max-height: 2.8125rem;
  529. /* Important! max-height must not be higher than line-height */
  530. display: inline-block;
  531. vertical-align: middle;
  532. }
  533. .top-bar .button.search {
  534. top: 0px;
  535. }
  536. .top-bar .button, .top-bar button {
  537. padding-top: .35rem;
  538. padding-bottom: .35rem;
  539. }
  540. .top-bar .button.search {
  541. margin-left: 10px;
  542. }
  543. .top-bar input {
  544. top: 0px;
  545. }
  546. @media only screen and (min-width: 641px) {
  547. .top-bar .button.search {
  548. top: 0px;
  549. }
  550. .top-bar .button.search {
  551. margin-left: -4px;
  552. }
  553. .top-bar {
  554. height: auto;
  555. }
  556. }
  557. .top-bar-section .dropdown {
  558. z-index: 600;
  559. }
  560. input[type="submit"] {
  561. background-color: #5da423;
  562. border-color: #457a1a;
  563. color: white;
  564. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  565. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  566. -webkit-transition: background-color 300ms ease-out;
  567. -moz-transition: background-color 300ms ease-out;
  568. transition: background-color 300ms ease-out;
  569. }
  570. input#wpPreview {
  571. background-color: #5da423;
  572. border-color: #457a1a;
  573. color: white;
  574. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  575. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  576. -webkit-transition: background-color 300ms ease-out;
  577. -moz-transition: background-color 300ms ease-out;
  578. transition: background-color 300ms ease-out;
  579. }
  580. .editButtons input[type="submit"] {
  581. display: inline-block;
  582. }
  583. legend {
  584. font-size: 0.875em;
  585. color: #4d4d4d;
  586. cursor: pointer;
  587. display: block;
  588. font-weight: 500;
  589. }
  590. fieldset {
  591. line-height: 1.6em;
  592. padding: 0 1.25em 1em 1.25em;
  593. margin-top: 0;
  594. }
  595. span.smwbuiltin, span.smwttactiveinline span.smwbuiltin {
  596. font-style: normal;
  597. }
  598. /* MW still generates a label column for checkboxes, this minimizes is */
  599. div.mw-htmlform-field-HTMLCheckField div.mw-label {
  600. height: 0;
  601. }
  602. /* UNTIL I CAN DETERMINE WHY toolboxend GENERATES AN EMPTY <li> IN THE MENU, I'M HIDING IT */
  603. #p-toolboxend {
  604. display: none;
  605. }
  606. /* firstHeading Fix */
  607. h1#firstHeading {
  608. font-size: 2.125rem;
  609. margin: 0;
  610. padding-top: 10px;
  611. }
  612. @media only screen and (min-width: 40.0625em) {
  613. h1#firstHeading {
  614. font-size: 2.75rem;
  615. }
  616. }
  617. /* Don't like the black top bar? Copy this into your Foreground.css and change the colors */
  618. .top-bar,
  619. .top-bar-section ul,
  620. .top-bar-section ul li.active > a,
  621. .top-bar-section li a:not(.button),
  622. .top-bar-section .has-form {
  623. background: var(--main-color);
  624. }
  625. nav.top-bar,
  626. .top-bar.expanded .title-area {
  627. background: var(--main-color);
  628. }
  629. #navwrapper {
  630. background: var(--main-color);
  631. z-index: 600;
  632. }
  633. .f-topbar-fixed {
  634. padding-top:0 !important;
  635. }
  636. ul#top-bar-left li,
  637. ul#top-bar-left li a
  638. {
  639. background: var(--main-color);
  640. }
  641. ul#top-bar-right li,
  642. ul#top-bar-right li a {
  643. background: var(--main-color);
  644. }
  645. ul#top-bar-left li:hover,
  646. ul#top-bar-left li a:hover,
  647. ul#top-bar-right li:hover:not(.has-form),
  648. ul#top-bar-right li a:hover {
  649. background: var(--second-color);
  650. color: #fff;
  651. }
  652. .top-bar-section .has-dropdown > a:hover:after {
  653. border-color: #fff transparent transparent transparent;
  654. }
  655. .top-bar-section .has-dropdown > a:hover:after {
  656. border-color: #333 transparent transparent transparent;
  657. }
  658. /* Search button */
  659. button,
  660. .button,
  661. .multipleTemplateAdder {
  662. background-color: var(--button-color);
  663. border-color: var(--button-color);
  664. }
  665. button:hover,
  666. button:focus,
  667. .button:hover,
  668. .button:focus {
  669. background-color: var(--button-color);
  670. }
  671. input#wpPreview {
  672. background-color: var(--button-color);
  673. border-color: var(--second-color);
  674. color: #000000;
  675. }
  676. input[type="submit"] {
  677. background-color: var(--button-color);
  678. border-color: var(--second-color);
  679. }
  680. .label {
  681. background-color: var(--button-color);
  682. }
  683. a {
  684. color: var(--link-color);
  685. }
  686. a:hover, a:focus {
  687. color: var(--link-hover-color);
  688. }
  689. a.new {
  690. color: var(--link-broken-color);
  691. }
  692. /* end custom nav bar */
  693. .top-bar-section > ul > .divider,
  694. .top-bar-section > ul > [role="separator"] {
  695. border-color: black;
  696. }
  697. .vertical-divider {
  698. width: 100%;
  699. display: block;
  700. background: #1A1A1A;
  701. height: 1px;
  702. }
  703. .top-bar-section li.active:not(.has-form) a:not(.button), .top-bar-section li.active:not(.has-form) a:hover:not(.button) {
  704. background: inherit;
  705. }
  706. .top-bar input {
  707. width: auto;
  708. display: inline;
  709. }
  710. /*Fix ULS CSS */
  711. #pt-uls a.uls-trigger {
  712. padding-left: 15px !important;
  713. }
  714. /* Orbit Slider Overrides for MW */
  715. .orbit-container .orbit-slides-container img {
  716. width: 100%;
  717. }
  718. .orbit-bullets {
  719. margin: 0 auto 30px auto !important;
  720. }
  721. /* Block-Grid UL fixes */
  722. ul[class*="block-grid"] {
  723. margin: 0;
  724. }
  725. /* WikiEditor related fixes */
  726. /* lable of toolbar */
  727. .wikiEditor-ui-toolbar .label {
  728. background: transparent;
  729. color: #000;
  730. }
  731. /* selection boxes in toolbar adhere to font-size */
  732. .wikiEditor-ui-toolbar .page-characters div span {
  733. height: 1.75em;
  734. }
  735. /* Visual Editor Fixes */
  736. .ve-activated #content {
  737. margin-top: 4em;
  738. }
  739. .ve-ce-documentNode {
  740. background: #fff;
  741. }
  742. .oo-ui-barToolGroup.oo-ui-widget-enabled>.oo-ui-toolGroup-tools>.oo-ui-tool>.oo-ui-tool-link, .oo-ui-barToolGroup>.oo-ui-toolGroup-tools>.oo-ui-tool.oo-ui-widget-disabled>.oo-ui-tool-link {
  743. display: inline !important;
  744. }
  745. .mw-indicators {
  746. float: right;
  747. line-height: 1.6;
  748. font-size: 0.875em;
  749. position: relative;
  750. margin: -1em .5em 0;
  751. max-height: 30px;
  752. width: auto;
  753. z-index: 1;
  754. }
  755. .mw-indicator {
  756. display: inline-block;
  757. }
  758. body {
  759. line-height: 1.6em;
  760. }
  761. p {
  762. margin-bottom: 0.25em;
  763. }
  764. a.label:hover, a.label:focus {
  765. color: white;
  766. }
  767. a.label.new {
  768. background-color: #d0d0d0;
  769. }
  770. a#actions-button {
  771. float: right;
  772. z-index: 1;
  773. background-color: var(--button-color, #367fa9);
  774. }
  775. /* Hide the page actions button for special pages (cuz there's nothing in it) */
  776. .mw-special-FormEdit a#actions-button, .ns-special a#actions-button {
  777. display: none;
  778. }
  779. /* Hide some rows on form-edit (e.g. a thing's title) */
  780. body.action-formedit .row.hide-on-form-edit {
  781. display: none;
  782. }
  783. /* Move the MediaWiki notification area so it isn't on top of the Action menu */
  784. .mw-notification-area {
  785. margin-top: 2em;
  786. }
  787. /* Also adjust z-index of action menu to force it on top */
  788. #p-cactions #actions {
  789. z-index: 500;
  790. white-space: nowrap;
  791. }
  792. #p-cactions #actions a {
  793. width: 100%;
  794. text-align: left;
  795. }
  796. /* Make sure top bar is even more z-indx! */
  797. #toolbox-dropdown {
  798. z-index: 601;
  799. }
  800. #personal-tools-dropdown {
  801. z-index: 601;
  802. }
  803. /* Dropdown Icon Alignment */
  804. .drop-icon {
  805. display: inline;
  806. margin-right: 4px;
  807. }
  808. td.mw-submit a, .htmlform-tip, #mw-upload-permitted p {
  809. font-size: 90%;
  810. }
  811. alert.label a {
  812. color: pink;
  813. }
  814. code {
  815. font-weight: normal;
  816. color: var(--main-color);
  817. }
  818. small {
  819. font-size: 80%;
  820. }
  821. h4.namespace.label {
  822. font-size: 1rem;
  823. display: inline-block;
  824. margin-bottom: 0.5rem;
  825. }
  826. .label {
  827. padding-bottom: 0.39em;
  828. }
  829. h2 span {
  830. display: inline-block;
  831. }
  832. span.title {
  833. margin-bottom: 0.1em;
  834. }
  835. .title-name {
  836. font-size: 1.3rem;
  837. margin: 0 .5em;
  838. color: #FFF;
  839. line-height: 2em;
  840. }
  841. h3#tagline {
  842. font-style: italic;
  843. font-size: small;
  844. margin-bottom: 0.5em;
  845. color: #6f6f6f;
  846. }
  847. .clear_both {
  848. clear: both;
  849. }
  850. .large-2 strong, .large-2 b {
  851. display: block;
  852. }
  853. .large-2 strong, .large-2 b, table th {
  854. font-size: 0.875em;
  855. color: #4d4d4d;
  856. font-weight: 500;
  857. }
  858. /* LAYOUT */
  859. .row .row {
  860. margin-bottom: 0.9em;
  861. }
  862. div.small-10 .row {
  863. margin: 1em 0 0 0;
  864. }
  865. div.small-9.columns textarea {
  866. margin-bottom: 0.25em;
  867. }
  868. footer.row {
  869. margin-top: 2em;
  870. color: grey;
  871. }
  872. div {
  873. line-height: 1.60em;
  874. }
  875. /* NOTICES, ALERTS, WARNINGS */
  876. div#userloginprompt, p#userloginlink {
  877. font-size: 80%;
  878. }
  879. /* make sure orbit image slider has no margins */
  880. #mw-content-text .orbit-container ul {
  881. margin: 0;
  882. }
  883. footer.row ul {
  884. list-style-type: none;
  885. margin: 0 0 1em 0;
  886. }
  887. footer.row ul.views.columns li {
  888. margin-right: 1em;
  889. }
  890. #footer footer.row ul {
  891. margin: 0;
  892. list-style-type: none;
  893. }
  894. /* Make social footer center need overflow:hidden and other div classes */
  895. .social-footer {
  896. margin: 0 0 1em;
  897. font-size: 90%;
  898. overflow: hidden;
  899. }
  900. /* Hide all text in p elements */
  901. .social-footer p {
  902. display: none;
  903. }
  904. /* Outer wrap */
  905. .social-links {
  906. position: relative;
  907. left: 50%;
  908. float: left;
  909. }
  910. /* addThis container (inner wrap) */
  911. .addthis_horizontal_follow_toolbox {
  912. position: relative;
  913. left: -50%;
  914. float: left;
  915. z-index: 100000;
  916. }
  917. /* end social footer classes */
  918. #footer-left {
  919. font-size: 90%;
  920. text-align: left;
  921. }
  922. #footer-right-icons {
  923. font-size: 85%;
  924. text-align: center;
  925. }
  926. #footer-right-icons li {
  927. display: inline-block;
  928. text-align: center;
  929. margin: 0 0 .5em .5em;
  930. }
  931. li#footer-privacy {
  932. float: left;
  933. margin-right: 2em;
  934. }
  935. li#footer-about {
  936. float: left;
  937. margin-right: 2em;
  938. }
  939. li#footer-disclaimer {
  940. float: left;
  941. margin-right: 2em;
  942. }
  943. .text-center #footer-left li {
  944. float: none;
  945. margin: 0;
  946. }
  947. .text-center #footer-left {
  948. text-align: center;
  949. }
  950. @media only screen and (max-width: 641px) {
  951. #footer-left {
  952. font-size: 85%;
  953. text-align: center;
  954. }
  955. #footer-right-icons {
  956. font-size: 80%;
  957. }
  958. li#footer-privacy {
  959. float: none;
  960. margin-right: 0;
  961. }
  962. li#footer-about {
  963. float: none;
  964. margin-right: 0;
  965. }
  966. li#footer-disclaimer {
  967. float: none;
  968. margin-right: 0;
  969. }
  970. }
  971. .columns ul.special li {
  972. float: none;
  973. width: 100%;
  974. }
  975. .columns div#uploadtext ul {
  976. list-style-type: disc;
  977. }
  978. .columns div#uploadtext ul li {
  979. float: none;
  980. width: 95%;
  981. margin-left: 2em;
  982. }
  983. #catlinks {
  984. border: 1px solid #aaa;
  985. padding: 0.25rem;
  986. }
  987. #catlinks .label {
  988. font-size: .9rem;
  989. }
  990. #catlinks a.label.new {
  991. background-color: #BA0F2A;
  992. }
  993. .catlinks li {
  994. border-left: none;
  995. }
  996. .mw-specialpages-table td ul.columns li {
  997. width: 50%;
  998. }
  999. /*#mw-content-text .columns li {float:none;width:90%;}*/
  1000. footer.row ul.columns li {
  1001. display: inline;
  1002. float: none;
  1003. }
  1004. .columns #mw-normal-catlinks ul li {
  1005. float: none;
  1006. width: auto;
  1007. }
  1008. #mw-normal-catlinks a.new {
  1009. color: white;
  1010. }
  1011. ul.vcard {
  1012. padding: 0.5em 0.5em 0.55em 0.5em;
  1013. }
  1014. /* HEADERS */
  1015. h1, h2, h3, h4, h5, h6 {
  1016. margin-top: .75em;
  1017. line-height: 1em;
  1018. font-family: inherit;
  1019. }
  1020. .page-Special_SpecialPages h2 {
  1021. margin-bottom: 0.5em;
  1022. }
  1023. .editsection {
  1024. font-weight: normal;
  1025. font-size: 0.4em;
  1026. }
  1027. p.title {
  1028. padding: 0.9375em;
  1029. }
  1030. /* TABLES */
  1031. .mw-content-ltr table#toc {
  1032. float: right;
  1033. width: auto;
  1034. }
  1035. .mw-content-rtl table#toc {
  1036. float: left;
  1037. width: auto;
  1038. }
  1039. table.formtable {
  1040. border: none;
  1041. }
  1042. table td[align="right"] {
  1043. text-align: right;
  1044. }
  1045. /* TURN OFF TABLE STRIPING FOR EDITFORMS */
  1046. table.formedit tr.even, table.formedit tr.alt, table.formedit tr:nth-of-type(even) {
  1047. background: transparent;
  1048. }
  1049. table {
  1050. width: 100%;
  1051. }
  1052. td.mw-label {
  1053. width: 20%;
  1054. }
  1055. td.mw-input {
  1056. width: 80%;
  1057. }
  1058. thead tr th {
  1059. cursor: pointer;
  1060. }
  1061. table.formtable th {
  1062. text-align: right !important;
  1063. }
  1064. td.smwpropname, th.smwpropname, td.smwspecname {
  1065. text-align: left;
  1066. }
  1067. table tbody tr td, table tr td {
  1068. line-height: 1.6em;
  1069. }
  1070. table.wikitable {
  1071. margin: 0em 0 1em 0;
  1072. }
  1073. table.wikitable>tr>th, table.wikitable>*>tr>th {
  1074. text-align: left;
  1075. }
  1076. table.wikitable>tr>th, table.wikitable>tr>td, table.wikitable>*>tr>th, table.wikitable>*>tr>td {
  1077. border: 3px #fff solid;
  1078. padding: 0.6em;
  1079. }
  1080. /* FORMS, INPUTS, FIELDSETS */
  1081. .multipleTemplateInstance {
  1082. background-color: white !important;
  1083. border: none !important;
  1084. border-bottom: 1px dashed #999999 !important;
  1085. }
  1086. .multipleTemplateInstance table {
  1087. border: none !important;
  1088. }
  1089. .multipleTemplateAdder {
  1090. font-size: 0.9em;
  1091. padding: 0.4125em 0.5em 0.55em 0.5em;
  1092. }
  1093. .novalue {
  1094. color: #999999;
  1095. font-style: italic;
  1096. font-size: small;
  1097. }
  1098. input[type="file"], input[type="checkbox"], input[type="radio"], select {
  1099. padding: 5px;
  1100. }
  1101. input[type="file"], select {
  1102. padding: 5px;
  1103. border: 1px solid #cccccc;
  1104. }
  1105. .inputSpan select.createboxInput, .dateInput select.monthInput, input.hourInput, input.minuteInput, input.secondInput, input.dayInput, input.yearInput, input[name="*[* date][hour]"], input[name="*[* date][minute]"], input[name="*[* date][second]"] {
  1106. width: auto;
  1107. margin-right: 1em;
  1108. }
  1109. /*
  1110. .inputSpan input.createboxInput {
  1111. width: 100%;
  1112. }
  1113. */
  1114. .inputSpan button, .inputSpan .button {
  1115. margin: -4px 0 0 0;
  1116. padding: 0.37em 0.75em 0.6em 0.70em;
  1117. }
  1118. .ms-selectable input[type="text"] {
  1119. width: 100%;
  1120. }
  1121. button.ui-button-icon-only {
  1122. height: 2.24em !important;
  1123. }
  1124. select {
  1125. width: auto;
  1126. }
  1127. input[type="checkbox"].createboxInput {
  1128. width: auto;
  1129. }
  1130. label.checkboxLabel {
  1131. margin-right: 0.5em;
  1132. }
  1133. .edit_with_form {
  1134. margin: -2em 0 0 0;
  1135. float: right;
  1136. }
  1137. input[type="radio"], input[type="checkbox"] {
  1138. display: inline;
  1139. }
  1140. input[type='file'] {
  1141. margin-top: 0.4em;
  1142. }
  1143. input:not([type]), textarea, p.meta {
  1144. margin-bottom: 4px;
  1145. }
  1146. label {
  1147. display: inline;
  1148. font-weight: normal;
  1149. }
  1150. .mw-input label {
  1151. font-weight: normal;
  1152. }
  1153. #mw-content-text ul.SFI_timepicker_hours, #mw-content-text ul.SFI_timepicker_minutes {
  1154. list-style-type: none;
  1155. }
  1156. #mw-content-text ul.SFI_timepicker_hours li {
  1157. margin: 2px 2px;
  1158. padding: 4px;
  1159. }
  1160. .sminput.sminput-googlemaps3 p button {
  1161. padding-top: 0.35em;
  1162. padding-bottom: 0.6em;
  1163. }
  1164. li label.inline {
  1165. margin-bottom: 2px;
  1166. padding: 0;
  1167. }
  1168. button, .button {
  1169. margin: 0.5em 0;
  1170. padding: 0.3em 0.75em 0.4em 0.75em;
  1171. background-color: var(--button-color, #367fa9);
  1172. font-family: inherit;
  1173. }
  1174. .top-bar-logo {
  1175. max-width: 100%;
  1176. height: auto;
  1177. max-height: 2.8125rem;
  1178. /* Important! max-height must not be higher than line-height */
  1179. display: inline-block;
  1180. vertical-align: middle;
  1181. }
  1182. .top-bar .button.search {
  1183. top: 0px;
  1184. }
  1185. .top-bar .button, .top-bar button {
  1186. padding-top: .35rem;
  1187. padding-bottom: .35rem;
  1188. }
  1189. .top-bar .button.search {
  1190. margin-left: 10px;
  1191. }
  1192. .top-bar input {
  1193. top: 0px;
  1194. }
  1195. @media only screen and (min-width: 641px) {
  1196. .top-bar .button.search {
  1197. top: 0px;
  1198. }
  1199. .top-bar .button.search {
  1200. margin-left: -4px;
  1201. }
  1202. .top-bar {
  1203. height: auto;
  1204. }
  1205. }
  1206. .top-bar-section .dropdown {
  1207. z-index: 600;
  1208. }
  1209. .top-bar-section ul li > a {
  1210. font-family: inherit;
  1211. }
  1212. input[type="submit"] {
  1213. background-color: #5da423;
  1214. border-color: #457a1a;
  1215. color: white;
  1216. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  1217. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  1218. -webkit-transition: background-color 300ms ease-out;
  1219. -moz-transition: background-color 300ms ease-out;
  1220. transition: background-color 300ms ease-out;
  1221. }
  1222. input#wpPreview {
  1223. background-color: #e9e9e9;
  1224. border-color: #d0d0d0;
  1225. color: black;
  1226. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  1227. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;
  1228. -webkit-transition: background-color 300ms ease-out;
  1229. -moz-transition: background-color 300ms ease-out;
  1230. transition: background-color 300ms ease-out;
  1231. }
  1232. .editButtons input[type="submit"] {
  1233. display: inline-block;
  1234. }
  1235. legend {
  1236. font-size: 0.875em;
  1237. color: #4d4d4d;
  1238. cursor: pointer;
  1239. display: block;
  1240. font-weight: 500;
  1241. }
  1242. fieldset {
  1243. line-height: 1.6em;
  1244. padding: 0 1.25em 1em 1.25em;
  1245. margin-top: 0;
  1246. }
  1247. span.smwbuiltin, span.smwttactiveinline span.smwbuiltin {
  1248. font-style: normal;
  1249. }
  1250. /* MW still generates a label column for checkboxes, this minimizes is */
  1251. div.mw-htmlform-field-HTMLCheckField div.mw-label {
  1252. height: 0;
  1253. }
  1254. .vertical-divider {
  1255. width: 100%;
  1256. display: block;
  1257. background: #1A1A1A;
  1258. height: 1px;
  1259. }
  1260. .top-bar-section li.active:not(.has-form) a:not(.button), .top-bar-section li.active:not(.has-form) a:hover:not(.button) {
  1261. background: inherit;
  1262. }
  1263. .top-bar input {
  1264. width: auto;
  1265. display: inline;
  1266. }
  1267. /* Add improved styling for the Echo extension */
  1268. #echo-notifications {
  1269. float: right;
  1270. display: inline-block;
  1271. margin: -1em 1em .5em;
  1272. position: relative;
  1273. z-index: 500;
  1274. max-height: 30px;
  1275. }
  1276. #echo-notifications-notice,
  1277. #echo-notifications-alerts,
  1278. #echo-notifications-messages,
  1279. #echo-notifications {
  1280. display: inline-block;
  1281. }
  1282. #pt-notifications-notice .mw-echo-notifications-badge,
  1283. #pt-notifications-alert .mw-echo-notifications-badge,
  1284. #pt-notifications-message .mw-echo-notifications-badge {
  1285. background-size: 1.4em !important;
  1286. font-size: 1.1em;
  1287. color: transparent;
  1288. filter: invert(15%);
  1289. height: auto !important;
  1290. display: block !important;
  1291. }
  1292. #echo-notifications li {
  1293. list-style: none;
  1294. }
  1295. #echo-notifications-messages {
  1296. float: right;
  1297. }
  1298. #echo-notifications-alerts {
  1299. float: right;
  1300. }
  1301. #pt-notifications-alert .mw-echo-unseen-notifications, #pt-notifications-message .mw-echo-unseen-notifications {
  1302. color: #0645ad !important;
  1303. }
  1304. #echo-notifications li {
  1305. margin: 0 0 0 1em;
  1306. }
  1307. /* Make Echo extension more mobile friendly on small widths */
  1308. @media only screen and (max-width: 450px) {
  1309. .oo-ui-popupWidget-popup {
  1310. width: auto !important;
  1311. position: relative !important;
  1312. margin-left: -260px !important;
  1313. font-size: 75% !important;
  1314. }
  1315. .oo-ui-clippableElement-clippable.oo-ui-popupWidget-body {
  1316. width: 100% !important;
  1317. }
  1318. }
  1319. /*Fix ULS CSS */
  1320. #pt-uls a.uls-trigger {
  1321. padding-left: 15px !important;
  1322. }
  1323. /* Orbit Slider Overrides for MW */
  1324. .orbit-container .orbit-slides-container img {
  1325. width: 100%;
  1326. }
  1327. .orbit-bullets {
  1328. margin: 0 auto 30px auto !important;
  1329. }
  1330. /* Block-Grid UL fixes */
  1331. ul[class*="block-grid"] {
  1332. margin: 0;
  1333. }
  1334. /* WikiEditor related fixes */
  1335. /* lable of toolbar */
  1336. .wikiEditor-ui-toolbar .label {
  1337. background: transparent;
  1338. color: #000;
  1339. }
  1340. /* selection boxes in toolbar adhere to font-size */
  1341. .wikiEditor-ui-toolbar .page-characters div span {
  1342. height: 1.75em;
  1343. }
  1344. /* backound of controls adhere to #p-cactions */
  1345. .wikiEditor-ui-controls {
  1346. background-color: #f6f6f6;
  1347. }
  1348. /* background of buttions adhere to #p-cactions*/
  1349. .wikiEditor-ui-buttons {
  1350. background-color: #f6f6f6;
  1351. }
  1352. /* Visual Editor Fixes */
  1353. .ve-activated #content {
  1354. margin-top: 4em;
  1355. }
  1356. .ve-ce-documentNode {
  1357. background: #fff;
  1358. }
  1359. .oo-ui-barToolGroup.oo-ui-widget-enabled>.oo-ui-toolGroup-tools>.oo-ui-tool>.oo-ui-tool-link, .oo-ui-barToolGroup>.oo-ui-toolGroup-tools>.oo-ui-tool.oo-ui-widget-disabled>.oo-ui-tool-link {
  1360. display: inline !important;
  1361. }
  1362. .ve-activated #catlinks {
  1363. display:none;
  1364. }
  1365. .ve-activated #firstHeading {
  1366. border-bottom: 1px solid #ccc;
  1367. padding: 0 0 5px;
  1368. }
  1369. .ve-activated [class*="mw-content-"] {
  1370. padding: 0;
  1371. }
  1372. /* Page indicators */
  1373. .mw-indicators {
  1374. float: right;
  1375. line-height: 1.6;
  1376. font-size: 0.875em;
  1377. position: relative;
  1378. margin: -1em .5em .5em 1em;
  1379. max-height: 30px;
  1380. width: auto;
  1381. z-index: 1;
  1382. }
  1383. .mw-indicator {
  1384. display: inline-block;
  1385. }
  1386. /* Preferences Fixes */
  1387. #preftoc li a {
  1388. color: white;
  1389. padding: .25em .5em;
  1390. }
  1391. #preftoc li a:hover {
  1392. background: aqua;
  1393. color: white;
  1394. }
  1395. #preftoc li {
  1396. margin: 2px;
  1397. display: inline-block;
  1398. float: none;
  1399. padding: 1px;
  1400. position: relative;
  1401. list-style-type: none;
  1402. list-style-image: none;
  1403. z-index: 3;
  1404. border-radius: 3px;
  1405. font-size: .85em;
  1406. background: #142849;
  1407. border: 0;
  1408. color: white;
  1409. }
  1410. #preftoc li a {
  1411. color: white;
  1412. }
  1413. #preftoc li a:hover {
  1414. background: #2ba6cb;
  1415. }
  1416. ul#preftoc {
  1417. margin: auto;
  1418. text-align: center;
  1419. }
  1420. #preftoc>li.selected {
  1421. background: #2C58A1;
  1422. box-shadow: 2px 2px 5px 2px rgba(50, 138, 64, 0.54);
  1423. }
  1424. #preftoc li.selected a {
  1425. cursor: default;
  1426. text-decoration: none;
  1427. }
  1428. #preferences table {
  1429. min-width: 100%;
  1430. }
  1431. #preftoc {
  1432. margin: 0;
  1433. padding: 0;
  1434. width: 100%;
  1435. clear: both;
  1436. }
  1437. #preftoc a:active {
  1438. display: block;
  1439. color: #000;
  1440. padding: 0 .7em;
  1441. position: relative;
  1442. text-decoration: none;
  1443. }
  1444. #preftoc li.selected a {
  1445. cursor: default;
  1446. text-decoration: none;
  1447. }
  1448. #preferences {
  1449. margin: 0;
  1450. clear: both;
  1451. background-color: #FFF;
  1452. border: none;
  1453. }
  1454. .prefsection {
  1455. border: none;
  1456. padding: 0;
  1457. margin: 0;
  1458. }
  1459. .prefsection legend {
  1460. font-weight: bold;
  1461. }
  1462. .prefsection table, .prefsection legend {
  1463. background-color: #F9F9F9;
  1464. }
  1465. #preferences legend.mainLegend {
  1466. display: none;
  1467. }
  1468. #preferences fieldset legend {
  1469. font-weight: bold;
  1470. padding: 0 .25em;
  1471. margin: 0;
  1472. margin: 0 .25em 0 1em;
  1473. background: #FFF;
  1474. }
  1475. td.htmlform-tip {
  1476. font-size: .8em;
  1477. padding: .2em 2em;
  1478. color: #666;
  1479. border: 1px solid #eeeffe;
  1480. background: #eeeffe;
  1481. }
  1482. .preferences-login {
  1483. clear: both;
  1484. margin-bottom: 1.5em;
  1485. }
  1486. .prefcache {
  1487. font-size: 90%;
  1488. margin-top: 1em;
  1489. }