rtl.css 16 KB

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