admin.css 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208
  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. margin: -20px 0 6px 6px;
  555. float: right;
  556. }
  557. .features h4 {
  558. padding: 0;
  559. margin-top: 6px;
  560. font-size: 1.1em;
  561. overflow: hidden;
  562. white-space: pre;
  563. text-overflow: ellipsis;
  564. min-height: 1.6em;
  565. max-height: 1.6em;
  566. }
  567. .features p {
  568. margin: 0 6px 0 105px;
  569. padding: 0;
  570. min-height: 56px;
  571. }
  572. /* Styles for the package manager.
  573. /* Haven't got here yet. :P
  574. ------------------------------------------------- */
  575. #package_list .tborder {
  576. margin: .25em 0 .25em 26px;
  577. }
  578. #package_list ol, #package_list ol li {
  579. list-style: decimal;
  580. margin-left: 50px;
  581. border: none;
  582. }
  583. #package_list ol ul, #package_list ol ul li {
  584. margin-left: 0;
  585. list-style: none;
  586. }
  587. #package_list {
  588. list-style-type: none;
  589. }
  590. #package_list li {
  591. border: 1px solid #cacdd3;
  592. padding: 0.2em;
  593. margin: 1px;
  594. }
  595. .description {
  596. max-height: 15em;
  597. overflow: auto;
  598. padding-bottom: .5em;
  599. }
  600. .information {
  601. max-height: 15em;
  602. overflow: auto;
  603. padding-bottom: .5em;
  604. }
  605. .package_section {
  606. border: 1px solid #cacdd3;
  607. }
  608. ul.packages li {
  609. border: none !important;
  610. list-style: none;
  611. }
  612. code#find_code, code#replace_code {
  613. display: block;
  614. font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
  615. font-size: 0.9em;
  616. background: #eef;
  617. border-top: 2px solid #999;
  618. border-bottom: 2px solid #999;
  619. margin: 1px 0 6px 0;
  620. padding: 3px 12px;
  621. overflow: auto;
  622. white-space: nowrap;
  623. /* Show a scrollbar after about 6 lines. */
  624. /* This is much better than the old max-height css. */
  625. height: 10em;
  626. resize: vertical;
  627. }
  628. span.package_server {
  629. padding: 0 3em;
  630. }
  631. ul.package_servers {
  632. margin: 0;
  633. padding: 0;
  634. }
  635. ul.package_servers li {
  636. list-style-type: none;
  637. }
  638. pre.file_content {
  639. overflow: auto;
  640. width: 100%;
  641. padding-bottom: 1em;
  642. }
  643. .operation {
  644. padding: 0 1em;
  645. }
  646. /* Styles for the file permissions section.
  647. ------------------------------------------------- */
  648. .filepermissions {
  649. font-size: 0.8em;
  650. white-space: nowrap;
  651. }
  652. .fperm {
  653. display: block;
  654. width: 35%;
  655. text-align: center;
  656. }
  657. .perm_read {
  658. background-color: #d1f7bf;
  659. }
  660. .perm_write {
  661. background-color: #ffbbbb;
  662. }
  663. .perm_execute {
  664. background-color: #fdd7af;
  665. }
  666. .perm_custom {
  667. background-color: #c2c6c0;
  668. }
  669. .perm_nochange {
  670. background-color: #eee;
  671. }
  672. /* Styles for the BBC permissions
  673. ------------------------------------------------- */
  674. .list_bbc {
  675. width: 33%;
  676. }
  677. /* Styles for the manage boards section.
  678. ------------------------------------------------- */
  679. #manage_boards {
  680. background: #f0f4f7;
  681. margin: 12px 0 0 0;
  682. padding: 8px 8px 16px 8px;
  683. border: 1px solid #ccc;
  684. border-radius: 7px;
  685. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  686. overflow: auto;
  687. }
  688. #manage_boards .title_bar {
  689. background: none;
  690. border-bottom: 1px solid #fff;
  691. }
  692. #manage_boards .titlebg {
  693. border-bottom: 1px solid #bbb;
  694. }
  695. #manage_boards .information {
  696. background: #fff url(../images/theme/lower_section.png) 0 100% repeat-x;
  697. margin: 8px 16px 4px 16px;
  698. padding: 4px 12px 2px 12px;
  699. border: 1px solid #ccc;
  700. border-radius: 4px;
  701. box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  702. }
  703. #manage_boards .cat_bar, #manage_boards .windowbg {
  704. background: none;
  705. margin: 0 0 0 0;
  706. padding: 0 0 0 0;
  707. border: none;
  708. border-radius: 7px 7px 0 0;
  709. }
  710. #manage_boards .catbg {
  711. padding: 8px 16px 4px 16px;
  712. color: #444;
  713. }
  714. #manage_boards .catbg a {
  715. color: #346;
  716. }
  717. #manage_boards .catbg a:hover {
  718. border-bottom: 1px solid #346;
  719. }
  720. #manage_boards .windowbg {
  721. margin: 0;
  722. padding: 0;
  723. }
  724. #manage_boards ul {
  725. padding: 0;
  726. margin: 0 0 8px 0;
  727. max-height: 30em;
  728. overflow: auto;
  729. border-top: 1px solid #bbb;
  730. border-bottom: 1px solid #fff;
  731. border-radius: 2px;
  732. }
  733. #manage_boards li, #manage_boards li.windowbg, #manage_boards li.windowbg2 {
  734. list-style: none;
  735. margin: 0 1px;
  736. padding: 8px 0;
  737. border: 1px solid #ccc;
  738. border-bottom: 1px solid #bbb;
  739. border-top: 1px solid #fff;
  740. border-radius: 0;
  741. }
  742. #manage_boards li img {
  743. vertical-align: middle;
  744. padding: 0 6px 3px 6px;
  745. }
  746. #manage_boards li .floatleft {
  747. font-weight: bold;
  748. padding: 0 6px;
  749. }
  750. #manage_boards li#recycle_board {
  751. background-color: #dee;
  752. }
  753. .move_links {
  754. padding: 0 13px 0 0;
  755. }
  756. .modify_boards {
  757. padding: 0 0.5em;
  758. }
  759. #manage_boards span.modify_boards a {
  760. background: #fff url(../images/theme/lower_section.png) 0 0 repeat-x;
  761. border: 1px solid #aaa;
  762. border-radius: 3px;
  763. box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  764. padding: 3px 6px;
  765. font: 95%/115% verdana, Helvetica, sans-serif;
  766. color: #222;
  767. font-size: 1em;
  768. }
  769. #manage_boards span.modify_boards a:hover {
  770. background: #fff url(../images/theme/upper_section.png) 0 -40px repeat-x;
  771. text-decoration: none;
  772. color: #444;
  773. box-shadow: -1px -1px 1px rgba(0,0,0,0.1);
  774. }
  775. #manage_boards .button_submit {
  776. box-shadow: 1px 1px 2px rgba(0,0,0,0.1), 0 -1px 3px rgba(0,0,0,0.1) inset;
  777. border-top: 1px solid #bbb;
  778. border-left: 1px solid #bbb;
  779. background: #dceeff;
  780. text-shadow: 0 0 2px #fff;
  781. margin: 0 8px;
  782. }
  783. #manage_boards .button_submit:hover {
  784. box-shadow: -1px -1px 1px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.1) inset;
  785. border-top: 1px solid #999;
  786. border-left: 1px solid #999;
  787. background: #cde7ff;
  788. }
  789. #manage_boards dl {
  790. padding: 8px 6px 0 6px;
  791. }
  792. #manage_boards dl textarea, #manage_boards dl table{
  793. margin: 0 0 8px 0;
  794. }
  795. #manage_boards span.post_group, #manage_boards span.regular_members {
  796. border-bottom: 1px dotted #000;
  797. cursor: help;
  798. }
  799. .select_all_box {
  800. display:none;
  801. }
  802. /* Styles for the manage members section.
  803. ------------------------------------------------- */
  804. .msearch_details {
  805. display: block;
  806. width: 49%;
  807. }
  808. dl.right dt {
  809. padding-right: 10px;
  810. }
  811. /* Styles for the manage maintenance section.
  812. ------------------------------------------------- */
  813. #manage_maintenance .catbg {
  814. border-top: 1px solid #fff;
  815. padding-top: 14px;
  816. color: #555;
  817. }
  818. #manage_maintenance .cat_bar:first-child, #manage_maintenance .cat_bar:first-child .catbg {
  819. border-top: none;
  820. margin: 0 0 -4px 0;
  821. }
  822. #manage_maintenance div.windowbg, #manage_maintenance div.windowbg2 {
  823. background: none;
  824. padding: 0 0 12px 0;
  825. margin: 0;
  826. }
  827. #manage_maintenance p {
  828. margin: -5px 0 0 0;
  829. padding: 0 0 10px 0;
  830. max-width: 70em;
  831. }
  832. #manage_maintenance p .button_submit{
  833. margin: 10px 10px 0px 10px;
  834. }
  835. /* Stop the submit buttons running away on wide screens.*/
  836. #manage_maintenance form {
  837. max-width: 80em;
  838. }
  839. #manage_maintenance .settings {
  840. margin: 16px 0 0 0;
  841. }
  842. .maintenance_finished, #task_completed {
  843. background: #B7FCA7 url(../images/warning_watch.png) 8px 50% no-repeat;
  844. border: 1px solid green;
  845. padding: 6px 30px;
  846. margin-bottom: 1em;
  847. }
  848. #manage_maintenance .maintenance_finished {
  849. background: #B7FCA7 url(../images/warning_watch.png) 8px 50% no-repeat;
  850. border: 1px solid green;
  851. border-radius: 4px 4px 0 0;
  852. padding: 6px 30px;
  853. margin: 0 0 6px 0;
  854. }
  855. /* Didn't get any further last night. */
  856. /* Styles for the manage calendar section.
  857. ------------------------------------------------- */
  858. dl.settings dt.small_caption {
  859. width: 20%;
  860. }
  861. dl.settings dd.small_caption {
  862. width: 79%;
  863. }
  864. /* Styles for the manage permissions section.
  865. ------------------------------------------------- */
  866. dl.admin_permissions dt {
  867. width: 35%;
  868. }
  869. dl.admin_permissions dd {
  870. width: 64%;
  871. }
  872. /* Styles for the manage search section.
  873. ------------------------------------------------- */
  874. dl.settings dt.large_caption {
  875. width: 70%;
  876. }
  877. dl.settings dd.large_caption {
  878. width: 29%;
  879. }
  880. span.search_weight {
  881. width: 40px;
  882. padding: 0 0.5em;
  883. text-align: right;
  884. }
  885. .search_settings {
  886. width: 47%;
  887. }
  888. /* Styles for the manage bans section.
  889. ------------------------------------------------- */
  890. .ban_restriction {
  891. margin: 0.2em 0 0.2em 2.2em;
  892. }
  893. .ban_settings {
  894. width: 46%;
  895. }
  896. #manage_bans dl {
  897. margin-bottom: 1em;
  898. }
  899. #manage_bans fieldset dl.settings {
  900. margin-bottom: 0;
  901. }
  902. /* Styles for the manage subscriptions section.
  903. ------------------------------------------------- */
  904. #fixed_area {
  905. width: 97%;
  906. }
  907. ul.pending_payments {
  908. margin: 0;
  909. padding: 0;
  910. }
  911. ul.pending_payments li {
  912. list-style-type: none;
  913. }
  914. /* Styles for the manage permissions section.
  915. ------------------------------------------------- */
  916. .perm_name, .perm_profile, .perm_board {
  917. display: block;
  918. width: 40%;
  919. }
  920. .perm_boards {
  921. padding: 0;
  922. margin: 0 0 0.6em 0;
  923. }
  924. .perm_boards li {
  925. list-style-type: none;
  926. border: 1px solid #cacdd3;
  927. padding: 0.2em;
  928. margin: 1px;
  929. }
  930. .perm_groups {
  931. background-color: #fff;
  932. }
  933. .perm_classic {
  934. margin: 0.2em;
  935. }
  936. .permission_groups {
  937. padding: 0;
  938. margin: 0;
  939. }
  940. .permission_groups li {
  941. list-style-type: none;
  942. padding: 0.2em;
  943. margin: 1px;
  944. }
  945. .perms {
  946. width: 20px;
  947. display: inline-block;
  948. text-align: center;
  949. }
  950. /* Styles for the themes section.
  951. ------------------------------------------------- */
  952. ul.theme_options {
  953. padding: 0;
  954. margin: 0;
  955. }
  956. ul.theme_options li {
  957. list-style: none;
  958. padding: 0.4em;
  959. }
  960. .is_directory {
  961. padding-left: 18px;
  962. background: url(../images/admin/boards.png) no-repeat;
  963. }
  964. .edit_file {
  965. width: 96%;
  966. font-family: monospace;
  967. margin-top: 1ex;
  968. white-space: pre;
  969. }
  970. dl.themes_list {
  971. margin: 0;
  972. }
  973. dl.themes_list dt {
  974. margin-bottom: 3px;
  975. }
  976. dl.themes_list dd {
  977. font-style: italic;
  978. white-space: nowrap;
  979. }
  980. /* Styles for the registration center.
  981. ------------------------------------------------- */
  982. .agreement, .reserved_names {
  983. padding: 0;
  984. }
  985. #agreement, #reserved {
  986. width: 99%;
  987. }
  988. /* Styles for the moderation center.
  989. ------------------------------------------------- */
  990. #modcenter {
  991. display: block;
  992. width: 100%;
  993. }
  994. .modblock_left {
  995. width: 49%;
  996. float: left;
  997. clear: right;
  998. margin: 0 0 1em 0;
  999. }
  1000. .modblock_right {
  1001. width: 49%;
  1002. float: right;
  1003. margin: 0 0 1em 0;
  1004. }
  1005. .modbox {
  1006. height: 14em;
  1007. overflow: auto;
  1008. }
  1009. /* Moderation Notes */
  1010. ul.moderation_notes {
  1011. margin: 0;
  1012. padding: 0;
  1013. list-style: none;
  1014. overflow: auto;
  1015. height: 10.2em;
  1016. }
  1017. ul.moderation_notes li {
  1018. padding: 0.2em;
  1019. border-bottom: 1px solid #cccccc;
  1020. }
  1021. .notes {
  1022. margin-top: 0.4em;
  1023. }
  1024. .post_note {
  1025. width: 85%;
  1026. }
  1027. /* Styles for the error log.
  1028. ------------------------------------------------- */
  1029. h3.grid_header {
  1030. height: 25px;
  1031. }
  1032. #error_log {
  1033. width: 100%;
  1034. }
  1035. #error_log tr.windowbg td, #error_log tr.windowbg2 td {
  1036. padding: 8px;
  1037. line-height: 160%;
  1038. }
  1039. #error_log td div {
  1040. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1041. }
  1042. #error_log td.checkbox_column {
  1043. width: 15px;
  1044. vertical-align: top;
  1045. text-align: center;
  1046. }
  1047. #error_log a img {
  1048. vertical-align: middle;
  1049. margin: 0 8px 0 0;
  1050. }
  1051. /* More error log stuff. Could still be cleaned up a bit.
  1052. --------------------------------------------------*/
  1053. #error_log {
  1054. margin: 4px 0;
  1055. }
  1056. #error_log tr:first-child td {
  1057. border-top: 2px solid #ff9400;
  1058. border-bottom: 2px solid #bf6900;
  1059. background: #fff;
  1060. padding: 8px;
  1061. }
  1062. /* Styles for the Report generation
  1063. ------------------------------------------------- */
  1064. #report_buttons {
  1065. min-height: 2.4em;
  1066. padding: 3px 0;
  1067. }
  1068. .report_results th {
  1069. border-left: 1px solid #ddd;
  1070. border-right: 1px solid #ddd;
  1071. }
  1072. /* Try out some nifty small screen friendliness, for the cost of a few more bytes. */
  1073. /*@media screen and (max-width: 85em) {
  1074. .features p {
  1075. margin: 0;
  1076. padding: 0;
  1077. min-height: 10em;
  1078. max-height: 10em;
  1079. }
  1080. }*/
  1081. @media screen and (max-width: 490px),(max-width: 32em) {
  1082. body {
  1083. padding: 0;
  1084. }
  1085. #wrapper, #footer_section div.frame {
  1086. min-width: 100%;
  1087. }
  1088. #main_content_section {
  1089. padding: 0 10px;
  1090. }
  1091. /* Level 1 button background. */
  1092. .dropmenu li {
  1093. line-height: 3.2em;
  1094. }
  1095. .dropmenu li ul {
  1096. top: 3.45em;
  1097. }
  1098. .dropmenu li li a {
  1099. line-height: 3.2em;
  1100. }
  1101. #menu_toggle {
  1102. display: none;
  1103. }
  1104. h3.catbg #quick_search form {
  1105. margin: 0 0 8px 0;
  1106. padding: 0;
  1107. }
  1108. h3.catbg #quick_search form input {
  1109. margin: 0 0 12px 0;
  1110. }
  1111. h3.catbg #quick_search form select option {
  1112. padding: 4px 4px;
  1113. }
  1114. h3.catbg #quick_search form .button_submit {
  1115. margin: 0 3px 0 3px;
  1116. }
  1117. #live_news, #supportVersionsTable {
  1118. width: 100%;
  1119. }
  1120. #live_news {
  1121. margin: 0 0 6px 0;
  1122. }
  1123. #supportVersionsTable {
  1124. padding: 0;
  1125. }
  1126. #quick_tasks ul li span {
  1127. display: block;
  1128. margin: 0 0 0 50px;
  1129. }
  1130. #credits_page {
  1131. padding-top: 35px;
  1132. }
  1133. #credits_page img {
  1134. right: 6px;
  1135. }
  1136. #core_features .features_image {
  1137. display: none;
  1138. }
  1139. #core_features .features_switch {
  1140. margin: -24px 0 0 5px;
  1141. }
  1142. #core_features .features h4 {
  1143. padding: 0 0 10px 0;
  1144. }
  1145. #core_features .features p {
  1146. margin: 0;
  1147. padding: 0;
  1148. min-height: 0;
  1149. max-height: 5em;
  1150. overflow: auto;
  1151. }
  1152. #manage_boards .catbg {
  1153. margin-top: 10px;
  1154. }
  1155. #manage_boards .windowbg {
  1156. line-height: 3.2em;
  1157. }
  1158. #manage_boards ul {
  1159. max-height: 120em;
  1160. padding: 0 0 10px 0;
  1161. }
  1162. #manage_boards dd, #manage_boards dt {
  1163. width: 100%;
  1164. }
  1165. #manage_boards dt {
  1166. line-height: 1.6em;
  1167. }
  1168. /* These kids and their new-fangled thingummys. :P */
  1169. /* When I were a lad, things were different! */