admin.css 24 KB

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