rtl.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  1. /* Common classes to ease styling.
  2. ------------------------------------------------------- */
  3. .floatright {
  4. float: left;
  5. }
  6. .floatleft {
  7. float: right;
  8. }
  9. .clear_left {
  10. clear: right;
  11. }
  12. .clear_right {
  13. clear: left;
  14. }
  15. .righttext {
  16. margin-left: auto;
  17. margin-right: 0;
  18. text-align: left;
  19. }
  20. .lefttext {
  21. margin-left: 0;
  22. margin-right: auto;
  23. text-align: right;
  24. }
  25. /* Styling for BBC tags */
  26. .bbc_list {
  27. text-align: right;
  28. }
  29. /* GenericList */
  30. .additional_row input {
  31. margin-left: 0;
  32. margin-right: 1em;
  33. }
  34. /* All the signatures used in the forum. If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
  35. .signature, .attachments {
  36. clear: left;
  37. }
  38. .custom_fields_above_signature {
  39. clear: left;
  40. }
  41. .openid_login {
  42. padding-right: 18px;
  43. padding-left: 0;
  44. }
  45. /* Lists with settings use these a lot.
  46. ------------------------------------------------------- */
  47. dl.settings {
  48. clear: left;
  49. }
  50. dl.settings dt {
  51. float: right;
  52. clear: both;
  53. }
  54. dl.settings dt.windowbg {
  55. float: right;
  56. }
  57. dl.settings dd {
  58. float: left;
  59. }
  60. dl.settings img {
  61. margin: 0 0 0 10px;
  62. }
  63. /* Styles for rounded headers.
  64. ------------------------------------------------------- */
  65. h3.catbg img.icon, h4.titlebg img.icon {
  66. vertical-align: middle;
  67. margin: -2px 0 0 5px;
  68. }
  69. h4.titlebg, h3.titlebg {
  70. padding-right: 9px;
  71. padding-left: 0;
  72. }
  73. h4.titlebg img.icon {
  74. float: right;
  75. margin: 5px 0 0 8px;
  76. }
  77. table.table_list a.unreadlink, table.table_list a.collapse {
  78. float: left;
  79. }
  80. table.table_list a.collapse {
  81. margin: 10px 1em 0 5px;
  82. }
  83. .table_grid th.first_th, tr.catbg th.first_th {
  84. background: #a8bace url(../images/theme/main_block.png) no-repeat 100% -240px;
  85. }
  86. .table_grid th.last_th, tr.catbg th.last_th {
  87. background: #a8bace url(../images/theme/main_block.png) no-repeat 0 -240px;
  88. }
  89. tr.titlebg th.first_th {
  90. background: #e3e9ef url(../images/theme/main_block.png) no-repeat 100% -340px;
  91. }
  92. tr.titlebg th.last_th {
  93. background: #e3e9ef url(../images/theme/main_block.png) no-repeat 0 -340px;
  94. }
  95. /* Styles for the standard dropdown menus.
  96. ------------------------------------------------------- */
  97. #main_menu {
  98. float: right;
  99. }
  100. .dropmenu {
  101. float: right;
  102. padding: 0;
  103. }
  104. .dropmenu li {
  105. float: right;
  106. }
  107. .dropmenu li ul {
  108. right: -999em;
  109. background: #fff url(../images/theme/menu_gfx.png) -30px -137px repeat-x;
  110. /* Note: Using a black rgba box-shadow with suitable
  111. alpha value gives the best effect on any background. */
  112. box-shadow: -1px 2px 2px rgba(0,0,0,0.3);
  113. }
  114. /* Note: The next two declarations are for keyboard access with js disabled. */
  115. .dropmenu ul a:focus {
  116. margin-right: 1109.5em;
  117. }
  118. .dropmenu ul ul a:focus {
  119. margin-right: 0;
  120. }
  121. /* Level 3 submenu wrapper positioning. */
  122. .dropmenu li ul ul {
  123. margin: -2.2em 15em 0 0;
  124. }
  125. /* Reposition Level 2 submenu as visible on hover. */
  126. .dropmenu li:hover ul, .dropmenu li.sfhover ul {
  127. right: -4px;
  128. }
  129. /* Hiding Level 3 submenu off hover. */
  130. .dropmenu li:hover ul ul, .dropmenu li.sfhover ul ul, .dropmenu li:hover ul ul ul, .dropmenu li.sfhover ul ul ul {
  131. right: -999em;
  132. }
  133. /* Reposition as visible on hover. */
  134. .dropmenu li li:hover ul, .dropmenu li li.sfhover ul {
  135. right: 14.5em;
  136. }
  137. /* Reposition as visible on hover. */
  138. .dropmenu li li:hover ul, .dropmenu li li.sfhover ul {
  139. right: 14.5em;
  140. }
  141. /* Indicator for additonal levels. Best in the anchor so it stays visible on hover. */
  142. .dropmenu li li.subsections a {
  143. background: url(../images/admin/subsection_rtl.png) no-repeat 1% 40%;
  144. }
  145. /* For no-js background. */
  146. .dropmenu li li.subsections a:focus {
  147. background: #e3e9ef url(../images/admin/subsection_rtl.png) no-repeat 1% 40%, url(../images/theme/lower_section_rtl.png) 0 0 repeat-x;
  148. }
  149. /* The dropdown menu toggle image */
  150. #menu_toggle {
  151. float: left;
  152. margin-right: 0;
  153. margin-left: 10px;
  154. padding-top: 3px;
  155. }
  156. #menu_toggle span {
  157. position: relative;
  158. left: 0;
  159. }
  160. li#collapse_button {
  161. float: left;
  162. position: relative;
  163. right: 0;
  164. }
  165. /* Styles for the standard button lists.
  166. ------------------------------------------------------- */
  167. .buttonlist ul {
  168. margin: 0 0 0 0.2em;
  169. }
  170. .buttonlist ul li a {
  171. margin-left: 0;
  172. margin-right: 12px;
  173. }
  174. .buttonlist ul li a span {
  175. left: 8px;
  176. }
  177. .align_top ul li a, .align_bottom ul li a {
  178. margin: 0 0 0 12px;
  179. }
  180. #adm_submenus {
  181. padding-left: 0;
  182. padding-right: 2em;
  183. }
  184. /* the main title, always stay at 45 pixels in height! */
  185. h1.forumtitle {
  186. float: right;
  187. }
  188. /* float these items to the left */
  189. #siteslogan, img#smflogo {
  190. float: left;
  191. }
  192. /* the upshrink image needs some tweaking */
  193. img#upshrink {
  194. float: left;
  195. }
  196. /* ..so does the SMF logo */
  197. img#smflogo {
  198. margin-right: 1em;
  199. }
  200. #upper_section div.news {
  201. float: left;
  202. text-align: left;
  203. }
  204. div#upper_section div.user {
  205. float: right;
  206. }
  207. div#upper_section div.user p {
  208. float: right;
  209. margin: 0 0 1em 1em;
  210. }
  211. div#upper_section div.user ul {
  212. padding-left: 0;
  213. padding-right: 10px;
  214. }
  215. .button_submit, .button_reset, .button_link {
  216. float: left;
  217. }
  218. #search_form {
  219. text-align: left;
  220. }
  221. /* The navigation list (i.e. linktree) */
  222. .navigate_section ul li {
  223. float: right;
  224. padding: 0 0 0 0.5em;
  225. }
  226. /* Styles for the board index.
  227. ------------------------------------------------- */
  228. /* the posting icons */
  229. #posting_icons {
  230. padding: 0 1em 0.5em 1em;
  231. }
  232. #posting_icons img {
  233. margin: 0 4ex 0 0;
  234. }
  235. #posting_icons .buttonlist {
  236. float: left;
  237. }
  238. #postbuttons_upper ul li a span {
  239. line-height: 19px;
  240. padding: 0 6px 0 0;
  241. }
  242. dl#ic_recentposts dt {
  243. float: right;
  244. }
  245. dl#ic_recentposts dd {
  246. text-align: left;
  247. }
  248. form#ic_login ul li {
  249. float: right;
  250. width: 20%;
  251. }
  252. /* the small stats */
  253. #index_common_stats {
  254. text-align: left;
  255. }
  256. img#upshrink_ic, img#newsupshrink {
  257. float: right;
  258. }
  259. /* Styles for the message (topic) index.
  260. ---------------------------------------------------- */
  261. .table_frame .table_list td.icon, .table_frame .table_list td.info, .table_frame .table_list td.stats {
  262. border-right: none;
  263. border-left: 2px solid white;
  264. }
  265. .lastpost img {
  266. float: left;
  267. }
  268. /* Styles for the display template (topic view).
  269. ---------------------------------------------------- */
  270. #postbuttons div.buttons {
  271. float: right;
  272. }
  273. #postbuttons span {
  274. text-align: left;
  275. }
  276. #postbuttons span.lower {
  277. clear: left;
  278. }
  279. #postbuttons .buttonlist {
  280. float: left;
  281. }
  282. h4#pollquestion {
  283. padding: 0.5em 2em 0.5em 0;
  284. }
  285. /* Poll vote options */
  286. #poll_options ul.options {
  287. padding: 1em 2em 0 2.5em;
  288. margin: 0 0 1em 0;
  289. }
  290. #poll_options div.submitbutton {
  291. clear: both;
  292. padding: 0 2em 1em 0;
  293. margin: 0 0 1em 0;
  294. }
  295. /* Poll results */
  296. #poll_options dl.options {
  297. padding: 1em 2em 1em 2.5em;
  298. margin: 0 0 1em 1em;
  299. }
  300. #poll_options dl.options dt {
  301. float: right;
  302. clear: right;
  303. }
  304. #poll_options dl.options dd {
  305. margin: 0 2em 0 0;
  306. float: right;
  307. }
  308. span.percent {
  309. float: left;
  310. }
  311. /* author and topic information */
  312. #forumposts h3 span#author {
  313. margin: 0 0 0 7.7em;
  314. }
  315. #forumposts h3 img {
  316. float: right;
  317. margin: 4px 0 0 0.5em;
  318. }
  319. /* poster and postarea + moderation area underneath */
  320. .poster {
  321. float: right;
  322. width: 15em;
  323. }
  324. .postarea, .moderatorbar {
  325. margin: 0 16em 0 0;
  326. }
  327. .moderatorbar {
  328. clear: left;
  329. }
  330. /* poster details and list of items */
  331. .poster h4, .poster ul {
  332. padding: 0;
  333. margin: 0 1.5em 0 1em;
  334. }
  335. .poster h4 {
  336. margin: 0.2em 1.1em 0.4em 0;
  337. }
  338. .poster ul ul {
  339. margin: 0.3em 0 0 1em;
  340. }
  341. .messageicon {
  342. float: right;
  343. margin: 0 0 0 0.5em;
  344. }
  345. .keyinfo {
  346. float: right;
  347. }
  348. .modifybutton {
  349. clear: left;
  350. float: left;
  351. margin: 8px 0 10px 20px;
  352. text-align: left;
  353. }
  354. /* The quick buttons */
  355. ul.quickbuttons {
  356. margin: 0.9em 0 0 11px;
  357. clear: left;
  358. float: left;
  359. text-align: left;
  360. }
  361. ul.quickbuttons li {
  362. float: left;
  363. margin: 0 11px 0 0;
  364. }
  365. ul.quickbuttons li a {
  366. padding: 0 20px 0 0;
  367. float: left;
  368. }
  369. ul.quickbuttons li.quote_button {
  370. background: 100% 0;
  371. }
  372. ul.quickbuttons li.remove_button {
  373. background: 100% -30px;
  374. }
  375. ul.quickbuttons li.modify_button {
  376. background: 100% -60px;
  377. }
  378. ul.quickbuttons li.approve_button {
  379. background: 100% -90px;
  380. }
  381. ul.quickbuttons li.restore_button {
  382. background: 100% -120px;
  383. }
  384. ul.quickbuttons li.split_button {
  385. background: 100% -150px;
  386. }
  387. ul.quickbuttons li.reply_button {
  388. background: 100% -180px;
  389. }
  390. ul.quickbuttons li.reply_all_button {
  391. background: 100% -180px;
  392. }
  393. ul.quickbuttons li.notify_button {
  394. background: 100% -210px;
  395. }
  396. ul.quickbuttons li.inline_mod_check {
  397. margin: 0 5px 0 0;
  398. }
  399. .post {
  400. clear: left;
  401. }
  402. .inner {
  403. padding: 1em 0 0 1em;
  404. margin: 0 0 0 1em;
  405. }
  406. #forumposts .modified {
  407. float: right;
  408. }
  409. #forumposts .reportlinks {
  410. margin-left: 1.5em;
  411. text-align: left;
  412. clear: left;
  413. }
  414. #moderationbuttons_strip {
  415. float: right;
  416. }
  417. #moderationbuttons_strip ul {
  418. margin: 0 0.2em 0 0;
  419. padding: 0 1em 0 0;
  420. }
  421. /* The jump to box */
  422. #display_jump_to {
  423. text-align: left;
  424. }
  425. /* Styles for edit post section
  426. ---------------------------------------------------- */
  427. #post_header dt {
  428. float: right;
  429. }
  430. #post_header dd {
  431. float: right;
  432. }
  433. ul.post_options {
  434. margin: 0 1em 0 0;
  435. }
  436. ul.post_options li {
  437. float: right;
  438. }
  439. #postAttachment dd, #postAttachment2 dd {
  440. margin: .3em 1em .3em 0;
  441. }
  442. #postAttachment dt, #postAttachment2 dt {
  443. font-weight: bold;
  444. }
  445. #postAttachment3 {
  446. margin-left: 0;
  447. margin-left: 1em;
  448. }
  449. .post_verification #verification_control {
  450. margin: .3em 1em .3em 0;
  451. }
  452. /* Styles for edit event section
  453. ---------------------------------------------------- */
  454. #post_event div.event_options {
  455. float: left;
  456. }
  457. #post_event #event_main input {
  458. margin: 0 0 1em 0;
  459. float: right;
  460. }
  461. #post_event #event_main div.smalltext {
  462. float: left;
  463. }
  464. #post_event ul.event_main li {
  465. float: left;
  466. }
  467. #post_event ul.event_options {
  468. padding: 0 .7em .7em 0;
  469. }
  470. #post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check {
  471. margin: 0 0 0 1em;
  472. }
  473. /* Styles for edit poll section.
  474. ---------------------------------------------------- */
  475. #edit_poll fieldset input {
  476. margin-right: 7em;
  477. }
  478. #edit_poll ul.poll_main li {
  479. padding-right: 1em;
  480. }
  481. #edit_poll ul.poll_main input {
  482. margin-right: 1em;
  483. }
  484. #edit_poll div.poll_options {
  485. float: right;
  486. }
  487. #edit_poll ul.poll_main, dl.poll_options {
  488. padding: 0 .7em 0 0;
  489. }
  490. #edit_poll dl.poll_options dt {
  491. padding: 0 1em 0 0;
  492. }
  493. #edit_poll dl.poll_options dd input {
  494. margin-right: 0;
  495. }
  496. /* Styles for the personal messages section.
  497. ------------------------------------------------- */
  498. #personal_messages h3 span#author, #personal_messages h3 span#topic_title {
  499. float: right;
  500. }
  501. #personal_messages h3 span#author {
  502. margin: 0 0.5em 0 0;
  503. }
  504. #personal_messages h3 span#topic_title {
  505. margin: 0 9em 0 0;
  506. }
  507. #personal_messages .labels {
  508. padding: 0 0 0 1em;
  509. }
  510. /* Styles for the move topic section.
  511. ---------------------------------------------------- */
  512. .move_topic {
  513. text-align: right;
  514. }
  515. /* Styles for the login areas.
  516. ------------------------------------------------------- */
  517. .login dt {
  518. float: right;
  519. }
  520. .login dd {
  521. float: right;
  522. text-align: right;
  523. }
  524. .login h3 img {
  525. margin: 0 0 0.5em;
  526. }
  527. /* Additional profile fields */
  528. dl.register_form {
  529. clear: left;
  530. }
  531. dl.register_form dt {
  532. float: right;
  533. }
  534. /* Styles for maintenance mode.
  535. ------------------------------------------------------- */
  536. #maintenance_mode {
  537. text-align: right;
  538. }
  539. #maintenance_mode img.floatleft {
  540. margin-left: 1em;
  541. }
  542. /* common for all admin sections */
  543. h3.titlebg img {
  544. margin-left: 0.5em;
  545. }
  546. tr.titlebg td {
  547. padding-right: 0.7em;
  548. }
  549. div#admin_menu {
  550. padding-right: 0;
  551. }
  552. #admin_content {
  553. clear: right;
  554. }
  555. /* Styles for sidebar menus.
  556. ------------------------------------------------------- */
  557. #left_admsection {
  558. float: right;
  559. padding-right: 0;
  560. padding-left: 10px;
  561. }
  562. .left_admmenu li {
  563. padding: 0 0.5em 0 0;
  564. }
  565. /* Styles for generic tables.
  566. ------------------------------------------------------- */
  567. .topic_table td.stickybg2 {
  568. background: url(../images/icons/quick_sticky.png) no-repeat 2% 4px;
  569. }
  570. .topic_table td.lockedbg2 {
  571. background: url(../images/icons/quick_lock.png) no-repeat 2% 4px;
  572. }
  573. .topic_table td.locked_sticky2 {
  574. background: url(../images/icons/quick_sticky_lock.png) no-repeat 2% 4px;
  575. }
  576. .topic_table td.lastpost {
  577. background: none;
  578. }
  579. /* Styles for (fatal) errors.
  580. ------------------------------------------------- */
  581. .errorbox p.alert {
  582. float: right;
  583. }
  584. /* Styles for the profile section.
  585. ------------------------------------------------- */
  586. #basicinfo {
  587. float: right;
  588. }
  589. #detailedinfo {
  590. float: left;
  591. }
  592. #basicinfo ul li {
  593. float: right;
  594. margin-right: 0;
  595. margin-left: 5px;
  596. }
  597. #detailedinfo div.content dl, #tracking div.content dl {
  598. clear: left;
  599. }
  600. #detailedinfo div.content dt, #tracking div.content dt {
  601. float: right;
  602. }
  603. #detailedinfo div.content dd, #tracking div.content dd {
  604. float: right;
  605. }
  606. #avatar_server_stored div {
  607. float: right;
  608. }
  609. #main_admsection #basicinfo h4 {
  610. float: right;
  611. }
  612. #main_admsection #basicinfo img.avatar {
  613. float: left;
  614. }
  615. #main_admsection #basicinfo ul {
  616. clear: right;
  617. }
  618. #main_admsection #basicinfo span#userstatus {
  619. clear: right;
  620. }
  621. /* Profile statistics */
  622. #generalstats div.content dt {
  623. float: right;
  624. }
  625. #generalstats div.content dd {
  626. float: right;
  627. }
  628. /* Activity by time */
  629. #activitytime {
  630. clear: right;
  631. }
  632. .activity_stats li {
  633. float: right;
  634. }
  635. .activity_stats li span {
  636. border-width: 1px 0 0 1px;
  637. }
  638. .activity_stats li.last span {
  639. border-left: none;
  640. }
  641. /* Most popular boards by posts and activity */
  642. #popularposts {
  643. float: right;
  644. }
  645. #popularactivity {
  646. float: left;
  647. }
  648. #popularposts div.content dt, #popularactivity div.content dt {
  649. float: right;
  650. }
  651. #popularposts div.content dd, #popularactivity div.content dd {
  652. float: right;
  653. }
  654. .profile_pie {
  655. background: url(../images/stats_pie_rtl.png);
  656. float: right;
  657. margin-right: 0;
  658. margin-left: 1em;
  659. }
  660. /* View posts */
  661. .topic .time {
  662. float: left;
  663. }
  664. .counter {
  665. padding: 0.2em 0.2em 0.1em 0.5em;
  666. float: right;
  667. }
  668. .topic .mod_icons {
  669. text-align: left;
  670. margin-right: 0;
  671. margin-left: 1em;
  672. }
  673. #permissions div.permission_name {
  674. margin: 0 0 0 1%;
  675. }
  676. #ip_list li.header, #ip_list li.ip {
  677. float: right;
  678. }
  679. #creator dt {
  680. float: right;
  681. }
  682. #creator dd {
  683. float: right;
  684. }
  685. .ignoreboards ul {
  686. margin: 0 1em 0 0;
  687. }
  688. .ignoreboards li {
  689. float: right;
  690. }
  691. #pick_theme {
  692. float: right;
  693. }
  694. /* Styles for the statistics center.
  695. ------------------------------------------------- */
  696. #stats_left, #top_posters, #top_topics_replies, #top_topics_starter {
  697. float: right;
  698. }
  699. #stats_right, #top_boards, #top_topics_views, #most_online {
  700. float: left;
  701. }
  702. dl.stats dt {
  703. float: right;
  704. }
  705. dl.stats dd {
  706. text-align: left;
  707. }
  708. .statsbar div.bar {
  709. float: right;
  710. }
  711. .statsbar div.bar div {
  712. right: -6px;
  713. padding: 0 0 0 6px;
  714. }
  715. tr.windowbg2 th.stats_month, tr.windowbg2 td.stats_day {
  716. text-align: right;
  717. }
  718. /* Styles for the calendar section.
  719. ------------------------------------------------- */
  720. #month_grid {
  721. float: right;
  722. }
  723. #main_grid table.weeklist td.windowbg {
  724. border-left: 2px solid #fff;
  725. border-bottom: 2px solid #fff;
  726. }
  727. #main_grid table.weeklist td.weekdays {
  728. text-align: left;
  729. vertical-align: middle;
  730. border-right: 2px solid #fff;
  731. border-bottom: 2px solid #fff;
  732. }
  733. /* Styles for the advanced search section.
  734. ------------------------------------------------- */
  735. #searchform fieldset {
  736. text-align: right;
  737. }
  738. #advanced_search dt {
  739. float: right;
  740. text-align: left;
  741. }
  742. #advanced_search dd {
  743. float: right;
  744. margin: 0 0.5em 0 0;
  745. text-align: right;
  746. }
  747. /* Boards picker */
  748. #searchform fieldset div#searchBoardsExpand ul {
  749. margin: 0 1em 0 0;
  750. }
  751. #searchform fieldset div#searchBoardsExpand li {
  752. float: right;
  753. }
  754. #searchform fieldset p {
  755. text-align: right;
  756. }
  757. .search_results_posts .buttons {
  758. padding: 5px 0 0 1em;
  759. }
  760. /* Styles for the help section.
  761. ------------------------------------------------- */
  762. #helpmain h3.section {
  763. padding: 0 0.5em 0.5em 0;
  764. }
  765. /* put back the bullets please */
  766. #helpmain ul {
  767. margin: 0 2em 1em 0;
  768. padding-left: 0;
  769. padding-right: 1em;
  770. }
  771. #helpmain #messageindex {
  772. clear: left;
  773. }
  774. /* Styles for the admincenter (reverse admin.css).
  775. ------------------------------------------------- */
  776. #quick_search {
  777. margin-left: 5px;
  778. }
  779. .features_image {
  780. float: right;
  781. margin: 0 1em 0.5em 2em;
  782. }
  783. .features_switch {
  784. float: left;
  785. }
  786. .features h4 {
  787. padding: 1em 0.5em 0.5em 0;
  788. }
  789. /* admin home */
  790. #live_news div.content dl {
  791. padding: 0.5em 0.5em 0 0;
  792. }
  793. #smfAnnouncements dd {
  794. padding: 0;
  795. margin: 0 1.5em 1em 0;
  796. }
  797. #quick_tasks li {
  798. float: right;
  799. list-style-type: none;
  800. }
  801. .home_image {
  802. float: right;
  803. }
  804. /* common admin classes */
  805. .additional_row input {
  806. margin-left: 0;
  807. margin-right: 2em;
  808. }
  809. #error_log td div.marginleft {
  810. margin: 0 1ex 0 0 !important;
  811. }
  812. /* Styles for the package manager.
  813. ------------------------------------------------- */
  814. #package_list .tborder {
  815. margin: .25em 26px .25em 0;
  816. }
  817. #package_list ol, #package_list ol li {
  818. margin-left: 0;
  819. margin-right: 50px;
  820. }
  821. /* ManageBoards */
  822. #manage_boards ul {
  823. overflow: hidden;
  824. }
  825. #manage_boards li {
  826. overflow: hidden;
  827. }
  828. .move_links {
  829. padding: 0 0 0 13px;
  830. }
  831. span.search_weight {
  832. text-align: left;
  833. }
  834. /* Manage Bans */
  835. .ban_restriction {
  836. margin: 0.2em 2.2em 0.2em 0;
  837. }
  838. /* Themes */
  839. .is_directory {
  840. padding-right: 18px;
  841. background: url(../images/admin/boards.png) no-repeat 100% 0;
  842. }
  843. /* Styles for the moderation center.
  844. ------------------------------------------------- */
  845. .modblock_left {
  846. float: right;
  847. clear: left;
  848. }
  849. .modblock_right {
  850. float: left;
  851. }
  852. ul.moderation_notes li {
  853. padding: 4px 4px 4px 0;
  854. }