admin.css 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207
  1. /* Experimental code to hide header content in admin. Will not be used in deafult.
  2. /* Not checked since main theme was rewritten for the new look. Beware.
  3. /* Commenting out the entire block sets admin back to the default header.
  4. ------------------------------------------------------- */
  5. /*
  6. body.action_admin #header {
  7. padding: 2px 2px 0 2px;
  8. }
  9. body.action_admin #header .frame {
  10. padding: 0 0 50px 0;
  11. background: url(../images/theme/bars.png) 0 -560px repeat-x;
  12. }
  13. body.action_admin #top_section, body.action_admin #upper_section {
  14. display: none;
  15. }
  16. body.action_admin #upper_wrap {
  17. background: none;
  18. padding: 4px 8px 0 8px;
  19. }
  20. body.action_admin #main_content_section {
  21. margin: -45px 0 0 0;
  22. }
  23. body.action_admin .navigate_section ul {
  24. padding: 5px 8px;
  25. background: #fff url(../images/theme/lower_section.png) 0 100% repeat-x;
  26. border: 1px solid #b8b8b8;
  27. border-radius: 5px;
  28. box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  29. }
  30. body.action_admin .navigate_section ul li.unread_links {
  31. display: none;
  32. }
  33. body.action_admin .navigate_section ul li a {
  34. font-weight: bold;
  35. }*/
  36. /* End experimental header hiding stuffz. */
  37. /* Common admin center classes.
  38. ------------------------------------------------------- */
  39. /* [WIP]
  40. /* The CSS targeting for all this gets a bit convoluted and requires a good clean up.
  41. /* It's left over from when I started theming admin independently over a Curve forum.
  42. /* Can be simplified quite a lot before production builds. */
  43. /* Re-style default cat bars to get rid of header bar mania. */
  44. #manage_maintenance .cat_bar, #core_features .cat_bar, #support_credits .cat_bar {
  45. border: none;
  46. border-top: 1px solid #bbb;
  47. }
  48. #manage_maintenance .cat_bar .catbg, #manage_boards .cat_bar .catbg, #core_features .cat_bar .catbg,
  49. #support_credits .cat_bar .catbg, .generic_list_wrapper .cat_bar .catbg {
  50. border: none;
  51. border-top: 1px solid #fff;
  52. text-shadow: none;
  53. }
  54. #admin_main_section .cat_bar:first-child, #admin_main_section .cat_bar:first-child h3.catbg,
  55. #support_credits .cat_bar, #support_credits .cat_bar:first-child,
  56. #support_credits .cat_bar h3.catbg, #support_credits .cat_bar:first-child h3.catbg,
  57. #manage_maintenance .cat_bar, #manage_maintenance .cat_bar:first-child,
  58. #manage_maintenance .cat_bar h3.catbg, #manage_maintenance .cat_bar:first-child h3.catbg {
  59. color: #444;
  60. font-size: 1.1em;
  61. background: none;
  62. border-radius: 0;
  63. text-shadow: none;
  64. }
  65. #admin_main_section .cat_bar:first-child, #admin_main_section .cat_bar:first-child h3.catbg,
  66. #support_credits .cat_bar:first-child, #support_credits .cat_bar:first-child h3.catbg,
  67. #manage_maintenance .cat_bar:first-child, #manage_maintenance .cat_bar:first-child h3.catbg {
  68. border: none;
  69. }
  70. /* Special styling for admin descriptions. */
  71. .action_admin p.description, .action_admin .information {
  72. overflow: auto;
  73. background: none;
  74. border: 1px solid #ddd;
  75. border-top: none;
  76. border-radius: 0 0 7px 7px;
  77. margin: 0 0 0 0;
  78. padding: 12px 9px 8px 9px;
  79. }
  80. .action_admin p.description a {
  81. font-weight: bold;
  82. }
  83. .action_admin p.description img {
  84. vertical-align: middle;
  85. }
  86. .action_admin .generic_list_wrapper .information {
  87. background: #fff url(../images/theme/lower_section.png) 0 100% repeat-x;
  88. margin: 8px 0;
  89. padding: 4px 12px 2px 12px;
  90. border: 1px solid #ccc;
  91. border-radius: 2px;
  92. box-shadow: 0 2px 2px rgba(0,0,0,0.1);
  93. }
  94. .action_admin .generic_list_wrapper .information div {
  95. background: none;
  96. }
  97. .information a {
  98. font-weight: bold;
  99. }
  100. .action_admin .generic_list {
  101. overflow: auto;
  102. }
  103. #admin_content .windowbg, #admin_content .windowbg2 {
  104. margin-bottom: 5px;
  105. }
  106. #admincenter .content {
  107. padding: 12px;
  108. }
  109. /* Secondary menu corrections. */
  110. .action_admin #adm_submenus {
  111. margin: 0 0 -18px 0;
  112. padding: 10px 15px 0 15px;
  113. overflow: hidden;
  114. }
  115. /* A general admin wrapper class. */
  116. #admin_main_section, div.quick_tasks,
  117. #support_credits, #admin_newsletters,
  118. #core_features, #generate_reports_type,
  119. #groupForm, #mailqueue_stats, #manage_maintenance,
  120. #new_group, #view_group, #admin_form_wrapper, .action_admin .generic_list_wrapper{
  121. background: #f0f4f7;
  122. margin: 12px 0 0 0;
  123. padding: 8px 8px 16px 8px;
  124. border: 1px solid #ccc;
  125. border-radius: 7px;
  126. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  127. overflow: auto;
  128. }
  129. div.quick_tasks {
  130. margin: -8px 0 0 0;
  131. }
  132. #admin_form_wrapper div.windowbg, #support_credits div.windowbg,
  133. #generate_reports_type div.windowbg, #new_group div.windowbg,
  134. #view_group div.windowbg, #admin_newsletters .windowbg {
  135. background: none;
  136. padding: 0;
  137. margin: 0 4px;
  138. }
  139. #mailqueue_stats {
  140. padding: 8px 8px 0 8px;
  141. }
  142. #mailqueue_stats .windowbg {
  143. background: none;
  144. padding: 0;
  145. }
  146. #mailqueue_stats .windowbg .content {
  147. padding: 12px 9px 0 9px;
  148. }
  149. #admin_form_wrapper div.cat_bar:first-child, #admin_newsletters div.cat_bar:first-child,
  150. #generate_reports_type div.cat_bar:first-child, #groupForm div.cat_bar:first-child,
  151. #admin_form_wrapper div.title_bar, #mailqueue_stats div.cat_bar:first-child,
  152. #new_group div.cat_bar:first-child, #view_group div.cat_bar, #view_group div.cat_bar:first-child {
  153. background: none;
  154. border: none;
  155. border-bottom: 1px solid #fff;
  156. box-shadow: none;
  157. }
  158. #admin_form_wrapper div.cat_bar:first-child h3.catbg, #admin_newsletters div.cat_bar:first-child h3.catbg,
  159. #generate_reports_type div.cat_bar:first-child h3.catbg, #groupForm div.cat_bar:first-child h3.catbg,
  160. #admin_form_wrapper h3.titlebg, #mailqueue_stats div.cat_bar:first-child h3.catbg,
  161. #new_group div.cat_bar:first-child h3.catbg, #view_group div.cat_bar h3.catbg, #view_group div.cat_bar:first-child h3.catbg {
  162. color: #444;
  163. text-shadow: none;
  164. padding: 3px 1px 5px 1px;
  165. margin: 0;
  166. border-bottom: 1px solid #bbb;
  167. }
  168. #admin_form_wrapper div.title_bar {
  169. background: #fff url(../images/theme/lower_section.png) 0 0 repeat-x;
  170. border: 1px solid #ccc;
  171. border-radius: 2px 2px 0 0;
  172. margin: 0;
  173. }
  174. .action_admin .generic_list_wrapper .title_bar {
  175. background: none;
  176. border-bottom: 1px solid #fff;
  177. }
  178. .action_admin .generic_list_wrapper .titlebg {
  179. border-bottom: 1px solid #bbb;
  180. }
  181. #admin_form_wrapper h3.titlebg {
  182. color: #666;
  183. border-bottom: none;
  184. padding: 8px 6px 5px 6px;
  185. }
  186. #view_group .title_bar {
  187. background: none;
  188. border-bottom: none;
  189. border-top: 1px solid #bbb;
  190. margin: -12px 0;
  191. }
  192. #view_group .titlebg {
  193. border-top: 1px solid #fff;
  194. border-bottom: none;
  195. }
  196. #view_group .table_grid {
  197. margin: 4px 0 8px 0;
  198. }
  199. .action_admin .table_grid th, .action_admin .table_grid .first_th, .action_admin .table_grid .last_th {
  200. border-radius: 0;
  201. border-top: 2px solid #ff9400;
  202. border-bottom: 2px solid #bf6900;
  203. padding: 6px 6px 5px 6px;
  204. background: #fff;
  205. color: #666;
  206. }
  207. .action_admin .table_grid tr.catbg th a:link {
  208. color: #666;
  209. }
  210. .action_admin .table_grid .first_th, .action_admin .table_grid td:first-child {
  211. border-left: 1px solid #ccc;
  212. }
  213. .action_admin .table_grid .last_th, .action_admin .table_grid td {
  214. border-right: 1px solid #ccc;
  215. }
  216. .action_admin .table_grid td {
  217. border-bottom: 1px solid #ccc;
  218. }
  219. .action_admin .table_grid tr:nth-child(even) td {
  220. background: #fdfdfd;
  221. }
  222. .action_admin .table_grid tr:nth-child(odd) td {
  223. background: #f8f8f8;
  224. }
  225. /*-------------------------------------------*/
  226. /* Newsletters screen.
  227. ---------------------------------------------*/
  228. #admin_newsletters .information {
  229. background: #fff url(../images/theme/lower_section.png) 0 50% repeat-x;
  230. margin: 8px 0;
  231. padding: 8px 12px 6px 12px;
  232. border: 1px solid #ccc;
  233. border-radius: 2px;
  234. box-shadow: 0 2px 2px rgba(0,0,0,0.1);
  235. }
  236. #advanced_panel_header {
  237. margin-bottom: 8px;
  238. background: #fff url(../images/theme/lower_section.png) 0 100% repeat-x;
  239. box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  240. border: 1px solid #ccc;
  241. border-radius: 2px;
  242. }
  243. #advanced_panel_header a {
  244. color: #444;
  245. }
  246. /*-------------------------------------------*/
  247. .action_admin .generic_list .flow_auto {
  248. padding: 4px 2px;
  249. }
  250. h3.titlebg form {
  251. font-size: 80%;
  252. }
  253. .windowbg.nopadding {
  254. margin: 4px 0 0 0;
  255. padding: 0;
  256. }
  257. .windowbg ol {
  258. margin-top: 0;
  259. margin-bottom: 0;
  260. }
  261. a.help .icon {
  262. margin: 0 0 0 0;
  263. padding: 0 4px 0 0;
  264. }
  265. .catbg a.help .icon {
  266. margin: -4px 0 0 0;
  267. }
  268. .table_caption, tr.table_caption td {
  269. color: #000;
  270. font-size: 10px;
  271. font-weight: bold;
  272. }
  273. .additional_row div.floatleft {
  274. padding: 0 10px;
  275. }
  276. fieldset {
  277. margin-bottom: 6px;
  278. border: 1px solid #cacdd3;
  279. padding: 6px;
  280. }
  281. fieldset dl {
  282. margin: 0;
  283. }
  284. legend {
  285. font-weight: bold;
  286. color: #000;
  287. }
  288. /* Styles for the admin home screen.
  289. ------------------------------------------------------- */
  290. /* Admin quick search bar, and results page. */
  291. h3.catbg #quick_search form {
  292. padding-top: 2px;
  293. font-size: 0.66em;
  294. }
  295. h3.catbg #quick_search form input, h3.catbg #quick_search form select, h3.catbg #quick_search form .button_submit {
  296. margin: 0 3px;
  297. padding: 4px 3px 3px 3px;
  298. border-radius: 4px;
  299. border: 1px solid #777;
  300. vertical-align: top;
  301. }
  302. h3.catbg #quick_search form select {
  303. font-size: 1.01em;
  304. margin: 0;
  305. padding: 2px;
  306. }
  307. h3.catbg #quick_search form select option {
  308. padding: 2px 4px;
  309. }
  310. h3.catbg #quick_search form .button_submit {
  311. font-weight: bold;
  312. background: #fff url(../images/theme/lower_section.png) 0 100% repeat-x;
  313. padding: 3px 6px 2px 6px;
  314. }
  315. h3.catbg #quick_search form .button_submit:hover {
  316. background: #fff;
  317. }
  318. /* Browser tweaks. */
  319. body#chrome #quick_search form input {
  320. padding: 4px 3px;
  321. }
  322. body#chrome #quick_search .button_submit, body#ie #quick_search .button_submit, body#opera #quick_search .button_submit {
  323. margin: 0 5px;
  324. padding: 5px 9px 4px 9px;
  325. }
  326. body#chrome #quick_search .button_submit {
  327. margin: -26px 5px 0 5px;
  328. }
  329. /* The welcome thingy. */
  330. #admincenter .roundframe {
  331. background: none;
  332. border: none;
  333. box-shadow: none;
  334. margin: 0;
  335. padding: 0;
  336. overflow: visible;
  337. }
  338. #welcome {
  339. border: 1px solid #ddd;
  340. border-top: none;
  341. border-radius: 0 0 7px 7px;
  342. font-size: 0.9em;
  343. padding: 12px 9px 8px 9px;
  344. }
  345. #welcome a {
  346. font-weight: bold;
  347. }
  348. #welcome img {
  349. vertical-align: middle;
  350. }
  351. .search_results {
  352. margin: 0 -6px;
  353. }
  354. .search_results li {
  355. margin: 0;
  356. padding: 5px 0;
  357. overflow: auto;
  358. line-height: 1.7em;
  359. border-bottom: double #ccc;
  360. }
  361. .search_results li a strong {
  362. color: #346;
  363. }
  364. .search_results li p {
  365. padding: 0 20px;
  366. line-height: 1.7em;
  367. }
  368. /* Cleaned this up a bit for less clutter.
  369. /* Admin and moderation could generally do with a clean up everywhere.
  370. /* Live news from smf.org and support information. */
  371. #admin_main_section {
  372. margin: 12px 0 0 0;
  373. padding: 8px 12px 4px 12px;
  374. border-radius: 7px 7px 0 0;
  375. border-bottom: none;
  376. }
  377. #admin_main_section .cat_bar {
  378. background: none;
  379. }
  380. #admin_main_section .catbg, #admin_main_section .catbg a {
  381. color: #444;
  382. max-height: 1.5em;
  383. overflow: hidden;
  384. }
  385. #live_news, #supportVersionsTable {
  386. width: 70%;
  387. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  388. }
  389. #supportVersionsTable {
  390. width: 30%;
  391. padding-left: 6px;
  392. }
  393. #admin_main_section .windowbg {
  394. padding: 6px 0;
  395. border: 1px solid #ccc;
  396. border-top: 1px solid #bbb;
  397. border-bottom: 1px solid #ddd;
  398. border-radius: 0;
  399. background: #fff url(../images/theme/upper_section.png) 0 -50px repeat-x;
  400. box-shadow: 0 2px 2px rgba(255,255,255,0.5), 0 -1px 2px rgba(0,0,0,0.1);
  401. height: 12em;
  402. overflow: auto;
  403. }
  404. #live_news div.content, #supportVersionsTable div.content {
  405. padding: 0;
  406. font-size: 0.9em;
  407. }
  408. #supportVersionsTable div.content {
  409. padding: 0 8px;
  410. }
  411. #live_news div.content dl {
  412. padding: 0;
  413. color: #111;
  414. }
  415. #smfAnnouncements dt {
  416. padding: 4px 6px 2px 6px;
  417. border-top: 1px solid #bf6900;
  418. }
  419. #smfAnnouncements dt a {
  420. color: #bf6900;
  421. font-weight: bold;
  422. display: block;
  423. }
  424. #smfAnnouncements dd {
  425. margin: 0;
  426. padding: 6px 12px;
  427. border-top: double #ddd;
  428. }
  429. /* The update warning. */
  430. #update_section {
  431. margin: 6px 0;
  432. }
  433. /* Links to handy sections of admin.
  434. ----------------------------------*/
  435. /* The <li>'s here have been set to a height in em with hidden overflow.
  436. /* Yes, this will clip the blurb when using very large font sizes on a narrowish screen.
  437. /* However, more than enough content is still available for clarity,
  438. /* and the advantage is that a clean layout is always maintained.
  439. /* The <li>'s could be set to auto overflow instead, but that just clutters things up with scrollbars.
  440. /* Scrollbars here look worse, take up space, and don't really add anything useful in this context. */
  441. div.quick_tasks {
  442. border-radius: 0 0 7px 7px;
  443. border-top: none;
  444. box-shadow: none;
  445. padding: 0 0 16px 0;
  446. }
  447. #quick_tasks {
  448. border-top: 1px solid #bbb;
  449. border-bottom: 1px solid #fff;
  450. }
  451. #quick_tasks li {
  452. list-style: none;
  453. padding: 10px 6px 10px 6px;
  454. border-top: 1px solid #fff;
  455. border-bottom: 1px solid #bbb;
  456. float: left;
  457. width: 50%;
  458. height: 6em;
  459. overflow: hidden;
  460. }
  461. #quick_tasks li a {
  462. line-height: 1.6em;
  463. }
  464. .home_image {
  465. float: left;
  466. margin: 2px 10px;
  467. }
  468. #quick_tasks li span {
  469. display: block;
  470. margin: 0 0 0 70px;
  471. }
  472. /* Styles for the support and credits page.
  473. /* Hey, people might actually want to put their names on it now!
  474. /* Only a couple of trivial markup hacks that wont break any mods or themes.
  475. /* The older I get, the more devious I get. :D
  476. /* Nobody ever themes admin anyway. That's why it looked like crap.
  477. -----------------------------------------------------------------*/
  478. #support_credits {
  479. position: relative;
  480. padding: 6px 12px 12px 12px;
  481. }
  482. #support_credits h3.catbg, #support_credits .cat_bar:first-child h3.catbg {
  483. padding: 12px 6px 6px 6px;
  484. }
  485. #support_resources {
  486. margin: 16px 0 -24px 0;
  487. }
  488. #credits_logo {
  489. position: absolute;
  490. right: 10px;
  491. top: 9px;
  492. }
  493. #support_credits .content {
  494. padding: 0 18px;
  495. line-height: 1.6em;
  496. }
  497. #support_credits .content p {
  498. margin: 12px 0 0 0;
  499. padding: 0;
  500. }
  501. #support_credits a {
  502. border-bottom: 1px solid #d2d2d2;
  503. }
  504. #support_credits a:hover {
  505. color: #00163d;
  506. text-decoration: none;
  507. border-bottom: 1px solid #556f82;
  508. }
  509. #support_credits img.icon {
  510. vertical-align: middle;
  511. }
  512. #support_credits .catbg a.help, #support_credits .catbg a.help:hover {
  513. border-bottom: none;
  514. }
  515. #latestSupport{
  516. padding: 0 25px 15px 25px;
  517. }
  518. #credits_sections {
  519. margin: 0 0 -24px 0;
  520. }
  521. #support_credits dl {
  522. padding: 0 6px;
  523. }
  524. #support_credits dt {
  525. float: left;
  526. padding: 6px 0.8em 0 0;
  527. text-indent: -4px;
  528. }
  529. #support_credits dd {
  530. padding: 6px 0;
  531. }
  532. /* Styles for the core features screen.
  533. /* Cleaned up a bit for clarity.
  534. ------------------------------------------------------- */
  535. #core_features {
  536. padding: 20px 0;
  537. }
  538. #core_features hr {
  539. padding: 0;
  540. margin: 4px 0 12px 0;
  541. }
  542. #core_features .content {
  543. padding: 0 12px;
  544. overflow: auto;
  545. }
  546. /* Keep your enemies close, and your submit buttons if your screen is huge. */
  547. /* Speaking of which, I can't see the last submit that is in the markup. */
  548. /* Still works without it if you reload the page, but rather odd that it's hiding. */
  549. .features_image {
  550. float: left;
  551. margin: 0 12px 0 0;
  552. }
  553. .features_switch {
  554. float: right;
  555. }
  556. .features h4 {
  557. padding: 0;
  558. margin-top: 6px;
  559. font-size: 1.1em;
  560. overflow: hidden;
  561. white-space: pre;
  562. text-overflow: ellipsis;
  563. min-height: 1.6em;
  564. max-height: 1.6em;
  565. }
  566. .features p {
  567. margin: 0 6px 0 105px;
  568. padding: 0;
  569. min-height: 56px;
  570. }
  571. /* Styles for the package manager.
  572. /* Haven't got here yet. :P
  573. ------------------------------------------------- */
  574. #package_list .tborder {
  575. margin: .25em 0 .25em 26px;
  576. }
  577. #package_list ol, #package_list ol li {
  578. list-style: decimal;
  579. margin-left: 50px;
  580. border: none;
  581. }
  582. #package_list ol ul, #package_list ol ul li {
  583. margin-left: 0;
  584. list-style: none;
  585. }
  586. #package_list {
  587. list-style-type: none;
  588. }
  589. #package_list li {
  590. border: 1px solid #cacdd3;
  591. padding: 0.2em;
  592. margin: 1px;
  593. }
  594. .description {
  595. max-height: 15em;
  596. overflow: auto;
  597. padding-bottom: .5em;
  598. }
  599. .information {
  600. max-height: 15em;
  601. overflow: auto;
  602. padding-bottom: .5em;
  603. }
  604. .package_section {
  605. border: 1px solid #cacdd3;
  606. }
  607. ul.packages li {
  608. border: none !important;
  609. list-style: none;
  610. }
  611. code#find_code, code#replace_code {
  612. display: block;
  613. font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
  614. font-size: 0.9em;
  615. background: #eef;
  616. border-top: 2px solid #999;
  617. border-bottom: 2px solid #999;
  618. margin: 1px 0 6px 0;
  619. padding: 3px 12px;
  620. overflow: auto;
  621. white-space: nowrap;
  622. /* Show a scrollbar after about 6 lines. */
  623. /* This is much better than the old max-height css. */
  624. height: 10em;
  625. resize: vertical;
  626. }
  627. span.package_server {
  628. padding: 0 3em;
  629. }
  630. ul.package_servers {
  631. margin: 0;
  632. padding: 0;
  633. }
  634. ul.package_servers li {
  635. list-style-type: none;
  636. }
  637. pre.file_content {
  638. overflow: auto;
  639. width: 100%;
  640. padding-bottom: 1em;
  641. }
  642. .operation {
  643. padding: 0 1em;
  644. }
  645. /* Styles for the file permissions section.
  646. ------------------------------------------------- */
  647. .filepermissions {
  648. font-size: 0.8em;
  649. white-space: nowrap;
  650. }
  651. .fperm {
  652. display: block;
  653. width: 35%;
  654. text-align: center;
  655. }
  656. .perm_read {
  657. background-color: #d1f7bf;
  658. }
  659. .perm_write {
  660. background-color: #ffbbbb;
  661. }
  662. .perm_execute {
  663. background-color: #fdd7af;
  664. }
  665. .perm_custom {
  666. background-color: #c2c6c0;
  667. }
  668. .perm_nochange {
  669. background-color: #eee;
  670. }
  671. /* Styles for the BBC permissions
  672. ------------------------------------------------- */
  673. .list_bbc {
  674. width: 33%;
  675. }
  676. /* Styles for the manage boards section.
  677. ------------------------------------------------- */
  678. #manage_boards {
  679. background: #f0f4f7;
  680. margin: 12px 0 0 0;
  681. padding: 8px 8px 16px 8px;
  682. border: 1px solid #ccc;
  683. border-radius: 7px;
  684. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  685. overflow: auto;
  686. }
  687. #manage_boards .title_bar {
  688. background: none;
  689. border-bottom: 1px solid #fff;
  690. }
  691. #manage_boards .titlebg {
  692. border-bottom: 1px solid #bbb;
  693. }
  694. #manage_boards .information {
  695. background: #fff url(../images/theme/lower_section.png) 0 100% repeat-x;
  696. margin: 8px 16px 4px 16px;
  697. padding: 4px 12px 2px 12px;
  698. border: 1px solid #ccc;
  699. border-radius: 4px;
  700. box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  701. }
  702. #manage_boards .cat_bar, #manage_boards .windowbg {
  703. background: none;
  704. margin: 0 0 0 0;
  705. padding: 0 0 0 0;
  706. border: none;
  707. border-radius: 7px 7px 0 0;
  708. }
  709. #manage_boards .catbg {
  710. padding: 8px 16px 4px 16px;
  711. color: #444;
  712. }
  713. #manage_boards .catbg a {
  714. color: #346;
  715. }
  716. #manage_boards .catbg a:hover {
  717. border-bottom: 1px solid #346;
  718. }
  719. #manage_boards .windowbg {
  720. margin: 0;
  721. padding: 0;
  722. }
  723. #manage_boards ul {
  724. padding: 0;
  725. margin: 0 0 8px 0;
  726. max-height: 30em;
  727. overflow: auto;
  728. border-top: 1px solid #bbb;
  729. border-bottom: 1px solid #fff;
  730. border-radius: 2px;
  731. }
  732. #manage_boards li, #manage_boards li.windowbg, #manage_boards li.windowbg2 {
  733. list-style: none;
  734. margin: 0 1px;
  735. padding: 8px 0;
  736. border: 1px solid #ccc;
  737. border-bottom: 1px solid #bbb;
  738. border-top: 1px solid #fff;
  739. border-radius: 0;
  740. }
  741. #manage_boards li img {
  742. vertical-align: middle;
  743. padding: 0 6px 3px 6px;
  744. }
  745. #manage_boards li .floatleft {
  746. font-weight: bold;
  747. padding: 0 6px;
  748. }
  749. #manage_boards li#recycle_board {
  750. background-color: #dee;
  751. }
  752. .move_links {
  753. padding: 0 13px 0 0;
  754. }
  755. .modify_boards {
  756. padding: 0 0.5em;
  757. }
  758. #manage_boards span.modify_boards a {
  759. background: #fff url(../images/theme/lower_section.png) 0 0 repeat-x;
  760. border: 1px solid #aaa;
  761. border-radius: 3px;
  762. box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  763. padding: 3px 6px;
  764. font: 95%/115% verdana, Helvetica, sans-serif;
  765. color: #222;
  766. font-size: 1em;
  767. }
  768. #manage_boards span.modify_boards a:hover {
  769. background: #fff url(../images/theme/upper_section.png) 0 -40px repeat-x;
  770. text-decoration: none;
  771. color: #444;
  772. box-shadow: -1px -1px 1px rgba(0,0,0,0.1);
  773. }
  774. #manage_boards .button_submit {
  775. box-shadow: 1px 1px 2px rgba(0,0,0,0.1), 0 -1px 3px rgba(0,0,0,0.1) inset;
  776. border-top: 1px solid #bbb;
  777. border-left: 1px solid #bbb;
  778. background: #dceeff;
  779. text-shadow: 0 0 2px #fff;
  780. margin: 0 8px;
  781. }
  782. #manage_boards .button_submit:hover {
  783. box-shadow: -1px -1px 1px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.1) inset;
  784. border-top: 1px solid #999;
  785. border-left: 1px solid #999;
  786. background: #cde7ff;
  787. }
  788. #manage_boards dl {
  789. padding: 8px 6px 0 6px;
  790. }
  791. #manage_boards dl textarea, #manage_boards dl table{
  792. margin: 0 0 8px 0;
  793. }
  794. #manage_boards span.post_group, #manage_boards span.regular_members {
  795. border-bottom: 1px dotted #000;
  796. cursor: help;
  797. }
  798. .select_all_box {
  799. display:none;
  800. }
  801. /* Styles for the manage members section.
  802. ------------------------------------------------- */
  803. .msearch_details {
  804. display: block;
  805. width: 49%;
  806. }
  807. dl.right dt {
  808. padding-right: 10px;
  809. }
  810. /* Styles for the manage maintenance section.
  811. ------------------------------------------------- */
  812. #manage_maintenance .catbg {
  813. border-top: 1px solid #fff;
  814. padding-top: 14px;
  815. color: #555;
  816. }
  817. #manage_maintenance .cat_bar:first-child, #manage_maintenance .cat_bar:first-child .catbg {
  818. border-top: none;
  819. margin: 0 0 -4px 0;
  820. }
  821. #manage_maintenance div.windowbg, #manage_maintenance div.windowbg2 {
  822. background: none;
  823. padding: 0 0 12px 0;
  824. margin: 0;
  825. }
  826. #manage_maintenance p {
  827. margin: -5px 0 0 0;
  828. padding: 0 0 10px 0;
  829. max-width: 70em;
  830. }
  831. #manage_maintenance p .button_submit{
  832. margin: 10px 10px 0px 10px;
  833. }
  834. /* Stop the submit buttons running away on wide screens.*/
  835. #manage_maintenance form {
  836. max-width: 80em;
  837. }
  838. #manage_maintenance .settings {
  839. margin: 16px 0 0 0;
  840. }
  841. .maintenance_finished, #task_completed {
  842. background: #B7FCA7 url(../images/warning_watch.png) 8px 50% no-repeat;
  843. border: 1px solid green;
  844. padding: 6px 30px;
  845. margin-bottom: 1em;
  846. }
  847. #manage_maintenance .maintenance_finished {
  848. background: #B7FCA7 url(../images/warning_watch.png) 8px 50% no-repeat;
  849. border: 1px solid green;
  850. border-radius: 4px 4px 0 0;
  851. padding: 6px 30px;
  852. margin: 0 0 6px 0;
  853. }
  854. /* Didn't get any further last night. */
  855. /* Styles for the manage calendar section.
  856. ------------------------------------------------- */
  857. dl.settings dt.small_caption {
  858. width: 20%;
  859. }
  860. dl.settings dd.small_caption {
  861. width: 79%;
  862. }
  863. /* Styles for the manage permissions section.
  864. ------------------------------------------------- */
  865. dl.admin_permissions dt {
  866. width: 35%;
  867. }
  868. dl.admin_permissions dd {
  869. width: 64%;
  870. }
  871. /* Styles for the manage search section.
  872. ------------------------------------------------- */
  873. dl.settings dt.large_caption {
  874. width: 70%;
  875. }
  876. dl.settings dd.large_caption {
  877. width: 29%;
  878. }
  879. span.search_weight {
  880. width: 40px;
  881. padding: 0 0.5em;
  882. text-align: right;
  883. }
  884. .search_settings {
  885. width: 47%;
  886. }
  887. /* Styles for the manage bans section.
  888. ------------------------------------------------- */
  889. .ban_restriction {
  890. margin: 0.2em 0 0.2em 2.2em;
  891. }
  892. .ban_settings {
  893. width: 46%;
  894. }
  895. #manage_bans dl {
  896. margin-bottom: 1em;
  897. }
  898. #manage_bans fieldset dl.settings {
  899. margin-bottom: 0;
  900. }
  901. /* Styles for the manage subscriptions section.
  902. ------------------------------------------------- */
  903. #fixed_area {
  904. width: 97%;
  905. }
  906. ul.pending_payments {
  907. margin: 0;
  908. padding: 0;
  909. }
  910. ul.pending_payments li {
  911. list-style-type: none;
  912. }
  913. /* Styles for the manage permissions section.
  914. ------------------------------------------------- */
  915. .perm_name, .perm_profile, .perm_board {
  916. display: block;
  917. width: 40%;
  918. }
  919. .perm_boards {
  920. padding: 0;
  921. margin: 0 0 0.6em 0;
  922. }
  923. .perm_boards li {
  924. list-style-type: none;
  925. border: 1px solid #cacdd3;
  926. padding: 0.2em;
  927. margin: 1px;
  928. }
  929. .perm_groups {
  930. background-color: #fff;
  931. }
  932. .perm_classic {
  933. margin: 0.2em;
  934. }
  935. .permission_groups {
  936. padding: 0;
  937. margin: 0;
  938. }
  939. .permission_groups li {
  940. list-style-type: none;
  941. padding: 0.2em;
  942. margin: 1px;
  943. }
  944. .perms {
  945. width: 20px;
  946. display: inline-block;
  947. text-align: center;
  948. }
  949. /* Styles for the themes section.
  950. ------------------------------------------------- */
  951. ul.theme_options {
  952. padding: 0;
  953. margin: 0;
  954. }
  955. ul.theme_options li {
  956. list-style: none;
  957. padding: 0.4em;
  958. }
  959. .is_directory {
  960. padding-left: 18px;
  961. background: url(../images/admin/boards.png) no-repeat;
  962. }
  963. .edit_file {
  964. width: 96%;
  965. font-family: monospace;
  966. margin-top: 1ex;
  967. white-space: pre;
  968. }
  969. dl.themes_list {
  970. margin: 0;
  971. }
  972. dl.themes_list dt {
  973. margin-bottom: 3px;
  974. }
  975. dl.themes_list dd {
  976. font-style: italic;
  977. white-space: nowrap;
  978. }
  979. /* Styles for the registration center.
  980. ------------------------------------------------- */
  981. .agreement, .reserved_names {
  982. padding: 0;
  983. }
  984. #agreement, #reserved {
  985. width: 99%;
  986. }
  987. /* Styles for the moderation center.
  988. ------------------------------------------------- */
  989. #modcenter {
  990. display: block;
  991. width: 100%;
  992. }
  993. .modblock_left {
  994. width: 49%;
  995. float: left;
  996. clear: right;
  997. margin: 0 0 1em 0;
  998. }
  999. .modblock_right {
  1000. width: 49%;
  1001. float: right;
  1002. margin: 0 0 1em 0;
  1003. }
  1004. .modbox {
  1005. height: 14em;
  1006. overflow: auto;
  1007. }
  1008. /* Moderation Notes */
  1009. ul.moderation_notes {
  1010. margin: 0;
  1011. padding: 0;
  1012. list-style: none;
  1013. overflow: auto;
  1014. height: 10.2em;
  1015. }
  1016. ul.moderation_notes li {
  1017. padding: 0.2em;
  1018. border-bottom: 1px solid #cccccc;
  1019. }
  1020. .notes {
  1021. margin-top: 0.4em;
  1022. }
  1023. .post_note {
  1024. width: 85%;
  1025. }
  1026. /* Styles for the error log.
  1027. ------------------------------------------------- */
  1028. h3.grid_header {
  1029. height: 25px;
  1030. }
  1031. #error_log {
  1032. width: 100%;
  1033. }
  1034. #error_log tr.windowbg td, #error_log tr.windowbg2 td {
  1035. padding: 8px;
  1036. line-height: 160%;
  1037. }
  1038. #error_log td div {
  1039. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1040. }
  1041. #error_log td.checkbox_column {
  1042. width: 15px;
  1043. vertical-align: top;
  1044. text-align: center;
  1045. }
  1046. #error_log a img {
  1047. vertical-align: middle;
  1048. margin: 0 8px 0 0;
  1049. }
  1050. /* More error log stuff. Could still be cleaned up a bit.
  1051. --------------------------------------------------*/
  1052. #error_log {
  1053. margin: 4px 0;
  1054. }
  1055. #error_log tr:first-child td {
  1056. border-top: 2px solid #ff9400;
  1057. border-bottom: 2px solid #bf6900;
  1058. background: #fff;
  1059. padding: 8px;
  1060. }
  1061. /* Styles for the Report generation
  1062. ------------------------------------------------- */
  1063. #report_buttons {
  1064. min-height: 2.4em;
  1065. padding: 3px 0;
  1066. }
  1067. .report_results th {
  1068. border-left: 1px solid #ddd;
  1069. border-right: 1px solid #ddd;
  1070. }
  1071. /* Try out some nifty small screen friendliness, for the cost of a few more bytes. */
  1072. /*@media screen and (max-width: 85em) {
  1073. .features p {
  1074. margin: 0;
  1075. padding: 0;
  1076. min-height: 10em;
  1077. max-height: 10em;
  1078. }
  1079. }*/
  1080. @media screen and (max-width: 490px),(max-width: 32em) {
  1081. body {
  1082. padding: 0;
  1083. }
  1084. #wrapper, #footer_section div.frame {
  1085. min-width: 100%;
  1086. }
  1087. #main_content_section {
  1088. padding: 0 10px;
  1089. }
  1090. /* Level 1 button background. */
  1091. .dropmenu li {
  1092. line-height: 3.2em;
  1093. }
  1094. .dropmenu li ul {
  1095. top: 3.45em;
  1096. }
  1097. .dropmenu li li a {
  1098. line-height: 3.2em;
  1099. }
  1100. #menu_toggle {
  1101. display: none;
  1102. }
  1103. h3.catbg #quick_search form {
  1104. margin: 0 0 8px 0;
  1105. padding: 0;
  1106. }
  1107. h3.catbg #quick_search form input {
  1108. margin: 0 0 12px 0;
  1109. }
  1110. h3.catbg #quick_search form select option {
  1111. padding: 4px 4px;
  1112. }
  1113. h3.catbg #quick_search form .button_submit {
  1114. margin: 0 3px 0 3px;
  1115. }
  1116. #live_news, #supportVersionsTable {
  1117. width: 100%;
  1118. }
  1119. #live_news {
  1120. margin: 0 0 6px 0;
  1121. }
  1122. #supportVersionsTable {
  1123. padding: 0;
  1124. }
  1125. #quick_tasks ul li span {
  1126. display: block;
  1127. margin: 0 0 0 50px;
  1128. }
  1129. #credits_page {
  1130. padding-top: 35px;
  1131. }
  1132. #credits_page img {
  1133. right: 6px;
  1134. }
  1135. #core_features .features_image {
  1136. display: none;
  1137. }
  1138. #core_features .features_switch {
  1139. margin: -24px 0 0 5px;
  1140. }
  1141. #core_features .features h4 {
  1142. padding: 0 0 10px 0;
  1143. }
  1144. #core_features .features p {
  1145. margin: 0;
  1146. padding: 0;
  1147. min-height: 0;
  1148. max-height: 5em;
  1149. overflow: auto;
  1150. }
  1151. #manage_boards .catbg {
  1152. margin-top: 10px;
  1153. }
  1154. #manage_boards .windowbg {
  1155. line-height: 3.2em;
  1156. }
  1157. #manage_boards ul {
  1158. max-height: 120em;
  1159. padding: 0 0 10px 0;
  1160. }
  1161. #manage_boards dd, #manage_boards dt {
  1162. width: 100%;
  1163. }
  1164. #manage_boards dt {
  1165. line-height: 1.6em;
  1166. }
  1167. /* These kids and their new-fangled thingummys. :P */
  1168. /* When I were a lad, things were different! */