admin.css 29 KB

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