admin.css 29 KB

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