rtl.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879
  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 .icon, h4.titlebg .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 .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. /* Styles for the message (topic) index.
  262. ---------------------------------------------------- */
  263. .table_frame .table_list td.icon, .table_frame .table_list td.info, .table_frame .table_list td.stats {
  264. border-right: none;
  265. border-left: 2px solid white;
  266. }
  267. .lastpost img {
  268. float: left;
  269. }
  270. #message_index_jump_to label {
  271. margin-left: 14px;
  272. }
  273. /* Styles for the display template (topic view).
  274. ---------------------------------------------------- */
  275. #postbuttons div.buttons {
  276. float: right;
  277. }
  278. #postbuttons span {
  279. text-align: left;
  280. }
  281. #postbuttons span.lower {
  282. clear: left;
  283. }
  284. #postbuttons .buttonlist {
  285. float: left;
  286. }
  287. h4#pollquestion {
  288. padding: 0.5em 2em 0.5em 0;
  289. }
  290. /* Poll vote options */
  291. #poll_options ul.options {
  292. padding: 1em 2em 0 2.5em;
  293. margin: 0 0 1em 0;
  294. }
  295. #poll_options div.submitbutton {
  296. clear: both;
  297. padding: 0 2em 1em 0;
  298. margin: 0 0 1em 0;
  299. }
  300. /* Poll results */
  301. #poll_options dl.options {
  302. padding: 1em 2em 1em 2.5em;
  303. margin: 0 0 1em 1em;
  304. }
  305. #poll_options dl.options dt {
  306. float: right;
  307. clear: right;
  308. }
  309. #poll_options dl.options dd {
  310. margin: 0 2em 0 0;
  311. float: right;
  312. }
  313. span.percent {
  314. float: left;
  315. }
  316. /* author and topic information */
  317. #forumposts h3 span#author {
  318. margin: 0 0 0 7.7em;
  319. }
  320. #forumposts h3 img {
  321. float: right;
  322. margin: 4px 0 0 0.5em;
  323. }
  324. /* poster and postarea + moderation area underneath */
  325. .poster {
  326. float: right;
  327. width: 15em;
  328. }
  329. .postarea, .moderatorbar {
  330. margin: 0 16em 0 0;
  331. }
  332. .moderatorbar {
  333. clear: left;
  334. }
  335. /* poster details and list of items */
  336. .poster h4, .poster ul {
  337. padding: 0;
  338. margin: 0 1.5em 0 1em;
  339. }
  340. .poster h4 {
  341. margin: 0.2em 1.1em 0.4em 0;
  342. }
  343. .poster ul ul {
  344. margin: 0.3em 0 0 1em;
  345. }
  346. .messageicon {
  347. float: right;
  348. margin: 0 0 0 0.5em;
  349. }
  350. #display_jump_to select {
  351. margin: 0;
  352. }
  353. .modifybutton {
  354. clear: left;
  355. float: left;
  356. margin: 8px 0 10px 20px;
  357. text-align: left;
  358. }
  359. /* The quick buttons */
  360. ul.quickbuttons {
  361. margin: 0.9em 0 0 11px;
  362. clear: left;
  363. float: left;
  364. text-align: left;
  365. }
  366. ul.quickbuttons li {
  367. float: left;
  368. margin: 0 0 0 0;
  369. }
  370. ul.quickbuttons li a {
  371. padding: 0 20px 0 0;
  372. float: left;
  373. }
  374. ul.quickbuttons li.quote_button {
  375. background: 100% 0;
  376. }
  377. ul.quickbuttons li.remove_button {
  378. background: 100% -30px;
  379. }
  380. ul.quickbuttons li.modify_button {
  381. background: 100% -60px;
  382. }
  383. ul.quickbuttons li.approve_button {
  384. background: 100% -90px;
  385. }
  386. ul.quickbuttons li.restore_button {
  387. background: 100% -120px;
  388. }
  389. ul.quickbuttons li.split_button {
  390. background: 100% -150px;
  391. }
  392. ul.quickbuttons li.reply_button {
  393. background: 100% -180px;
  394. }
  395. ul.quickbuttons li.reply_all_button {
  396. background: 100% -180px;
  397. }
  398. ul.quickbuttons li.notify_button {
  399. background: 100% -210px;
  400. }
  401. ul.quickbuttons li.inline_mod_check {
  402. margin: 0 5px 0 0;
  403. }
  404. .post {
  405. clear: left;
  406. }
  407. .inner {
  408. padding: 1em 0 0 1em;
  409. margin: 0 0 0 1em;
  410. }
  411. #forumposts .modified {
  412. float: right;
  413. }
  414. #forumposts .reportlinks {
  415. margin-left: 1.5em;
  416. text-align: left;
  417. clear: left;
  418. }
  419. #moderationbuttons_strip {
  420. float: right;
  421. }
  422. #moderationbuttons_strip ul {
  423. margin: 0 0.2em 0 0;
  424. padding: 0 1em 0 0;
  425. }
  426. /* The jump to box */
  427. #display_jump_to {
  428. text-align: left;
  429. }
  430. /* Styles for edit post section
  431. ---------------------------------------------------- */
  432. #post_header dt {
  433. float: right;
  434. }
  435. #post_header dd {
  436. float: right;
  437. }
  438. ul.post_options {
  439. margin: 0 1em 0 0;
  440. }
  441. ul.post_options li {
  442. float: right;
  443. }
  444. #postAttachment dd, #postAttachment2 dd {
  445. margin: .3em 1em .3em 0;
  446. }
  447. #postAttachment dt, #postAttachment2 dt {
  448. font-weight: bold;
  449. }
  450. .post_verification #verification_control {
  451. margin: .3em 1em .3em 0;
  452. }
  453. /* Styles for edit event section
  454. ---------------------------------------------------- */
  455. #post_event div.event_options {
  456. float: left;
  457. }
  458. #post_event #event_main input {
  459. margin: 0 0 1em 0;
  460. float: right;
  461. }
  462. #post_event #event_main div.smalltext {
  463. float: left;
  464. }
  465. #post_event ul.event_main li {
  466. float: left;
  467. }
  468. #post_event ul.event_options {
  469. padding: 0 .7em .7em 0;
  470. }
  471. #post_event #event_main select, #post_event ul.event_options li select, #post_event ul.event_options li .input_check {
  472. margin: 0 0 0 1em;
  473. }
  474. /* Styles for edit poll section.
  475. ---------------------------------------------------- */
  476. #edit_poll fieldset input {
  477. margin-right: 7em;
  478. }
  479. #edit_poll ul.poll_main li {
  480. padding-right: 1em;
  481. }
  482. #edit_poll ul.poll_main input {
  483. margin-right: 1em;
  484. }
  485. #edit_poll div.poll_options {
  486. float: right;
  487. }
  488. #edit_poll ul.poll_main, dl.poll_options {
  489. padding: 0 .7em 0 0;
  490. }
  491. #edit_poll dl.poll_options dt {
  492. padding: 0 1em 0 0;
  493. }
  494. #edit_poll dl.poll_options dd input {
  495. margin-right: 0;
  496. }
  497. /* Styles for the personal messages section.
  498. ------------------------------------------------- */
  499. #personal_messages h3 span#author, #personal_messages h3 span#topic_title {
  500. float: right;
  501. }
  502. #personal_messages h3 span#author {
  503. margin: 0 0.5em 0 0;
  504. }
  505. #personal_messages h3 span#topic_title {
  506. margin: 0 9em 0 0;
  507. }
  508. #personal_messages .labels {
  509. padding: 0 0 0 1em;
  510. }
  511. /* Styles for the move topic section.
  512. ---------------------------------------------------- */
  513. .move_topic {
  514. text-align: right;
  515. }
  516. /* Styles for the login areas.
  517. ------------------------------------------------------- */
  518. .login dt {
  519. float: right;
  520. }
  521. .login dd {
  522. float: right;
  523. text-align: right;
  524. }
  525. .login h3 img {
  526. margin: 0 0 0.5em;
  527. }
  528. /* Additional profile fields */
  529. dl.register_form {
  530. clear: left;
  531. }
  532. dl.register_form dt {
  533. float: right;
  534. }
  535. /* Styles for maintenance mode.
  536. ------------------------------------------------------- */
  537. #maintenance_mode {
  538. text-align: right;
  539. }
  540. #maintenance_mode img.floatleft {
  541. margin-left: 1em;
  542. }
  543. /* common for all admin sections */
  544. h3.titlebg img {
  545. margin-left: 0.5em;
  546. }
  547. tr.titlebg td {
  548. padding-right: 0.7em;
  549. }
  550. div#admin_menu {
  551. padding-right: 0;
  552. }
  553. #admin_content {
  554. clear: right;
  555. }
  556. /* Styles for generic tables.
  557. ------------------------------------------------------- */
  558. .topic_table td.lastpost {
  559. background: none;
  560. }
  561. #info_center .cat_bar, .table_grid tr.catbg th {
  562. text-align: right;
  563. }
  564. .message_index_title {
  565. margin-left: 40px;
  566. }
  567. /* Styles for (fatal) errors.
  568. ------------------------------------------------- */
  569. .errorbox p.alert {
  570. float: right;
  571. }
  572. /* Styles for the profile section.
  573. ------------------------------------------------- */
  574. #basicinfo {
  575. float: right;
  576. }
  577. #detailedinfo {
  578. float: left;
  579. }
  580. #basicinfo ul li {
  581. float: right;
  582. margin-right: 0;
  583. margin-left: 5px;
  584. }
  585. #detailedinfo div.content dl, #tracking div.content dl {
  586. clear: left;
  587. }
  588. #detailedinfo div.content dt, #tracking div.content dt {
  589. float: right;
  590. }
  591. #detailedinfo div.content dd, #tracking div.content dd {
  592. float: right;
  593. }
  594. #avatar_server_stored div {
  595. float: right;
  596. }
  597. /* Profile statistics */
  598. #generalstats div.content dt {
  599. float: right;
  600. }
  601. #generalstats div.content dd {
  602. float: right;
  603. }
  604. /* Activity by time */
  605. #activitytime {
  606. clear: right;
  607. }
  608. .activity_stats li {
  609. float: right;
  610. }
  611. .activity_stats li span {
  612. border-width: 1px 0 0 1px;
  613. }
  614. .activity_stats li.last span {
  615. border-left: none;
  616. }
  617. /* Most popular boards by posts and activity */
  618. #popularposts {
  619. float: right;
  620. }
  621. #popularactivity {
  622. float: left;
  623. }
  624. #popularposts div.content dt, #popularactivity div.content dt {
  625. float: right;
  626. }
  627. #popularposts div.content dd, #popularactivity div.content dd {
  628. float: right;
  629. }
  630. .profile_pie {
  631. background: url(../images/stats_pie_rtl.png);
  632. float: right;
  633. margin-right: 0;
  634. margin-left: 1em;
  635. }
  636. /* View posts */
  637. .topic .time {
  638. float: left;
  639. }
  640. .counter {
  641. padding: 0.2em 0.2em 0.1em 0.5em;
  642. float: right;
  643. }
  644. .topic .mod_icons {
  645. text-align: left;
  646. margin-right: 0;
  647. margin-left: 1em;
  648. }
  649. #permissions div.permission_name {
  650. margin: 0 0 0 1%;
  651. }
  652. #ip_list li.header, #ip_list li.ip {
  653. float: right;
  654. }
  655. #creator dt {
  656. float: right;
  657. }
  658. #creator dd {
  659. float: right;
  660. }
  661. .ignoreboards ul {
  662. margin: 0 1em 0 0;
  663. }
  664. .ignoreboards li {
  665. float: right;
  666. }
  667. #pick_theme {
  668. float: right;
  669. }
  670. /* Styles for the statistics center.
  671. ------------------------------------------------- */
  672. #stats_left, #top_posters, #top_topics_replies, #top_topics_starter {
  673. float: right;
  674. }
  675. #stats_right, #top_boards, #top_topics_views, #most_online {
  676. float: left;
  677. }
  678. dl.stats dt {
  679. float: right;
  680. }
  681. dl.stats dd {
  682. text-align: left;
  683. }
  684. .statsbar div.bar {
  685. float: right;
  686. }
  687. .statsbar div.bar div {
  688. right: -6px;
  689. padding: 0 0 0 6px;
  690. }
  691. tr.windowbg2 th.stats_month, tr.windowbg2 td.stats_day {
  692. text-align: right;
  693. }
  694. #stats tr.windowbg2 th.lefttext, #stats tr.titlebg th.lefttext {
  695. text-align: right;
  696. }
  697. /* Styles for the advanced search section.
  698. ------------------------------------------------- */
  699. #searchform fieldset {
  700. text-align: right;
  701. }
  702. #advanced_search dt {
  703. float: right;
  704. text-align: left;
  705. }
  706. #advanced_search dd {
  707. float: right;
  708. margin: 0 0.5em 0 0;
  709. text-align: right;
  710. }
  711. /* Boards picker */
  712. #searchform fieldset p {
  713. text-align: right;
  714. }
  715. .search_results_posts .buttons {
  716. padding: 5px 0 0 1em;
  717. }
  718. /* Some icons need slight tweaks
  719. ------------------------------------------------- */
  720. .generic_icons.move {
  721. background-position: -112px -48px;
  722. }
  723. /* Styles for the help section.
  724. ------------------------------------------------- */
  725. #helpmain h3.section {
  726. padding: 0 0.5em 0.5em 0;
  727. }
  728. /* put back the bullets please */
  729. #helpmain ul {
  730. margin: 0 2em 1em 0;
  731. padding-left: 0;
  732. padding-right: 1em;
  733. }
  734. #helpmain #messageindex {
  735. clear: left;
  736. }
  737. /* Styles for the admincenter (reverse admin.css).
  738. ------------------------------------------------- */
  739. #quick_search {
  740. margin-left: 5px;
  741. }
  742. /* admin home */
  743. #live_news div.content dl {
  744. padding: 0.5em 0.5em 0 0;
  745. }
  746. #smfAnnouncements dd {
  747. padding: 0;
  748. margin: 0 1.5em 1em 0;
  749. }
  750. #quick_tasks li {
  751. float: right;
  752. list-style-type: none;
  753. }
  754. .home_image {
  755. float: right;
  756. }
  757. /* common admin classes */
  758. .additional_row input {
  759. margin-left: 0;
  760. margin-right: 2em;
  761. }
  762. #error_log td div.marginleft {
  763. margin: 0 1ex 0 0 !important;
  764. }
  765. /* Styles for the package manager.
  766. ------------------------------------------------- */
  767. #package_list .tborder {
  768. margin: .25em 26px .25em 0;
  769. }
  770. #package_list ol, #package_list ol li {
  771. margin-left: 0;
  772. margin-right: 50px;
  773. }
  774. /* ManageBoards */
  775. #manage_boards ul {
  776. overflow: hidden;
  777. }
  778. #manage_boards li {
  779. overflow: hidden;
  780. }
  781. .move_links {
  782. padding: 0 0 0 13px;
  783. }
  784. span.search_weight {
  785. text-align: left;
  786. }
  787. /* Manage Bans */
  788. .ban_restriction {
  789. margin: 0.2em 2.2em 0.2em 0;
  790. }
  791. /* Themes */
  792. .is_directory {
  793. padding-right: 18px;
  794. background: url(../images/admin/boards.png) no-repeat 100% 0;
  795. }
  796. /* Styles for the moderation center.
  797. ------------------------------------------------- */
  798. .modblock_left {
  799. float: right;
  800. clear: left;
  801. }
  802. .modblock_right {
  803. float: left;
  804. }
  805. ul.moderation_notes li {
  806. padding: 4px 4px 4px 0;
  807. }
  808. #inner_wrap a.avatar {
  809. float: right;
  810. width: 46px;
  811. }
  812. .unread_links {
  813. float: left !important;
  814. padding-left: 0;
  815. }