admin.css 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220
  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, #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,
  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. #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_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_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-radius: 2px 2px 0 0;
  177. margin: 0;
  178. border-bottom: 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;
  396. padding: 8px 12px;
  397. border-radius: 7px;
  398. }
  399. #admin_main_section .cat_bar {
  400. background: none;
  401. }
  402. #admin_main_section .catbg, #admin_main_section .catbg a {
  403. color: #444;
  404. max-height: 1.5em;
  405. overflow: hidden;
  406. }
  407. #live_news, #supportVersionsTable {
  408. width: 70%;
  409. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  410. }
  411. #supportVersionsTable {
  412. width: 30%;
  413. padding-left: 6px;
  414. }
  415. #admin_main_section .windowbg {
  416. padding: 6px 0;
  417. border: 1px solid #ccc;
  418. border-top: 1px solid #bbb;
  419. border-bottom: 1px solid #ddd;
  420. border-radius: 0;
  421. box-shadow: 0 2px 2px rgba(255,255,255,0.5), 0 -1px 2px rgba(0,0,0,0.1);
  422. height: 12em;
  423. overflow: auto;
  424. background: linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  425. background: -o-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  426. background: -moz-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  427. background: -webkit-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  428. background: -ms-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  429. }
  430. #live_news div.content, #supportVersionsTable div.content {
  431. padding: 0;
  432. font-size: 0.9em;
  433. }
  434. #supportVersionsTable div.content {
  435. padding: 0 8px;
  436. }
  437. #live_news div.content dl {
  438. padding: 0;
  439. color: #111;
  440. }
  441. #smfAnnouncements dt {
  442. padding: 4px 6px 2px 6px;
  443. border-top: 1px solid #bf6900;
  444. }
  445. #smfAnnouncements dt a {
  446. color: #bf6900;
  447. font-weight: bold;
  448. display: block;
  449. }
  450. #smfAnnouncements dd {
  451. margin: 0;
  452. padding: 6px 12px;
  453. border-top: double #ddd;
  454. }
  455. fieldset.admin_group legend {
  456. background: #eaf1f4;
  457. border: 1px solid #cacdd3;
  458. padding: 1px 5px;
  459. border-radius: 3px;
  460. }
  461. fieldset.admin_group a {
  462. display: inline-block;
  463. width: 100px;
  464. font-size: 85%;
  465. text-align: center;
  466. vertical-align: top;
  467. }
  468. fieldset.admin_group .inactive {
  469. filter:Alpha(opacity=40);
  470. -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  471. opacity: 0.4;
  472. }
  473. /* The update warning. */
  474. #update_section {
  475. margin: 6px 0;
  476. }
  477. /* Links to handy sections of admin.
  478. ----------------------------------*/
  479. /* The <li>'s here have been set to a height in em with hidden overflow.
  480. /* Yes, this will clip the blurb when using very large font sizes on a narrowish screen.
  481. /* However, more than enough content is still available for clarity,
  482. /* and the advantage is that a clean layout is always maintained.
  483. /* The <li>'s could be set to auto overflow instead, but that just clutters things up with scrollbars.
  484. /* Scrollbars here look worse, take up space, and don't really add anything useful in this context. */
  485. div.quick_tasks {
  486. border-radius: 0 0 7px 7px;
  487. border-top: none;
  488. box-shadow: none;
  489. padding: 0 0 16px 0;
  490. }
  491. #quick_tasks {
  492. border-top: 1px solid #bbb;
  493. border-bottom: 1px solid #fff;
  494. }
  495. #quick_tasks li {
  496. list-style: none;
  497. padding: 10px 6px 10px 6px;
  498. border-top: 1px solid #fff;
  499. border-bottom: 1px solid #bbb;
  500. float: left;
  501. width: 50%;
  502. height: 6em;
  503. overflow: hidden;
  504. }
  505. #quick_tasks li a {
  506. line-height: 1.6em;
  507. }
  508. .home_image {
  509. float: left;
  510. margin: 2px 10px;
  511. }
  512. #quick_tasks li span {
  513. display: block;
  514. margin: 0 0 0 70px;
  515. }
  516. /* Styles for the support and credits page.
  517. /* Hey, people might actually want to put their names on it now!
  518. /* Only a couple of trivial markup hacks that wont break any mods or themes.
  519. /* The older I get, the more devious I get. :D
  520. /* Nobody ever themes admin anyway. That's why it looked like crap.
  521. -----------------------------------------------------------------*/
  522. #support_credits {
  523. position: relative;
  524. padding: 6px 12px 12px 12px;
  525. }
  526. #support_credits h3.catbg, #support_credits .cat_bar:first-child h3.catbg {
  527. padding: 12px 6px 6px 6px;
  528. }
  529. #support_resources {
  530. margin: 16px 0 -24px 0;
  531. }
  532. #credits_logo {
  533. position: absolute;
  534. right: 10px;
  535. top: 9px;
  536. }
  537. #support_credits .content {
  538. padding: 0 18px;
  539. line-height: 1.6em;
  540. }
  541. #support_credits .content p {
  542. margin: 12px 0 0 0;
  543. padding: 0;
  544. }
  545. #support_credits a {
  546. border-bottom: 1px solid #d2d2d2;
  547. }
  548. #support_credits a:hover {
  549. color: #00163d;
  550. text-decoration: none;
  551. border-bottom: 1px solid #556f82;
  552. }
  553. #support_credits img.icon {
  554. vertical-align: middle;
  555. }
  556. #support_credits .catbg a.help, #support_credits .catbg a.help:hover {
  557. border-bottom: none;
  558. }
  559. #latestSupport{
  560. padding: 0 25px 15px 25px;
  561. }
  562. #credits_sections {
  563. margin: 0 0 -24px 0;
  564. }
  565. #support_credits dl {
  566. padding: 0 6px;
  567. }
  568. #support_credits dt {
  569. float: left;
  570. padding: 6px 0.8em 0 0;
  571. text-indent: -4px;
  572. }
  573. #support_credits dd {
  574. padding: 6px 0;
  575. }
  576. /* Styles for the package manager.
  577. /* Haven't got here yet. :P
  578. ------------------------------------------------- */
  579. #package_list .tborder {
  580. margin: .25em 0 .25em 26px;
  581. }
  582. #package_list ol, #package_list ol li {
  583. list-style: decimal;
  584. margin-left: 50px;
  585. border: none;
  586. }
  587. #package_list ol ul, #package_list ol ul li {
  588. margin-left: 0;
  589. list-style: none;
  590. }
  591. #package_list {
  592. list-style-type: none;
  593. }
  594. #package_list li {
  595. border: 1px solid #cacdd3;
  596. padding: 0.2em;
  597. margin: 1px;
  598. }
  599. .description {
  600. max-height: 15em;
  601. overflow: auto;
  602. padding-bottom: .5em;
  603. }
  604. .information {
  605. max-height: 15em;
  606. overflow: auto;
  607. padding-bottom: .5em;
  608. }
  609. .package_section {
  610. border: 1px solid #cacdd3;
  611. }
  612. ul.packages li {
  613. border: none !important;
  614. list-style: none;
  615. }
  616. code#find_code, code#replace_code {
  617. display: block;
  618. font-family: "dejavu sans mono", "monaco", "lucida console", "courier new", monospace;
  619. font-size: 0.9em;
  620. background: #eef;
  621. border-top: 2px solid #999;
  622. border-bottom: 2px solid #999;
  623. margin: 1px 0 6px 0;
  624. padding: 3px 12px;
  625. overflow: auto;
  626. white-space: nowrap;
  627. /* Show a scrollbar after about 6 lines. */
  628. /* This is much better than the old max-height css. */
  629. height: 10em;
  630. resize: vertical;
  631. }
  632. span.package_server {
  633. padding: 0 3em;
  634. }
  635. ul.package_servers {
  636. margin: 0;
  637. padding: 0;
  638. }
  639. ul.package_servers li {
  640. list-style-type: none;
  641. }
  642. pre.file_content {
  643. overflow: auto;
  644. width: 100%;
  645. padding-bottom: 1em;
  646. }
  647. .operation {
  648. padding: 0 1em;
  649. }
  650. /* Styles for the file permissions section.
  651. ------------------------------------------------- */
  652. .filepermissions {
  653. font-size: 0.8em;
  654. white-space: nowrap;
  655. }
  656. .fperm {
  657. display: block;
  658. width: 35%;
  659. text-align: center;
  660. }
  661. .perm_read {
  662. background-color: #d1f7bf;
  663. }
  664. .perm_write {
  665. background-color: #ffbbbb;
  666. }
  667. .perm_execute {
  668. background-color: #fdd7af;
  669. }
  670. .perm_custom {
  671. background-color: #c2c6c0;
  672. }
  673. .perm_nochange {
  674. background-color: #eee;
  675. }
  676. .select_spot {
  677. width: 16px;
  678. height: 16px;
  679. display: inline-block;
  680. background: url(../images/select_spot.png) no-repeat 0 0;
  681. }
  682. .select_spot.above {
  683. background-position: 0 0;
  684. }
  685. .select_spot.here {
  686. background-position: -16px 0;
  687. }
  688. .select_spot.below {
  689. background-position: -32px 0;
  690. }
  691. /* Styles for the BBC permissions
  692. ------------------------------------------------- */
  693. .list_bbc {
  694. width: 33%;
  695. }
  696. /* Styles for the manage boards section.
  697. ------------------------------------------------- */
  698. #manage_boards {
  699. background: #f0f4f7;
  700. margin: 12px 0 0 0;
  701. padding: 8px 8px 16px 8px;
  702. border: 1px solid #ccc;
  703. border-radius: 7px;
  704. box-shadow: 0 -2px 2px rgba(0,0,0,0.1);
  705. overflow: auto;
  706. }
  707. #manage_boards .title_bar {
  708. background: none;
  709. border-bottom: 1px solid #fff;
  710. }
  711. #manage_boards .titlebg {
  712. border-bottom: 1px solid #bbb;
  713. }
  714. #manage_boards .cat_bar, #manage_boards .windowbg {
  715. background: none;
  716. margin: 0 0 0 0;
  717. padding: 0 0 0 0;
  718. border: none;
  719. border-radius: 7px 7px 0 0;
  720. }
  721. #manage_boards .catbg {
  722. padding: 8px 16px 4px 16px;
  723. color: #444;
  724. }
  725. #manage_boards .cat_bar .catbg {
  726. border: none;
  727. border-bottom: 1px solid #bbb;
  728. }
  729. #manage_boards .catbg a {
  730. color: #346;
  731. }
  732. #manage_boards .catbg a:hover {
  733. border-bottom: 1px solid #346;
  734. }
  735. #manage_boards .windowbg {
  736. margin: 0;
  737. padding: 0;
  738. }
  739. #manage_boards ul {
  740. padding: 0;
  741. margin: 0 0 8px 0;
  742. max-height: 30em;
  743. overflow: auto;
  744. border-top: 1px solid #bbb;
  745. border-bottom: 1px solid #fff;
  746. border-radius: 2px;
  747. }
  748. #manage_boards li, #manage_boards li.windowbg, #manage_boards li.windowbg2 {
  749. list-style: none;
  750. margin: 0 1px;
  751. padding: 8px 0;
  752. border: 1px solid #ccc;
  753. border-bottom: 1px solid #bbb;
  754. border-top: 1px solid #fff;
  755. border-radius: 0;
  756. }
  757. #manage_boards li img {
  758. vertical-align: middle;
  759. padding: 0 6px 3px 6px;
  760. }
  761. #manage_boards li .select_spot {
  762. vertical-align: middle;
  763. margin: 0 6px 3px 6px;
  764. }
  765. #manage_boards li .floatleft {
  766. font-weight: bold;
  767. padding: 0 6px;
  768. }
  769. #manage_boards li#recycle_board {
  770. background-color: #dee;
  771. }
  772. #manage_boards li.redirect_board {
  773. background-color: #eed;
  774. }
  775. .move_links {
  776. padding: 0 13px 0 0;
  777. }
  778. .modify_boards {
  779. padding: 0 0.5em;
  780. }
  781. #manage_boards span.modify_boards a {
  782. border: 1px solid #aaa;
  783. border-radius: 3px;
  784. box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  785. padding: 3px 6px;
  786. font: 95%/115% verdana, Helvetica, sans-serif;
  787. color: #222;
  788. font-size: 1em;
  789. background: linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  790. background: -o-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  791. background: -moz-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  792. background: -webkit-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  793. background: -ms-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  794. }
  795. #manage_boards span.modify_boards a:hover {
  796. text-decoration: none;
  797. color: #444;
  798. box-shadow: -1px -1px 1px rgba(0,0,0,0.1);
  799. background: linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  800. background: -o-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  801. background: -moz-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  802. background: -webkit-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  803. background: -ms-linear-gradient(bottom, #FFFFFF 1%, #F1F3F5 96%);
  804. }
  805. #manage_boards .button_submit {
  806. box-shadow: 1px 1px 2px rgba(0,0,0,0.1), 0 -1px 3px rgba(0,0,0,0.1) inset;
  807. border-top: 1px solid #bbb;
  808. border-left: 1px solid #bbb;
  809. background: #dceeff;
  810. text-shadow: 0 0 2px #fff;
  811. margin: 0 8px;
  812. }
  813. #manage_boards .button_submit:hover {
  814. box-shadow: -1px -1px 1px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.1) inset;
  815. border-top: 1px solid #999;
  816. border-left: 1px solid #999;
  817. background: #cde7ff;
  818. }
  819. #manage_boards dl {
  820. padding: 8px 6px 0 6px;
  821. }
  822. #manage_boards dl textarea, #manage_boards dl table{
  823. margin: 0 0 8px 0;
  824. }
  825. #manage_boards span.post_group, #manage_boards span.regular_members {
  826. border-bottom: 1px dotted #000;
  827. cursor: help;
  828. }
  829. .select_all_box {
  830. display:none;
  831. }
  832. /* Styles for the manage members section.
  833. ------------------------------------------------- */
  834. .msearch_details {
  835. display: block;
  836. width: 49%;
  837. }
  838. dl.right dt {
  839. padding-right: 10px;
  840. }
  841. /* Styles for the manage maintenance section.
  842. ------------------------------------------------- */
  843. #manage_maintenance .catbg {
  844. border-top: 1px solid #fff;
  845. padding-top: 14px;
  846. color: #555;
  847. }
  848. #manage_maintenance .cat_bar:first-child, #manage_maintenance .cat_bar:first-child .catbg {
  849. border-top: none;
  850. margin: 0 0 -4px 0;
  851. }
  852. #manage_maintenance div.windowbg, #manage_maintenance div.windowbg2 {
  853. background: none;
  854. padding: 0 0 12px 0;
  855. margin: 0;
  856. }
  857. #manage_maintenance p {
  858. margin: -5px 0 0 0;
  859. padding: 0 0 10px 0;
  860. max-width: 70em;
  861. }
  862. #manage_maintenance p .button_submit{
  863. margin: 10px 10px 0px 10px;
  864. }
  865. /* Stop the submit buttons running away on wide screens.*/
  866. #manage_maintenance form {
  867. max-width: 80em;
  868. }
  869. #manage_maintenance .settings {
  870. margin: 16px 0 0 0;
  871. }
  872. /* Styles for the question and answers
  873. ------------------------------------------------- */
  874. fieldset.qa_fieldset {
  875. clear: both;
  876. display: none;
  877. }
  878. /* Styles for the manage calendar section.
  879. ------------------------------------------------- */
  880. dl.settings dt.small_caption {
  881. width: 20%;
  882. }
  883. dl.settings dd.small_caption {
  884. width: 79%;
  885. }
  886. /* Styles for the manage permissions section.
  887. ------------------------------------------------- */
  888. #permissionForm .table_grid {
  889. width: 100%;
  890. }
  891. #permissionForm .table_grid img.icon {
  892. vertical-align: top;
  893. width: 16px;
  894. }
  895. dl.admin_permissions dt {
  896. width: 35%;
  897. }
  898. dl.admin_permissions dd {
  899. width: 64%;
  900. }
  901. /* Styles for the manage search section.
  902. ------------------------------------------------- */
  903. dl.settings dt.large_caption {
  904. width: 70%;
  905. }
  906. dl.settings dd.large_caption {
  907. width: 29%;
  908. }
  909. span.search_weight {
  910. width: 40px;
  911. padding: 0 0.5em;
  912. text-align: right;
  913. }
  914. .search_settings {
  915. width: 47%;
  916. }
  917. /* Styles for the manage bans section.
  918. ------------------------------------------------- */
  919. .ban_restriction {
  920. margin: 0.2em 0 0.2em 2.2em;
  921. }
  922. .ban_settings {
  923. width: 46%;
  924. }
  925. #manage_bans dl {
  926. margin-bottom: 1em;
  927. }
  928. #manage_bans fieldset dl.settings {
  929. margin-bottom: 0;
  930. }
  931. /* Styles for the manage subscriptions section.
  932. ------------------------------------------------- */
  933. #fixed_area {
  934. width: 97%;
  935. }
  936. ul.pending_payments {
  937. margin: 0;
  938. padding: 0;
  939. }
  940. ul.pending_payments li {
  941. list-style-type: none;
  942. }
  943. /* Styles for the manage permissions section.
  944. ------------------------------------------------- */
  945. .perm_name, .perm_profile, .perm_board {
  946. display: block;
  947. width: 40%;
  948. }
  949. .perm_boards {
  950. padding: 0;
  951. margin: 0 0 0.6em 0;
  952. }
  953. .perm_boards li {
  954. list-style-type: none;
  955. border: 1px solid #cacdd3;
  956. padding: 0.2em;
  957. margin: 1px;
  958. }
  959. .perm_groups {
  960. background-color: #fff;
  961. }
  962. .perm_classic {
  963. margin: 0.2em;
  964. }
  965. .permission_groups {
  966. padding: 0;
  967. margin: 0;
  968. }
  969. .permission_groups li {
  970. list-style-type: none;
  971. padding: 0.2em;
  972. margin: 1px;
  973. }
  974. .perms {
  975. width: 20px;
  976. display: inline-block;
  977. text-align: center;
  978. }
  979. /* Styles for the themes section.
  980. ------------------------------------------------- */
  981. ul.theme_options {
  982. padding: 0;
  983. margin: 0;
  984. }
  985. ul.theme_options li {
  986. list-style: none;
  987. padding: 0.4em;
  988. }
  989. .is_directory {
  990. padding-left: 18px;
  991. background: url(../images/admin/boards.png) no-repeat;
  992. }
  993. .edit_file {
  994. width: 96%;
  995. font-family: monospace;
  996. margin-top: 1ex;
  997. white-space: pre;
  998. }
  999. dl.themes_list {
  1000. margin: 0;
  1001. }
  1002. dl.themes_list dt {
  1003. margin-bottom: 3px;
  1004. }
  1005. dl.themes_list dd {
  1006. font-style: italic;
  1007. white-space: nowrap;
  1008. }
  1009. /* Styles for the registration center.
  1010. ------------------------------------------------- */
  1011. .agreement, .reserved_names {
  1012. padding: 0;
  1013. }
  1014. #agreement, #reserved {
  1015. width: 99%;
  1016. }
  1017. /* Styles for the moderation center.
  1018. ------------------------------------------------- */
  1019. #modcenter {
  1020. display: block;
  1021. width: 100%;
  1022. }
  1023. .modblock_left {
  1024. width: 49%;
  1025. float: left;
  1026. clear: right;
  1027. margin: 0 0 1em 0;
  1028. }
  1029. .modblock_right {
  1030. width: 49%;
  1031. float: right;
  1032. margin: 0 0 1em 0;
  1033. }
  1034. .modblock_left #smfAnnouncements {
  1035. height: 15em;
  1036. overflow: auto;
  1037. }
  1038. /* Moderation Notes */
  1039. ul.moderation_notes {
  1040. margin: 0;
  1041. padding: 0;
  1042. list-style: none;
  1043. overflow: auto;
  1044. height: 10.2em;
  1045. }
  1046. ul.moderation_notes li {
  1047. padding: 0.2em;
  1048. border-bottom: 1px solid #cccccc;
  1049. }
  1050. .notes {
  1051. margin-top: 0.4em;
  1052. }
  1053. .post_note {
  1054. width: 85%;
  1055. }
  1056. /* Styles for the error log.
  1057. ------------------------------------------------- */
  1058. h3.grid_header {
  1059. height: 25px;
  1060. }
  1061. #error_log {
  1062. width: 100%;
  1063. }
  1064. #error_log tr.windowbg td, #error_log tr.windowbg2 td {
  1065. padding: 8px;
  1066. line-height: 160%;
  1067. }
  1068. #error_log td div {
  1069. -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  1070. }
  1071. #error_log td.checkbox_column {
  1072. width: 15px;
  1073. vertical-align: top;
  1074. text-align: center;
  1075. }
  1076. #error_log a img {
  1077. vertical-align: middle;
  1078. margin: 0 8px 0 0;
  1079. }
  1080. /* More error log stuff. Could still be cleaned up a bit.
  1081. --------------------------------------------------*/
  1082. #error_log {
  1083. margin: 4px 0;
  1084. }
  1085. #error_log tr:first-child td {
  1086. border-top: 2px solid #ff9400;
  1087. border-bottom: 2px solid #bf6900;
  1088. background: #fff;
  1089. padding: 8px;
  1090. }
  1091. /* Styles for the Report generation
  1092. ------------------------------------------------- */
  1093. #report_buttons {
  1094. min-height: 2.4em;
  1095. padding: 3px 0;
  1096. }
  1097. .report_results th {
  1098. border-left: 1px solid #ddd;
  1099. border-right: 1px solid #ddd;
  1100. }
  1101. /* Try out some nifty small screen friendliness, for the cost of a few more bytes. */
  1102. @media screen and (max-width: 490px),(max-width: 32em) {
  1103. body {
  1104. padding: 0;
  1105. }
  1106. #wrapper, #footer_section div.frame {
  1107. min-width: 100%;
  1108. }
  1109. #main_content_section {
  1110. padding: 0 10px;
  1111. }
  1112. /* Level 1 button background. */
  1113. .dropmenu li {
  1114. line-height: 3.2em;
  1115. }
  1116. .dropmenu li ul {
  1117. top: 3.45em;
  1118. }
  1119. .dropmenu li li a {
  1120. line-height: 3.2em;
  1121. }
  1122. h3.catbg #quick_search form {
  1123. margin: 0 0 8px 0;
  1124. padding: 0;
  1125. }
  1126. h3.catbg #quick_search form input {
  1127. margin: 0 0 12px 0;
  1128. }
  1129. h3.catbg #quick_search form select option {
  1130. padding: 4px 4px;
  1131. }
  1132. h3.catbg #quick_search form .button_submit {
  1133. margin: 0 3px 0 3px;
  1134. }
  1135. #live_news, #supportVersionsTable {
  1136. width: 100%;
  1137. }
  1138. #live_news {
  1139. margin: 0 0 6px 0;
  1140. }
  1141. #supportVersionsTable {
  1142. padding: 0;
  1143. }
  1144. #quick_tasks ul li span {
  1145. display: block;
  1146. margin: 0 0 0 50px;
  1147. }
  1148. #credits_page {
  1149. padding-top: 35px;
  1150. }
  1151. #credits_page img {
  1152. right: 6px;
  1153. }
  1154. #manage_boards .catbg {
  1155. margin-top: 10px;
  1156. }
  1157. #manage_boards .windowbg {
  1158. line-height: 3.2em;
  1159. }
  1160. #manage_boards ul {
  1161. max-height: 120em;
  1162. padding: 0 0 10px 0;
  1163. }
  1164. #manage_boards dd, #manage_boards dt {
  1165. width: 100%;
  1166. }
  1167. #manage_boards dt {
  1168. line-height: 1.6em;
  1169. }
  1170. }
  1171. /* These kids and their new-fangled thingummys. :P */
  1172. /* When I were a lad, things were different! */