PageRenderTime 353ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-admin/css/wp-admin-rtl.css

https://bitbucket.org/jstroschein/wordpress-3.5.1-clean
CSS | 2633 lines | 1907 code | 500 blank | 226 comment | 0 complexity | 620275fd3634fa3de131961e666bfd91 MD5 | raw file
  1. /*------------------------------------------------------------------------------
  2. Hello, this is the RTL version of the main WordPress admin CSS file.
  3. All the important stuff is in here.
  4. TABLE OF CONTENTS:
  5. ------------------
  6. 1.0 - Text Elements
  7. 2.0 - Forms
  8. 3.0 - Actions
  9. 4.0 - Notifications
  10. 5.0 - TinyMCE
  11. 6.0 - Admin Header
  12. 6.1 - Screen Options Tabs
  13. 7.0 - Main Navigation
  14. 8.0 - Layout Blocks
  15. 9.0 - Dashboard
  16. 10.0 - List Posts
  17. 10.1 - Inline Editing
  18. 11.0 - Write/Edit Post Screen
  19. 11.1 - Custom Fields
  20. 11.2 - Post Revisions
  21. 11.3 - Featured Images
  22. 12.0 - Categories
  23. 13.0 - Tags
  24. 14.0 - Media Screen
  25. 14.1 - Media Uploader
  26. 14.2 - Image Editor
  27. 15.0 - Comments Screen
  28. 16.0 - Themes
  29. 16.1 - Custom Header
  30. 16.2 - Custom Background
  31. 16.3 - Tabbed Admin Screen Interface
  32. 17.0 - Plugins
  33. 18.0 - Users
  34. 19.0 - Tools
  35. 20.0 - Settings
  36. 21.0 - Admin Footer
  37. 22.0 - About Pages
  38. 23.0 - Misc
  39. 24.0 - Dead
  40. 25.0 - TinyMCE tweaks
  41. 26.0 - Full Overlay w/ Sidebar
  42. 27.0 - Customize Loader
  43. ------------------------------------------------------------------------------*/
  44. /*------------------------------------------------------------------------------
  45. 1.0 - Text Styles
  46. ------------------------------------------------------------------------------*/
  47. ol {
  48. margin-left: 0;
  49. margin-right: 2em;
  50. }
  51. .code, code {
  52. font-family: monospace;
  53. direction: ltr;
  54. }
  55. .quicktags, .search {
  56. font: 12px Tahoma, Arial, sans-serif;
  57. }
  58. .icon32 {
  59. float: right;
  60. margin-right: 0;
  61. margin-left: 8px;
  62. }
  63. .icon16 {
  64. float: right;
  65. margin-right: -8px;
  66. margin-left: 0;
  67. }
  68. .howto {
  69. font-style: normal;
  70. font-family: Tahoma, Arial, sans-serif;
  71. }
  72. p.install-help {
  73. font-style: normal;
  74. }
  75. /*------------------------------------------------------------------------------
  76. 2.0 - Forms
  77. ------------------------------------------------------------------------------*/
  78. #doaction,
  79. #doaction2,
  80. #post-query-submit {
  81. margin-right: 0;
  82. margin-left: 8px;
  83. }
  84. #timezone_string option {
  85. margin-left: 0;
  86. margin-right: 1em;
  87. }
  88. #pass-strength-result {
  89. float: right;
  90. margin: 13px 1px 5px 5px;
  91. }
  92. p.search-box {
  93. float: left;
  94. }
  95. .search-box input[name="s"],
  96. #search-plugins input[name="s"],
  97. .tagsdiv .newtag {
  98. float: right;
  99. margin-right: 0;
  100. margin-left: 4px;
  101. }
  102. input[type=password] {
  103. direction: ltr;
  104. }
  105. input[type="text"].ui-autocomplete-loading {
  106. background: transparent url('../images/loading.gif') no-repeat left center;
  107. }
  108. ul#add-to-blog-users {
  109. margin: 0 14px 0 0;
  110. }
  111. .ui-autocomplete li {
  112. text-align: right;
  113. }
  114. /*------------------------------------------------------------------------------
  115. 3.0 - Actions
  116. ------------------------------------------------------------------------------*/
  117. #delete-action {
  118. float: right;
  119. }
  120. #publishing-action {
  121. float: left;
  122. text-align: left;
  123. }
  124. #publishing-action .spinner {
  125. float: right;
  126. }
  127. #post-body .misc-pub-section {
  128. border-right: 0;
  129. border-left-width: 1px;
  130. border-left-style: solid;
  131. }
  132. #post-body .misc-pub-section-last {
  133. border-left: 0;
  134. }
  135. #minor-publishing-actions {
  136. padding: 10px 8px 2px 10px;
  137. text-align: left;
  138. }
  139. #save-post {
  140. float: right;
  141. }
  142. .preview {
  143. float: left;
  144. }
  145. #sticky-span {
  146. margin-left: 0;
  147. margin-right: 18px;
  148. }
  149. .side-info ul {
  150. padding-left: 0;
  151. padding-right: 18px;
  152. }
  153. td.action-links,
  154. th.action-links {
  155. text-align: left;
  156. }
  157. /*------------------------------------------------------------------------------
  158. 4.0 - Notifications
  159. ------------------------------------------------------------------------------*/
  160. form.upgrade .hint {
  161. font-style: normal;
  162. }
  163. #ajax-response.alignleft {
  164. margin-left: 0;
  165. margin-right: 2em;
  166. }
  167. /*------------------------------------------------------------------------------
  168. 5.0 - TinyMCE
  169. ------------------------------------------------------------------------------*/
  170. #quicktags {
  171. background-position: right top;
  172. }
  173. #ed_reply_toolbar input {
  174. margin: 1px 1px 1px 2px;
  175. }
  176. /*------------------------------------------------------------------------------
  177. 6.0 - Admin Header
  178. ------------------------------------------------------------------------------*/
  179. #wphead {
  180. height: 32px;
  181. margin-left: 15px;
  182. margin-right: 2px;
  183. }
  184. #header-logo {
  185. float: right;
  186. }
  187. #wphead h1 {
  188. float: right;
  189. }
  190. /*------------------------------------------------------------------------------
  191. 6.1 - Screen Options Tabs
  192. ------------------------------------------------------------------------------*/
  193. #screen-meta-links {
  194. margin-right: 0;
  195. margin-left: 24px;
  196. }
  197. #screen-meta {
  198. margin-right: 5px;
  199. margin-left: 15px;
  200. }
  201. #screen-options-link-wrap,
  202. #contextual-help-link-wrap {
  203. float: left;
  204. margin-left: 0;
  205. margin-right: 6px;
  206. }
  207. #screen-meta-links a.show-settings {
  208. padding-right: 6px;
  209. padding-left: 16px;
  210. }
  211. .toggle-arrow {
  212. background-position: top right;
  213. }
  214. .toggle-arrow-active {
  215. background-position: bottom right;
  216. }
  217. .metabox-prefs label {
  218. padding-right: 0;
  219. padding-left: 15px;
  220. }
  221. .metabox-prefs label input {
  222. margin-right: 2px;
  223. margin-left: 5px;
  224. }
  225. /*------------------------------------------------------------------------------
  226. 6.2 - Help Menu
  227. ------------------------------------------------------------------------------*/
  228. #contextual-help-wrap {
  229. margin-left: 0;
  230. margin-right: -4px;
  231. }
  232. #contextual-help-back {
  233. left: 170px;
  234. right: 150px;
  235. }
  236. #contextual-help-wrap.no-sidebar #contextual-help-back {
  237. left: 0;
  238. right: 150px;
  239. border-right-width: 1px;
  240. border-left-width: 0;
  241. -webkit-border-bottom-right-radius: 0;
  242. border-bottom-right-radius: 0;
  243. -webkit-border-bottom-left-radius: 2px;
  244. border-bottom-left-radius: 2px;
  245. }
  246. .contextual-help-tabs {
  247. float: right;
  248. }
  249. .contextual-help-tabs a {
  250. padding-left: 5px;
  251. padding-right: 12px;
  252. }
  253. .contextual-help-tabs .active {
  254. margin-right: 0;
  255. margin-left: -1px;
  256. }
  257. .contextual-help-tabs .active,
  258. .contextual-help-tabs-wrap {
  259. border-left: 0;
  260. border-right-width: 1px;
  261. }
  262. .help-tab-content {
  263. margin-right: 0;
  264. margin-left: 22px;
  265. }
  266. .help-tab-content li {
  267. margin-left: 0;
  268. margin-right: 18px;
  269. }
  270. .contextual-help-sidebar {
  271. float: left;
  272. padding-right: 12px;
  273. padding-left: 8px;
  274. }
  275. /*------------------------------------------------------------------------------
  276. 7.0 - Main Navigation (Right Menu) (RTL: Left Menu)
  277. ------------------------------------------------------------------------------*/
  278. .folded #wpcontent {
  279. margin-left: 0;
  280. margin-right: 52px;
  281. }
  282. .folded.wp-admin #wpfooter {
  283. margin-left: 15px;
  284. margin-right: 52px;
  285. }
  286. #adminmenuback,
  287. #adminmenuwrap {
  288. border-width: 0 0 0 1px;
  289. }
  290. #adminmenushadow {
  291. right: auto;
  292. left: 0;
  293. }
  294. #adminmenu li .wp-submenu {
  295. left: auto;
  296. right: 146px;
  297. }
  298. .folded #adminmenu .wp-submenu.sub-open,
  299. .folded #adminmenu .opensub .wp-submenu,
  300. .folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
  301. .folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
  302. .folded #adminmenu a.menu-top:focus + .wp-submenu,
  303. .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
  304. .no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
  305. left: auto;
  306. right: 32px;
  307. }
  308. #adminmenu div.wp-menu-image,
  309. .folded #adminmenu div.wp-menu-image {
  310. float: right;
  311. width: 30px;
  312. }
  313. #adminmenu .wp-submenu a,
  314. #adminmenu li li a,
  315. .folded #adminmenu .wp-not-current-submenu li a {
  316. padding-left: 0;
  317. padding-right: 12px;
  318. }
  319. #adminmenu .wp-not-current-submenu li a {
  320. padding-left: 0;
  321. padding-right: 18px;
  322. }
  323. .wp-menu-arrow {
  324. right: 0;
  325. -moz-transform: translate( -139px );
  326. -webkit-transform: translate( -139px );
  327. -o-transform: translate( -139px );
  328. -ms-transform: translate( -139px );
  329. transform: translate( -139px );
  330. }
  331. .ie8 .wp-menu-arrow {
  332. right: -20px;
  333. }
  334. #adminmenu .wp-menu-arrow div {
  335. left: -8px;
  336. width: 16px;
  337. }
  338. #adminmenu li.wp-not-current-submenu .wp-menu-arrow {
  339. -moz-transform: translate( -138px );
  340. -webkit-transform: translate( -138px );
  341. -o-transform: translate( -138px );
  342. -ms-transform: translate( -138px );
  343. transform: translate( -138px );
  344. }
  345. .folded #adminmenu li .wp-menu-arrow {
  346. -moz-transform: translate( -26px );
  347. -webkit-transform: translate( -26px );
  348. -o-transform: translate( -26px );
  349. -ms-transform: translate( -26px );
  350. transform: translate( -26px );
  351. }
  352. #adminmenu .wp-not-current-submenu .wp-menu-arrow div {
  353. border-style: solid solid none none;
  354. border-width: 1px 1px 0 0;
  355. }
  356. #adminmenu .wp-menu-image img {
  357. padding: 7px 7px 0 0;
  358. }
  359. #adminmenu .wp-submenu .wp-submenu-head {
  360. padding: 5px 10px 5px 4px;
  361. -webkit-border-top-right-radius: 0;
  362. -webkit-border-top-left-radius: 3px;
  363. border-top-right-radius: 0;
  364. border-top-left-radius: 3px;
  365. }
  366. .folded #adminmenu li.wp-has-current-submenu .wp-submenu {
  367. border-width: 1px;
  368. border-style: solid;
  369. -webkit-border-bottom-right-radius: 0;
  370. -webkit-border-bottom-left-radius: 3px;
  371. -webkit-border-top-right-radius: 0;
  372. -webkit-border-top-left-radius: 3px;
  373. border-bottom-right-radius: 0;
  374. border-bottom-left-radius: 3px;
  375. border-top-right-radius: 0;
  376. border-top-left-radius: 3px;
  377. }
  378. #adminmenu .awaiting-mod,
  379. #adminmenu span.update-plugins,
  380. #sidemenu li a span.update-plugins {
  381. font-family: Tahoma, Arial, sans-serif;
  382. margin-left: 0;
  383. margin-right: 7px;
  384. }
  385. #collapse-button {
  386. float: right;
  387. }
  388. /* Auto-folding of the admin menu */
  389. @media only screen and (max-width: 900px) {
  390. .auto-fold #wpcontent {
  391. margin-left: 0;
  392. margin-right: 52px;
  393. }
  394. .auto-fold.wp-admin #wpfooter {
  395. margin-left: 15px;
  396. margin-right: 52px;
  397. }
  398. .auto-fold #adminmenu div.wp-menu-image {
  399. float: right;
  400. width: 30px;
  401. }
  402. .auto-fold #adminmenu .wp-submenu.sub-open,
  403. .auto-fold #adminmenu .opensub .wp-submenu,
  404. .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
  405. .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
  406. .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
  407. .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
  408. .no-js.auto-fold #adminmenu .wp-has-submenu:hover .wp-submenu {
  409. left: auto;
  410. right: 32px;
  411. }
  412. .auto-fold #adminmenu .wp-not-current-submenu li a {
  413. padding-left: 0;
  414. padding-right: 12px;
  415. }
  416. .auto-fold #adminmenu li .wp-menu-arrow {
  417. -moz-transform: translate( -27px );
  418. -webkit-transform: translate( -27px );
  419. -o-transform: translate( -27px );
  420. -ms-transform: translate( -27px );
  421. transform: translate( -27px );
  422. }
  423. .auto-fold #adminmenu li.wp-has-current-submenu .wp-submenu {
  424. border-width: 1px;
  425. border-style: solid;
  426. -webkit-border-bottom-right-radius: 0;
  427. -webkit-border-bottom-left-radius: 3px;
  428. -webkit-border-top-right-radius: 0;
  429. -webkit-border-top-left-radius: 3px;
  430. border-bottom-right-radius: 0;
  431. border-bottom-left-radius: 3px;
  432. border-top-right-radius: 0;
  433. border-top-left-radius: 3px;
  434. }
  435. }
  436. /* List table styles */
  437. .post-com-count-wrapper {
  438. font-family: Tahoma, Arial, sans-serif;
  439. }
  440. .post-com-count {
  441. background-image: url('../images/bubble_bg-rtl.gif');
  442. }
  443. .column-response .post-com-count {
  444. float: right;
  445. margin-right: 0;
  446. margin-left: 5px;
  447. }
  448. .response-links {
  449. float: right;
  450. }
  451. /*------------------------------------------------------------------------------
  452. 8.0 - Layout Blocks
  453. ------------------------------------------------------------------------------*/
  454. .widefat th {
  455. font-family: Tahoma, Arial, sans-serif;
  456. }
  457. .postbox-container {
  458. float: right;
  459. }
  460. #post-body-content {
  461. float: right;
  462. }
  463. #poststuff #post-body.columns-2 {
  464. margin-left: 300px;
  465. margin-right: 0;
  466. }
  467. #post-body.columns-2 #postbox-container-1 {
  468. float: left;
  469. margin-left: -300px;
  470. margin-right: 0;
  471. }
  472. @media only screen and (max-width: 850px) {
  473. #wpbody-content #post-body.columns-2 #postbox-container-1 {
  474. margin-left: 0;
  475. }
  476. }
  477. .postbox .handlediv {
  478. float: left;
  479. }
  480. /*------------------------------------------------------------------------------
  481. 9.0 - Dashboard
  482. ------------------------------------------------------------------------------*/
  483. #the-comment-list p.comment-author img {
  484. float: right;
  485. margin-right: 0;
  486. margin-left: 8px;
  487. }
  488. /* Browser Nag */
  489. #dashboard_browser_nag p.browser-update-nag.has-browser-icon {
  490. padding-right: 0;
  491. padding-left: 125px;
  492. }
  493. /* Welcome Panel */
  494. .welcome-panel .welcome-panel-close {
  495. right: auto;
  496. left: 10px;
  497. }
  498. .welcome-panel .welcome-panel-close:before {
  499. left: auto;
  500. right: -12px;
  501. }
  502. .welcome-panel-content {
  503. margin-left: 0;
  504. margin-right: 13px;
  505. }
  506. .welcome-panel .welcome-panel-column {
  507. float: right;
  508. }
  509. .welcome-panel .welcome-panel-column ul {
  510. margin-right: 0;
  511. margin-left: 1em;
  512. }
  513. .welcome-panel .welcome-panel-column li {
  514. padding-left: 0;
  515. padding-right: 2px;
  516. }
  517. .welcome-panel .welcome-add-page {
  518. background-position: right 2px;
  519. }
  520. .welcome-panel .welcome-edit-page {
  521. background-position: right -90px;
  522. }
  523. .welcome-panel .welcome-learn-more {
  524. background-position: right -136px;
  525. }
  526. .welcome-panel .welcome-comments {
  527. background-position: right -182px;
  528. }
  529. .welcome-panel .welcome-view-site {
  530. background-position: right -274px;
  531. }
  532. .welcome-panel .welcome-widgets-menus {
  533. background-position: right -229px;
  534. line-height: 14px;
  535. }
  536. .welcome-panel .welcome-write-blog {
  537. background-position: right -44px;
  538. }
  539. .welcome-panel .welcome-icon {
  540. padding: 2px 32px 8px 0;
  541. }
  542. @media screen and (max-width: 870px) {
  543. .welcome-panel .welcome-panel-column li {
  544. margin-right: 0;
  545. margin-left: 13px;
  546. }
  547. .welcome-panel .welcome-icon {
  548. padding-right: 25px;
  549. padding-left: 0;
  550. }
  551. }
  552. /*------------------------------------------------------------------------------
  553. 10.0 - List Posts (/Pages/etc)
  554. ------------------------------------------------------------------------------*/
  555. .fixed .column-comments {
  556. text-align: right;
  557. }
  558. .fixed .column-comments .vers {
  559. padding-left: 0;
  560. padding-right: 3px;
  561. }
  562. .fixed .column-comments a {
  563. float: right;
  564. }
  565. .sorting-indicator {
  566. margin-left: 0;
  567. margin-right: 7px;
  568. }
  569. th.sortable a span,
  570. th.sorted a span {
  571. float: right;
  572. }
  573. /* Bulk Actions */
  574. .tablenav-pages a {
  575. margin-right: 0;
  576. margin-left: 1px;
  577. }
  578. .tablenav-pages .next-page {
  579. margin-left: 0;
  580. margin-right: 2px;
  581. }
  582. .tablenav a.button-secondary {
  583. margin: 3px 0 0 8px;
  584. }
  585. .tablenav .tablenav-pages {
  586. float: left;
  587. }
  588. .tablenav .displaying-num {
  589. margin-right: 0;
  590. margin-left: 10px;
  591. font-family: Tahoma, Arial, sans-serif;
  592. font-style: normal;
  593. }
  594. .tablenav .actions {
  595. padding: 2px 0 0 8px;
  596. }
  597. .tablenav .actions select {
  598. float: right;
  599. margin-right: 0;
  600. margin-left: 6px;
  601. }
  602. .tablenav .delete {
  603. margin-right: 0;
  604. margin-left: 20px;
  605. }
  606. .view-switch {
  607. float: left;
  608. }
  609. .filter {
  610. float: right;
  611. margin: -5px 10px 0 0;
  612. }
  613. .filter .subsubsub {
  614. margin-left: 0;
  615. margin-right: -10px;
  616. }
  617. #posts-filter fieldset {
  618. float: right;
  619. margin: 0 0 1em 1.5ex;
  620. }
  621. #posts-filter fieldset legend {
  622. padding: 0 1px .2em 0;
  623. }
  624. /*------------------------------------------------------------------------------
  625. 10.1 - Inline Editing
  626. ------------------------------------------------------------------------------*/
  627. #wpbody-content .inline-edit-row fieldset {
  628. float: right;
  629. }
  630. #wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
  631. border-width: 0 1px 0 0;
  632. }
  633. #wpbody-content .bulk-edit-row .inline-edit-col-bottom {
  634. float: left;
  635. }
  636. .inline-edit-row fieldset label span.title {
  637. float: right;
  638. }
  639. .inline-edit-row fieldset label span.input-text-wrap {
  640. margin-left: 0;
  641. margin-right: 5em;
  642. }
  643. .quick-edit-row-post fieldset.inline-edit-col-right label span.title {
  644. padding-right: 0;
  645. padding-left: 0.5em;
  646. }
  647. #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
  648. margin-right: 0;
  649. margin-left: 0.5em
  650. }
  651. /* Styling */
  652. .inline-edit-row fieldset span.title,
  653. .inline-edit-row fieldset span.checkbox-title {
  654. font-family: Tahoma, Arial, sans-serif;
  655. font-style: normal;
  656. }
  657. .inline-edit-row fieldset .inline-edit-date {
  658. float: right;
  659. }
  660. .inline-edit-row fieldset ul.cat-checklist label,
  661. .inline-edit-row .catshow,
  662. .inline-edit-row .cathide,
  663. .inline-edit-row #bulk-titles div {
  664. font-family: Tahoma, Arial, sans-serif;
  665. }
  666. .quick-edit-row-post fieldset label.inline-edit-status {
  667. float: right;
  668. }
  669. #bulk-titles div a {
  670. float: right;
  671. margin: 3px -2px 0 3px;
  672. overflow: hidden;
  673. text-indent: -9999px;
  674. }
  675. /*------------------------------------------------------------------------------
  676. 11.0 - Write/Edit Post Screen
  677. ------------------------------------------------------------------------------*/
  678. #save-action .spinner,
  679. #show-comments a,
  680. #show-comments .spinner {
  681. float: right;
  682. }
  683. #titlediv #title-prompt-text,
  684. #wp-fullscreen-title-prompt-text {
  685. right: 0;
  686. }
  687. #sample-permalink {
  688. direction: ltr;
  689. }
  690. #sample-permalink #editable-post-name {
  691. unicode-bidi: embed;
  692. }
  693. #wp-fullscreen-title-prompt-text {
  694. left: auto;
  695. right: 0;
  696. }
  697. #wp-fullscreen-save .spinner,
  698. #wp-fullscreen-save .fs-saved {
  699. float: left;
  700. }
  701. #edit-slug-box .cancel {
  702. margin-right: 0;
  703. margin-left: 10px;
  704. }
  705. .postarea h3 label {
  706. float: right;
  707. }
  708. .submitbox .submit {
  709. text-align: right;
  710. }
  711. .inside-submitbox #post_status {
  712. margin: 2px -2px 2px 0;
  713. }
  714. .submitbox .submit input {
  715. margin-right: 0;
  716. margin-left: 4px;
  717. }
  718. #normal-sortables .postbox .submit {
  719. float: left;
  720. }
  721. .taxonomy div.tabs-panel {
  722. margin: 0 125px 0 5px;
  723. }
  724. #side-sortables .comments-box thead th,
  725. #normal-sortables .comments-box thead th {
  726. font-style: normal;
  727. }
  728. #commentsdiv .spinner {
  729. padding-left: 0;
  730. padding-right: 5px;
  731. }
  732. #post-body .add-menu-item-tabs li.tabs {
  733. border-width: 1px 1px 1px 0;
  734. margin-right: 0;
  735. margin-left: -1px;
  736. }
  737. /* Global classes */
  738. #post-body .tagsdiv #newtag {
  739. margin-right: 0;
  740. margin-left: 5px;
  741. }
  742. .autosave-info {
  743. padding: 2px 2px 2px 15px;
  744. text-align: left;
  745. }
  746. #post-body .wp_themeSkin .mceStatusbar a.mceResize {
  747. background: transparent url('../images/resize-rtl.gif') no-repeat scroll left bottom;
  748. cursor: sw-resize;
  749. }
  750. .curtime #timestamp {
  751. background-position: right top;
  752. padding-left: 0;
  753. padding-right: 18px;
  754. }
  755. .compat-attachment-fields th {
  756. padding-right: 0;
  757. padding-left: 10px;
  758. }
  759. /*------------------------------------------------------------------------------
  760. 11.1 - Custom Fields
  761. ------------------------------------------------------------------------------*/
  762. /* No RTL for now, this space intentionally left blank */
  763. /*------------------------------------------------------------------------------
  764. 11.2 - Post Revisions
  765. ------------------------------------------------------------------------------*/
  766. table.diff td, table.diff th {
  767. font-family: Consolas, Monaco, monospace;
  768. }
  769. /*------------------------------------------------------------------------------
  770. 11.3 - Featured Images
  771. ------------------------------------------------------------------------------*/
  772. #select-featured-image a {
  773. float: right;
  774. }
  775. /*------------------------------------------------------------------------------
  776. 12.0 - Categories
  777. ------------------------------------------------------------------------------*/
  778. .category-adder {
  779. margin-left: 0;
  780. margin-right: 120px;
  781. }
  782. #post-body ul.add-menu-item-tabs {
  783. float: right;
  784. text-align: left;
  785. /* Negative margin for the sake of those without JS: all tabs display */
  786. margin: 0 5px 0 -120px;
  787. }
  788. #post-body ul.add-menu-item-tabs li.tabs {
  789. -webkit-border-top-left-radius: 0;
  790. -webkit-border-top-right-radius: 3px;
  791. -webkit-border-bottom-left-radius: 0;
  792. -webkit-border-bottom-right-radius: 3px;
  793. border-top-left-radius: 0;
  794. border-top-right-radius: 3px;
  795. border-bottom-left-radius: 0;
  796. border-bottom-right-radius: 3px;
  797. }
  798. #front-page-warning,
  799. #front-static-pages ul,
  800. ul.export-filters,
  801. .inline-editor ul.cat-checklist ul,
  802. .categorydiv ul.categorychecklist ul,
  803. .customlinkdiv ul.categorychecklist ul,
  804. .posttypediv ul.categorychecklist ul,
  805. .taxonomydiv ul.categorychecklist ul {
  806. margin-left: 0;
  807. margin-right: 18px;
  808. }
  809. #post-body .add-menu-item-tabs li.tabs {
  810. border-style: solid solid solid none;
  811. border-width: 1px 1px 1px 0;
  812. margin-right: 0;
  813. margin-left: -1px;
  814. }
  815. p.help,
  816. p.description,
  817. span.description,
  818. .form-wrap p {
  819. font-style: normal;
  820. font-family: Tahoma, Arial, sans-serif;
  821. }
  822. /*------------------------------------------------------------------------------
  823. 13.0 - Tags
  824. ------------------------------------------------------------------------------*/
  825. .taghint {
  826. margin: 15px 12px -24px 0;
  827. }
  828. #poststuff .tagsdiv .howto {
  829. margin: 0 8px 6px 0;
  830. }
  831. .ac_results li {
  832. text-align: right;
  833. }
  834. .links-table th {
  835. text-align: right;
  836. }
  837. /*------------------------------------------------------------------------------
  838. 14.0 - Media Screen
  839. ------------------------------------------------------------------------------*/
  840. #wpbody-content .describe th {
  841. text-align: right;
  842. }
  843. .describe .media-item-info .A1B1 {
  844. padding: 0 10px 0 0;
  845. }
  846. .media-upload-form td label {
  847. margin-left: 6px;
  848. margin-right: 2px;
  849. }
  850. .media-upload-form .align .field label {
  851. padding: 0 23px 0 0;
  852. margin: 0 3px 0 1em;
  853. }
  854. .media-upload-form tr.image-size label {
  855. margin: 0 5px 0 0;
  856. }
  857. #wpbody-content .describe p.help {
  858. padding: 0 5px 0 0;
  859. }
  860. .media-item .edit-attachment,
  861. .media-item .error-div a.dismiss,
  862. .describe-toggle-on,
  863. .describe-toggle-off {
  864. float: left;
  865. margin-right: 0;
  866. margin-left: 15px;
  867. }
  868. .media-item .error-div a.dismiss {
  869. padding: 0 15px 0 0;
  870. }
  871. .media-item .error-div {
  872. padding-left: 0;
  873. padding-right: 10px;
  874. }
  875. .media-item .pinkynail {
  876. float: right;
  877. }
  878. .media-item .describe td {
  879. padding: 0 0 8px 8px;
  880. }
  881. .media-item .progress {
  882. float: left;
  883. margin: 6px 0 0 10px;
  884. }
  885. /*------------------------------------------------------------------------------
  886. 14.1 - Media Uploader
  887. ------------------------------------------------------------------------------*/
  888. #find-posts-input {
  889. float: right;
  890. }
  891. #find-posts-search {
  892. float: right;
  893. margin-right: 3px;
  894. margin-left: 4px;
  895. }
  896. .find-box-search .spinner {
  897. left: auto;
  898. right: 115px;
  899. }
  900. #find-posts-response .found-radio {
  901. padding: 5px 8px 0 0;
  902. }
  903. .find-box-search label {
  904. padding-right: 0;
  905. padding-left: 6px;
  906. }
  907. .find-box #resize-se {
  908. right: auto;
  909. left: 1px;
  910. }
  911. form.upgrade .hint {
  912. font-style: normal;
  913. }
  914. /*------------------------------------------------------------------------------
  915. 14.2 - Image Editor
  916. ------------------------------------------------------------------------------*/
  917. .wp_attachment_image .button,
  918. .A1B1 .button {
  919. float: right;
  920. }
  921. .wp_attachment_image .spinner,
  922. .A1B1 .spinner {
  923. float: right;
  924. }
  925. .imgedit-menu div {
  926. float: right;
  927. }
  928. .imgedit-crop {
  929. margin: 0;
  930. }
  931. .imgedit-rleft,
  932. .imgedit-flipv,
  933. .imgedit-undo {
  934. margin: 0 8px 0 3px;
  935. }
  936. .imgedit-rright,
  937. .imgedit-fliph,
  938. .imgedit-redo {
  939. margin: 0 3px;
  940. }
  941. .imgedit-applyto img {
  942. margin: 0 0 0 8px;
  943. }
  944. .imgedit-help {
  945. font-style: normal;
  946. }
  947. .imgedit-submit-btn {
  948. margin-left: 0;
  949. margin-right: 20px;
  950. }
  951. /*------------------------------------------------------------------------------
  952. 15.0 - Comments Screen
  953. ------------------------------------------------------------------------------*/
  954. .form-table th {
  955. text-align: right;
  956. }
  957. .form-table input.tog {
  958. margin-right: 0;
  959. margin-left: 2px;
  960. float: right;
  961. }
  962. .form-table table.color-palette {
  963. float: right;
  964. }
  965. /* reply to comments */
  966. #replysubmit .spinner,
  967. .inline-edit-save .spinner {
  968. float: left;
  969. }
  970. #replysubmit .button {
  971. margin-right: 0;
  972. margin-left: 5px;
  973. }
  974. #edithead .inside {
  975. float: right;
  976. padding: 3px 5px 2px 0;
  977. }
  978. .comment-ays th {
  979. border-right-style: none;
  980. border-left-style: solid;
  981. border-right-width: 0;
  982. border-left-width: 1px;
  983. }
  984. .spam-undo-inside .avatar,
  985. .trash-undo-inside .avatar {
  986. margin-left: 8px;
  987. }
  988. #comment-status-radio input {
  989. margin: 2px 0 5px 3px;
  990. }
  991. /*------------------------------------------------------------------------------
  992. 16.0 - Themes
  993. ------------------------------------------------------------------------------*/
  994. h3.available-themes {
  995. float: right;
  996. }
  997. .available-theme {
  998. margin-right: 0;
  999. margin-left: 10px;
  1000. padding: 20px 0 20px 20px;
  1001. }
  1002. #current-theme .theme-info li,
  1003. .theme-options li,
  1004. .available-theme .action-links li {
  1005. float: right;
  1006. padding-right: 0;
  1007. padding-left: 10px;
  1008. margin-right: 0;
  1009. margin-left: 10px;
  1010. border-right: none;
  1011. border-left: 1px solid #dfdfdf;
  1012. }
  1013. .available-theme .action-links li {
  1014. padding-left: 8px;
  1015. margin-left: 8px;
  1016. }
  1017. .ie8 .available-theme .action-links li {
  1018. padding-left: 7px;
  1019. margin-left: 7px;
  1020. }
  1021. #current-theme .theme-info li:last-child,
  1022. .theme-options li:last-child,
  1023. .available-theme .action-links li:last-child {
  1024. padding-left: 0;
  1025. margin-right: 0;
  1026. border-left: 0;
  1027. }
  1028. .available-theme .action-links .delete-theme {
  1029. float: left;
  1030. margin-left: 0;
  1031. margin-right: 8px;
  1032. }
  1033. .available-theme .action-links p {
  1034. float: right;
  1035. }
  1036. #current-theme.has-screenshot {
  1037. padding-left: 0;
  1038. padding-right: 330px;
  1039. }
  1040. #current-theme h4 span {
  1041. margin-left: 0;
  1042. margin-right: 20px;
  1043. }
  1044. #current-theme img {
  1045. float: right;
  1046. width: 300px;
  1047. margin-left: 0;
  1048. margin-right: -330px;
  1049. }
  1050. .theme-options .load-customize {
  1051. margin-right: 0;
  1052. margin-left: 30px;
  1053. float: right;
  1054. }
  1055. .theme-options span {
  1056. float: right;
  1057. margin-right: 0;
  1058. margin-left: 10px;
  1059. }
  1060. .theme-options ul {
  1061. float: right;
  1062. }
  1063. /* Allow for three-up on 1024px wide screens, e.g. tablets */
  1064. @media only screen and (max-width: 1200px) {
  1065. #current-theme.has-screenshot {
  1066. padding-right: 270px;
  1067. }
  1068. #current-theme img {
  1069. margin-right: -270px;
  1070. width: 240px;
  1071. }
  1072. }
  1073. #broken-themes {
  1074. text-align: right;
  1075. }
  1076. /*------------------------------------------------------------------------------
  1077. 16.1 - Custom Header Screen
  1078. ------------------------------------------------------------------------------*/
  1079. .appearance_page_custom-header .available-headers .default-header {
  1080. float: right;
  1081. margin: 0 0 20px 20px;
  1082. }
  1083. .appearance_page_custom-header .random-header {
  1084. margin: 0 0 20px 20px;
  1085. }
  1086. .appearance_page_custom-header .available-headers label input,
  1087. .appearance_page_custom-header .random-header label input {
  1088. margin-right: 0;
  1089. margin-left: 10px;
  1090. }
  1091. /*------------------------------------------------------------------------------
  1092. 16.2 - Custom Background Screen
  1093. ------------------------------------------------------------------------------*/
  1094. /* No RTL for now, this space intentionally left blank */
  1095. /*------------------------------------------------------------------------------
  1096. 16.3 - Tabbed Admin Screen Interface (Experimental)
  1097. ------------------------------------------------------------------------------*/
  1098. .nav-tab {
  1099. margin: 0 0 -1px 6px;
  1100. }
  1101. h2 .nav-tab {
  1102. font-family: Tahoma, Arial, sans-serif;
  1103. }
  1104. /*------------------------------------------------------------------------------
  1105. 17.0 - Plugins
  1106. ------------------------------------------------------------------------------*/
  1107. .plugins .desc ul,
  1108. .plugins .desc ol {
  1109. margin: 0 2em 0 0;
  1110. }
  1111. #wpbody-content .plugins .plugin-title, #wpbody-content .plugins .theme-title {
  1112. padding-right: 0;
  1113. padding-left: 12px;
  1114. }
  1115. /*------------------------------------------------------------------------------
  1116. 18.0 - Users
  1117. ------------------------------------------------------------------------------*/
  1118. #profile-page .form-table #rich_editing {
  1119. margin-right: 0;
  1120. margin-left: 5px
  1121. }
  1122. #profile-page #pass1,
  1123. #profile-page #pass2,
  1124. #profile-page #user_login {
  1125. direction: ltr;
  1126. }
  1127. #your-profile legend {
  1128. font-family: Tahoma, Arial, sans-serif;
  1129. }
  1130. /*------------------------------------------------------------------------------
  1131. 19.0 - Tools
  1132. ------------------------------------------------------------------------------*/
  1133. .pressthis a span {
  1134. background-position: right 5px;
  1135. padding: 8px 27px 8px 11px;
  1136. }
  1137. .pressthis a:after {
  1138. right: auto;
  1139. left: 10px;
  1140. background: transparent;
  1141. transform: skew(-20deg) rotate(-6deg);
  1142. -webkit-transform: skew(-20deg) rotate(-6deg);
  1143. -moz-transform: skew(-20deg) rotate(-6deg);
  1144. }
  1145. .pressthis a:hover:after {
  1146. transform: skew(-20deg) rotate(-9deg);
  1147. -webkit-transform: skew(-20deg) rotate(-9deg);
  1148. -moz-transform: skew(-20deg) rotate(-9deg);
  1149. }
  1150. /*------------------------------------------------------------------------------
  1151. 20.0 - Settings
  1152. ------------------------------------------------------------------------------*/
  1153. #utc-time, #local-time {
  1154. padding-left: 0;
  1155. padding-right: 25px;
  1156. font-style: normal;
  1157. font-family: Tahoma, Arial, sans-serif;
  1158. }
  1159. /*------------------------------------------------------------------------------
  1160. 21.0 - Admin Footer
  1161. ------------------------------------------------------------------------------*/
  1162. #wpfooter {
  1163. margin-left: 20px;
  1164. }
  1165. #wpcontent,
  1166. #wpfooter {
  1167. margin-right: 165px;
  1168. }
  1169. /*------------------------------------------------------------------------------
  1170. 22.0 - About Pages
  1171. ------------------------------------------------------------------------------*/
  1172. .wrap.about-wrap {
  1173. margin-left: 40px;
  1174. margin-right: 20px;
  1175. }
  1176. .about-wrap h1,
  1177. .about-text {
  1178. margin-right: 0;
  1179. margin-left: 200px;
  1180. }
  1181. .about-wrap h2.nav-tab-wrapper {
  1182. padding-left: 0px;
  1183. padding-right: 6px;
  1184. }
  1185. .about-wrap .wp-badge {
  1186. right: auto;
  1187. left: 0;
  1188. }
  1189. .about-wrap h2 .nav-tab {
  1190. margin-right: 0;
  1191. margin-left: 3px;
  1192. }
  1193. .about-wrap .changelog li {
  1194. margin-left: 0;
  1195. margin-right: 3em;
  1196. }
  1197. .about-wrap .three-col-images .last-feature {
  1198. float: left;
  1199. }
  1200. .about-wrap .three-col-images .first-feature {
  1201. float: right;
  1202. }
  1203. .about-wrap .feature-section.three-col div {
  1204. margin-right: 0;
  1205. margin-left: 4.999999999%;
  1206. float: right;
  1207. }
  1208. .about-wrap .feature-section.three-col h4 {
  1209. text-align: right;
  1210. }
  1211. .about-wrap .feature-section.three-col img {
  1212. margin-right: 5px;
  1213. margin-left: 0;
  1214. }
  1215. .about-wrap .feature-section.three-col .last-feature {
  1216. margin-left: 0;
  1217. }
  1218. .about-wrap .feature-section img {
  1219. margin: 0 0 10px 0.7%;
  1220. }
  1221. .about-wrap .feature-section.images-stagger-right img {
  1222. float: left;
  1223. margin: 0 2em 12px 5px;
  1224. }
  1225. .about-wrap .feature-section.images-stagger-left img {
  1226. float: right;
  1227. margin: 0 5px 12px 2em;
  1228. }
  1229. .about-wrap li.wp-person,
  1230. .about-wrap li.wp-person img.gravatar {
  1231. float: right;
  1232. margin-right: 0;
  1233. margin-left: 10px;
  1234. }
  1235. @media only screen and (max-width: 768px) {
  1236. .about-wrap .feature-section img.image-66 {
  1237. float: none;
  1238. }
  1239. .about-wrap .feature-section.images-stagger-right img.image-66 {
  1240. margin-right: 3px;
  1241. }
  1242. .about-wrap .feature-section.images-stagger-left img.image-66 {
  1243. margin-left: 3px;
  1244. }
  1245. }
  1246. /*------------------------------------------------------------------------------
  1247. 23.0 - Misc
  1248. ------------------------------------------------------------------------------*/
  1249. #template div {
  1250. margin-right: 0;
  1251. margin-left: 190px;
  1252. }
  1253. .column-author img, .column-username img {
  1254. float: right;
  1255. margin-right: 0;
  1256. margin-left: 10px;
  1257. }
  1258. .tagchecklist {
  1259. margin-left: 0;
  1260. margin-right: 14px;
  1261. }
  1262. .tagchecklist strong {
  1263. margin-left: 0;
  1264. margin-right: -8px;
  1265. }
  1266. .tagchecklist span {
  1267. margin-right: 0;
  1268. margin-left: 25px;
  1269. float: right;
  1270. }
  1271. .tagchecklist span a {
  1272. margin: 6px -9px 0pt 0pt;
  1273. float: right;
  1274. }
  1275. #poststuff h2 {
  1276. clear: right;
  1277. }
  1278. #poststuff h3,
  1279. .metabox-holder h3 {
  1280. font-family: Tahoma, Arial, sans-serif;
  1281. }
  1282. .tool-box .title {
  1283. font-family: Tahoma, Arial, sans-serif;
  1284. }
  1285. #sidemenu {
  1286. margin: -30px 315px 0 15px;
  1287. float: left;
  1288. padding-left: 0;
  1289. padding-right: 10px;
  1290. }
  1291. #sidemenu a {
  1292. float: right;
  1293. }
  1294. table .vers,
  1295. table .column-visible,
  1296. table .column-rating {
  1297. text-align: right;
  1298. }
  1299. .screen-meta-toggle {
  1300. right: auto;
  1301. left: 15px;
  1302. }
  1303. .screen-reader-text,
  1304. .screen-reader-text span,
  1305. .ui-helper-hidden-accessible {
  1306. left: auto;
  1307. right: -1000em;
  1308. }
  1309. .screen-reader-shortcut:focus {
  1310. left: auto;
  1311. right: 6px;
  1312. }
  1313. /*------------------------------------------------------------------------------
  1314. 24.0 - Dead
  1315. ------------------------------------------------------------------------------*/
  1316. /* - Not used anywhere in WordPress - verify and then deprecate
  1317. ------------------------------------------------------------------------------*/
  1318. /* No RTL for now, this space intentionally left blank */
  1319. /* - Only used once or twice in all of WP - deprecate for global style
  1320. ------------------------------------------------------------------------------*/
  1321. * html #template div {margin-left: 0;}
  1322. /* - Used - but could/should be deprecated with a CSS reset
  1323. ------------------------------------------------------------------------------*/
  1324. /* No RTL for now, this space intentionally left blank */
  1325. /*------------------------------------------------------------------------------
  1326. 25.0 - TinyMCE tweaks
  1327. Small tweaks for until tinymce css files are proprely RTLized
  1328. ------------------------------------------------------------------------------*/
  1329. #editorcontainer .wp_themeSkin .mceStatusbar {
  1330. padding-left: 0;
  1331. padding-right: 5px;
  1332. }
  1333. #editorcontainer .wp_themeSkin .mceStatusbar div {
  1334. float: right;
  1335. }
  1336. #editorcontainer .wp_themeSkin .mceStatusbar a.mceResize {
  1337. float: left;
  1338. }
  1339. #content-resize-handle {
  1340. background: transparent url('../images/resize-rtl.gif') no-repeat scroll left bottom;
  1341. right: auto;
  1342. left: 2px;
  1343. cursor: sw-resize;
  1344. }
  1345. /*------------------------------------------------------------------------------
  1346. 26.0 - Full Overlay w/ Sidebar
  1347. ------------------------------------------------------------------------------*/
  1348. .wp-full-overlay .wp-full-overlay-sidebar {
  1349. margin: 0;
  1350. left: auto;
  1351. right: 0;
  1352. border-right: 0;
  1353. border-left: 1px solid rgba( 0, 0, 0, 0.2 );
  1354. }
  1355. .wp-full-overlay-sidebar:after {
  1356. right: auto;
  1357. left: 0;
  1358. box-shadow: inset 5px 0 4px -4px rgba(0, 0, 0, 0.1);
  1359. }
  1360. .wp-full-overlay.collapsed,
  1361. .wp-full-overlay.expanded .wp-full-overlay-sidebar {
  1362. margin-right: 0 !important;
  1363. }
  1364. .wp-full-overlay.expanded {
  1365. margin-right: 300px;
  1366. margin-left: 0;
  1367. }
  1368. .wp-full-overlay.collapsed .wp-full-overlay-sidebar {
  1369. margin-right: -300px;
  1370. margin-left: 0;
  1371. }
  1372. /* Collapse Button */
  1373. .wp-full-overlay .collapse-sidebar {
  1374. right: 0;
  1375. left: auto;
  1376. margin-right: 15px;
  1377. }
  1378. .wp-full-overlay.collapsed .collapse-sidebar {
  1379. right: 100%;
  1380. }
  1381. .wp-full-overlay .collapse-sidebar-arrow {
  1382. margin-right: 2px;
  1383. margin-left: 0;
  1384. background: transparent url('../images/arrows.png') no-repeat 0 -108px;
  1385. }
  1386. .wp-full-overlay.collapsed .collapse-sidebar-arrow {
  1387. background-position: 0 -72px;
  1388. }
  1389. .wp-full-overlay .collapse-sidebar-label {
  1390. right: 100%;
  1391. left: auto;
  1392. margin-right: 10px;
  1393. margin-left: 0;
  1394. }
  1395. /*------------------------------------------------------------------------------
  1396. 27.0 - Customize Loader
  1397. ------------------------------------------------------------------------------*/
  1398. .install-theme-info .theme-install {
  1399. float: left;
  1400. }
  1401. /* MERGED */
  1402. /* global */
  1403. /* 2 column liquid layout */
  1404. #wpcontent {
  1405. margin-left: 0;
  1406. margin-right: 165px;
  1407. }
  1408. #wpbody-content {
  1409. float: right;
  1410. }
  1411. #adminmenuwrap {
  1412. float: right;
  1413. }
  1414. #adminmenu {
  1415. clear: right;
  1416. }
  1417. /* inner 2 column liquid layout */
  1418. .inner-sidebar {
  1419. float: left;
  1420. clear: left;
  1421. }
  1422. .has-right-sidebar #post-body {
  1423. float: right;
  1424. clear: right;
  1425. margin-right: 0;
  1426. margin-left: -340px;
  1427. }
  1428. .has-right-sidebar #post-body-content {
  1429. margin-right: 0;
  1430. margin-left: 300px;
  1431. }
  1432. /* 2 columns main area */
  1433. #col-right {
  1434. float: left;
  1435. clear: left;
  1436. }
  1437. /* utility classes*/
  1438. .alignleft {
  1439. float: right;
  1440. }
  1441. .alignright {
  1442. float: left;
  1443. }
  1444. .textleft {
  1445. text-align: right;
  1446. }
  1447. .textright {
  1448. text-align: left;
  1449. }
  1450. /* styles for use by people extending the WordPress interface */
  1451. body,
  1452. td,
  1453. textarea,
  1454. input,
  1455. select {
  1456. font-family: Tahoma, Arial, sans-serif;
  1457. }
  1458. ul.ul-disc,
  1459. ul.ul-square,
  1460. ol.ol-decimal {
  1461. margin-left: 0;
  1462. margin-right: 1.8em;
  1463. }
  1464. .subsubsub {
  1465. float: right;
  1466. }
  1467. .widefat thead th:first-of-type {
  1468. -webkit-border-top-left-radius: 0;
  1469. -webkit-border-top-right-radius: 3px;
  1470. border-top-left-radius: 0;
  1471. border-top-right-radius: 3px;
  1472. }
  1473. .widefat thead th:last-of-type {
  1474. -webkit-border-top-right-radius: 0;
  1475. -webkit-border-top-left-radius: 3px;
  1476. border-top-right-radius: 0;
  1477. border-top-left-radius: 3px;
  1478. }
  1479. .widefat tfoot th:first-of-type {
  1480. -webkit-border-bottom-left-radius: 0;
  1481. -webkit-border-bottom-right-radius: 3px;
  1482. border-bottom-left-radius: 0;
  1483. border-bottom-right-radius: 3px;
  1484. }
  1485. .widefat tfoot th:last-of-type {
  1486. -webkit-border-bottom-right-radius: 0;
  1487. -webkit-border-bottom-left-radius: 3px;
  1488. border-bottom-right-radius: 0;
  1489. border-bottom-left-radius: 3px;
  1490. }
  1491. .widefat th {
  1492. text-align: right;
  1493. }
  1494. .widefat th input {
  1495. margin: 0 8px 0 0;
  1496. }
  1497. .wrap {
  1498. margin-right: 0;
  1499. margin-left: 15px;
  1500. }
  1501. .wrap h2,
  1502. .subtitle {
  1503. font-family: Tahoma, Arial, sans-serif;
  1504. }
  1505. .wrap h2 {
  1506. padding-right: 0;
  1507. padding-left: 15px;
  1508. }
  1509. .subtitle {
  1510. padding-left: 0;
  1511. padding-right: 25px;
  1512. }
  1513. .wrap .add-new-h2 {
  1514. font-family: Tahoma, Arial, sans-serif;
  1515. margin-left: 0;
  1516. margin-right: 4px;
  1517. }
  1518. .wrap h2.long-header {
  1519. padding-left: 0;
  1520. }
  1521. /* dashboard */
  1522. #dashboard-widgets-wrap .has-sidebar {
  1523. margin-right: 0;
  1524. margin-left: -51%;
  1525. }
  1526. #dashboard-widgets-wrap .has-sidebar .has-sidebar-content {
  1527. margin-right: 0;
  1528. margin-left: 51%;
  1529. }
  1530. .view-all {
  1531. right: auto;
  1532. left: 0;
  1533. }
  1534. #dashboard_right_now p.sub,
  1535. #dashboard-widgets h4,
  1536. a.rsswidget,
  1537. #dashboard_plugins h4,
  1538. #dashboard_plugins h5,
  1539. #dashboard_recent_comments .comment-meta .approve,
  1540. #dashboard_right_now td.b,
  1541. #dashboard_right_now .versions a {
  1542. font-family: Tahoma, Arial, sans-serif;
  1543. }
  1544. #dashboard_right_now p.sub {
  1545. left:auto;
  1546. right:15px;
  1547. }
  1548. #dashboard_right_now td.b {
  1549. padding-right: 0;
  1550. padding-left: 6px;
  1551. text-align: left;
  1552. }
  1553. #dashboard_right_now .t {
  1554. padding-right: 0;
  1555. padding-left: 12px;
  1556. }
  1557. #dashboard_right_now .table_content {
  1558. float:right;
  1559. }
  1560. #dashboard_right_now .table_discussion {
  1561. float:left;
  1562. }
  1563. #dashboard_right_now a.button {
  1564. float: left;
  1565. clear: left;
  1566. }
  1567. #dashboard_plugins .inside span {
  1568. padding-left: 0;
  1569. padding-right: 5px;
  1570. }
  1571. #dashboard-widgets h3 .postbox-title-action {
  1572. right: auto;
  1573. left: 10px;
  1574. }
  1575. .js #dashboard-widgets h3 .postbox-title-action {
  1576. right: auto;
  1577. left: 30px;
  1578. }
  1579. #the-comment-list .pingback {
  1580. padding-left: 0 !important;
  1581. padding-right: 9px !important;
  1582. }
  1583. /* Recent Comments */
  1584. #the-comment-list .comment-item {
  1585. padding: 1em 70px 1em 10px;
  1586. }
  1587. #the-comment-list .comment-item .avatar {
  1588. float: right;
  1589. margin-left: 0;
  1590. margin-right: -60px;
  1591. }
  1592. /* Feeds */
  1593. .rss-widget cite {
  1594. text-align: left;
  1595. }
  1596. .rss-widget span.rss-date {
  1597. font-family: Tahoma, Arial, sans-serif;
  1598. margin-left: 0;
  1599. margin-right: 3px;
  1600. }
  1601. /* QuickPress */
  1602. #dashboard-widgets #dashboard_quick_press form p.submit input {
  1603. float: right;
  1604. }
  1605. #dashboard-widgets #dashboard_quick_press form p.submit #save-post {
  1606. margin: 0 1px 0 0.7em;
  1607. }
  1608. #dashboard-widgets #dashboard_quick_press form p.submit #publish {
  1609. float: left;
  1610. }
  1611. #dashboard-widgets #dashboard_quick_press form p.submit .spinner {
  1612. margin: 4px 0 0 6px;
  1613. }
  1614. /* Recent Drafts */
  1615. #dashboard_recent_drafts h4 abbr {
  1616. font-family: Tahoma, Arial, sans-serif;
  1617. margin-left:0;
  1618. margin-right: 3px;
  1619. }
  1620. /* login */
  1621. body.login {
  1622. font-family: Tahoma, Arial, sans-serif;
  1623. }
  1624. .login form {
  1625. margin-right: 8px;
  1626. margin-left: 0;
  1627. }
  1628. .login form .forgetmenot {
  1629. float: right;
  1630. }
  1631. .login form .submit {
  1632. float: left;
  1633. }
  1634. #login form .submit input {
  1635. font-family: Tahoma, Arial, sans-serif;
  1636. }
  1637. .login #nav,
  1638. .login #backtoblog {
  1639. margin: 0 16px 0 0;
  1640. }
  1641. #login_error,
  1642. .login .message {
  1643. margin: 0 8px 16px 0;
  1644. }
  1645. .login #user_pass,
  1646. .login #user_login,
  1647. .login #user_email {
  1648. margin-left: 6px;
  1649. margin-right: 0;
  1650. direction: ltr;
  1651. }
  1652. .login h1 a {
  1653. text-decoration: none;
  1654. }
  1655. .login .button-primary {
  1656. float: left;
  1657. }
  1658. /* nav-menu */
  1659. #nav-menus-frame {
  1660. margin-right: 300px;
  1661. margin-left: 0;
  1662. }
  1663. #wpbody-content #menu-settings-column {
  1664. margin-right: -300px;
  1665. margin-left: 0;
  1666. float: right;
  1667. }
  1668. /* Menu Container */
  1669. #menu-management-liquid {
  1670. float: right;
  1671. }
  1672. #menu-management {
  1673. margin-left: 20px;
  1674. margin-right: 0;
  1675. }
  1676. .post-body-plain {
  1677. padding: 10px 0 0 10px;
  1678. }
  1679. /* Menu Tabs */
  1680. #menu-management .nav-tabs-arrow-left {
  1681. right: 0;
  1682. left:auto;
  1683. }
  1684. #menu-management .nav-tabs-arrow-right {
  1685. left: 0;
  1686. right:auto;
  1687. text-align: left;
  1688. font-family: Tahoma, Arial, sans-serif;
  1689. }
  1690. #menu-management .nav-tabs {
  1691. padding-right: 20px;
  1692. padding-left: 10px;
  1693. }
  1694. .js #menu-management .nav-tabs {
  1695. float: right;
  1696. margin-right: 0px;
  1697. margin-left: -400px;
  1698. }
  1699. #select-nav-menu-container {
  1700. text-align: left;
  1701. }
  1702. #wpbody .open-label {
  1703. float:right;
  1704. }
  1705. #wpbody .open-label span {
  1706. padding-left: 10px;
  1707. padding-right:0;
  1708. }
  1709. .js .input-with-default-title {
  1710. font-style: normal;
  1711. font-weight: bold;
  1712. }
  1713. /* Add Menu Item Boxes */
  1714. .postbox .howto input {
  1715. float: left;
  1716. }
  1717. #nav-menu-theme-locations .button-controls {
  1718. text-align: left;
  1719. }
  1720. /* Button Primary Actions */
  1721. .meta-sep,
  1722. .submitcancel {
  1723. float: right;
  1724. }
  1725. #cancel-save {
  1726. margin-left: 0;
  1727. margin-right: 20px;
  1728. }
  1729. .button.right, .button-secondary.right, .button-primary.right {
  1730. float: left;
  1731. }
  1732. /* Button Secondary Actions */
  1733. .list-controls {
  1734. float: right;
  1735. }
  1736. .add-to-menu {
  1737. float: left;
  1738. }
  1739. /* Custom Links */
  1740. #add-custom-link label span {
  1741. float: right;
  1742. padding-left: 5px;
  1743. padding-right: 0;
  1744. }
  1745. .nav-menus-php .howto span {
  1746. float: right;
  1747. }
  1748. .list li .menu-item-title input {
  1749. margin-left: 3px;
  1750. margin-right: 0;
  1751. }
  1752. /* Nav Menu */
  1753. .menu-item-handle {
  1754. padding-right: 10px;
  1755. padding-left: 0;
  1756. }
  1757. .menu-item-edit-active .menu-item-handle {
  1758. -webkit-border-bottom-left-radius: 0;
  1759. -webkit-border-bottom-right-radius: 0;
  1760. border-bottom-left-radius: 0;
  1761. border-bottom-right-radius: 0;
  1762. }
  1763. .menu-item-handle .item-title {
  1764. margin-left:13em;
  1765. margin-right:0;
  1766. }
  1767. .menu-item-handle .item-edit {
  1768. right: auto;
  1769. left: -20px;
  1770. }
  1771. /* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
  1772. .menu-item-depth-0 { margin-right: 0px; margin-left:0;}
  1773. .menu-item-depth-1 { margin-right: 30px; margin-left:0;}
  1774. .menu-item-depth-2 { margin-right: 60px; margin-left:0;}
  1775. .menu-item-depth-3 { margin-right: 90px; margin-left:0;}
  1776. .menu-item-depth-4 { margin-right: 120px; margin-left:0;}
  1777. .menu-item-depth-5 { margin-right: 150px; margin-left:0;}
  1778. .menu-item-depth-6 { margin-right: 180px; margin-left:0;}
  1779. .menu-item-depth-7 { margin-right: 210px; margin-left:0;}
  1780. .menu-item-depth-8 { margin-right: 240px; margin-left:0;}
  1781. .menu-item-depth-9 { margin-right: 270px; margin-left:0;}
  1782. .menu-item-depth-10 { margin-right: 300px; margin-left:0;}
  1783. .menu-item-depth-11 { margin-right: 330px; margin-left:0;}
  1784. .menu-item-depth-0 .menu-item-transport { margin-right: 0px; margin-left:0;}
  1785. .menu-item-depth-1 .menu-item-transport { margin-right: -30px; margin-left:0;}
  1786. .menu-item-depth-2 .menu-item-transport { margin-right: -60px; margin-left:0;}
  1787. .menu-item-depth-3 .menu-item-transport { margin-right: -90px; margin-left:0;}
  1788. .menu-item-depth-4 .menu-item-transport { margin-right: -120px; margin-left:0;}
  1789. .menu-item-depth-5 .menu-item-transport { margin-right: -150px; margin-left:0;}
  1790. .menu-item-depth-6 .menu-item-transport { margin-right: -180px; margin-left:0;}
  1791. .menu-item-depth-7 .menu-item-transport { margin-right: -210px; margin-left:0;}
  1792. .menu-item-depth-8 .menu-item-transport { margin-right: -240px; margin-left:0;}
  1793. .menu-item-depth-9 .menu-item-transport { margin-right: -270px; margin-left:0;}
  1794. .menu-item-depth-10 .menu-item-transport { margin-right: -300px; margin-left:0;}
  1795. .menu-item-depth-11 .menu-item-transport { margin-right: -330px; margin-left:0;}
  1796. /* Menu item controls */
  1797. .item-type {
  1798. padding-left: 10px;
  1799. padding-right:0;
  1800. }
  1801. .item-controls {
  1802. left: 20px;
  1803. right: auto;
  1804. }
  1805. .item-controls .item-order {
  1806. padding-left: 10px;
  1807. padding-right: 0;
  1808. }
  1809. .item-edit {
  1810. left: -20px;
  1811. right:auto;
  1812. -webkit-border-bottom-right-radius: 3px;
  1813. -webkit-border-bottom-left-radius: 0;
  1814. border-bottom-right-radius: 3px;
  1815. border-bottom-left-radius: 0;
  1816. }
  1817. /* Menu editing */
  1818. .menu-item-settings {
  1819. padding: 10px 10px 10px 0;
  1820. border-width: 0 1px 1px 1px;
  1821. }
  1822. #custom-menu-item-url {
  1823. direction: ltr;
  1824. }
  1825. .link-to-original {
  1826. font-style: normal;
  1827. font-weight: bold;
  1828. }
  1829. .link-to-original a {
  1830. padding-right: 4px;
  1831. padding-left:0;
  1832. }
  1833. .menu-item-settings .description-thin,
  1834. .menu-item-settings .description-wide {
  1835. margin-left: 10px;
  1836. margin-right:0;
  1837. float: right;
  1838. }
  1839. /* Major/minor publishing actions (classes) */
  1840. .major-publishing-actions .publishing-action {
  1841. text-align: left;
  1842. float: left;
  1843. }
  1844. .major-publishing-actions .delete-action {
  1845. text-align: right;
  1846. float: right;
  1847. padding-left: 15px;
  1848. padding-right:0;
  1849. }
  1850. .menu-name-label {
  1851. margin-left: 15px;
  1852. margin-right:0;
  1853. }
  1854. .auto-add-pages {
  1855. float: right;
  1856. }
  1857. /* Star ratings */
  1858. div.star-holder {
  1859. background: url('../images/stars-rtl.png?ver=20121108') repeat-x bottom right;
  1860. }
  1861. div.star-holder .star-rating {
  1862. background: url('../images/stars-rtl.png?ver=20121108') repeat-x top right;
  1863. float: right;
  1864. }
  1865. #plugin-information ul#sidemenu {
  1866. left: auto;
  1867. right: 0;
  1868. }
  1869. #plugin-information h2 {
  1870. margin-right: 0;
  1871. margin-left: 200px;
  1872. }
  1873. #plugin-information .fyi {
  1874. margin-left: 5px;
  1875. margin-right: 20px;
  1876. }
  1877. #plugin-information .fyi h2 {
  1878. margin-left: 0;
  1879. }
  1880. #plugin-information .fyi ul {
  1881. padding: 10px 7px 10px 5px;
  1882. }
  1883. #plugin-information #section-screenshots li p {
  1884. padding-left: 0;
  1885. padding-right: 20px;
  1886. }
  1887. #plugin-information #section-screenshots ol,
  1888. #plugin-information .updated,
  1889. #plugin-information pre {
  1890. margin-right: 0;
  1891. margin-left: 215px;
  1892. }
  1893. #plugin-information .updated,
  1894. #plugin-information .error {
  1895. clear: none;
  1896. direction: rtl;
  1897. }
  1898. #plugin-information #section-holder .section {
  1899. direction: ltr;
  1900. }
  1901. /* Editor/Main Column */
  1902. .posting {
  1903. margin-left: 212px;
  1904. margin-right: 0;
  1905. position: relative;
  1906. }
  1907. h3.tb {
  1908. margin-left: 0;
  1909. margin-right: 5px;
  1910. }
  1911. #publish {
  1912. float: left;
  1913. }
  1914. .postbox .handlediv {
  1915. float: left;
  1916. }
  1917. .actions li {
  1918. float: right;
  1919. margin-right: 0;
  1920. margin-left: 10px;
  1921. }
  1922. #extra-fields .actions {
  1923. margin: -23px 0 0 -7px;
  1924. }
  1925. /* Photo Styles */
  1926. #img_container a {
  1927. float: right;
  1928. }
  1929. #category-add input,
  1930. #category-add select {
  1931. font-family: Tahoma, Arial, sans-serif;
  1932. }
  1933. /* Tags */
  1934. #tagsdiv #newtag {
  1935. margin-right: 0;
  1936. margin-left: 5px;
  1937. }
  1938. #tagadd {
  1939. margin-left: 0;
  1940. margin-right: 3px;
  1941. }
  1942. #tagchecklist span {
  1943. margin-left: .5em;
  1944. margin-right: 10px;
  1945. float: right;
  1946. }
  1947. #tagchecklist span a {
  1948. margin: 6px -9px 0 0;
  1949. float: right;
  1950. }
  1951. .submit input,
  1952. .button,
  1953. .button-primary,
  1954. .button-secondary,
  1955. #postcustomstuff .submit input {
  1956. font-family: Tahoma, Arial, sans-serif;
  1957. }
  1958. .ac_results li {
  1959. text-align: right;
  1960. }
  1961. #TB_ajaxContent #options {
  1962. right: auto;
  1963. left: 25px;
  1964. }
  1965. #post_status {
  1966. margin-left: 0;
  1967. margin-right: 10px;
  1968. }
  1969. /* theme-editor, plugin-editor */
  1970. #templateside {
  1971. float: left;
  1972. }
  1973. #template textarea,
  1974. #docs-list {
  1975. direction: ltr;
  1976. }
  1977. /* theme-install */
  1978. .theme-details .theme-version {
  1979. float: right;
  1980. }
  1981. .theme-details .star-holder {
  1982. float: left;
  1983. }
  1984. .feature-filter .feature-group {
  1985. float: right;
  1986. }
  1987. .feature-filter .feature-group li {
  1988. padding-right: 0;
  1989. padding-left: 25px;
  1990. }
  1991. /* widgets */
  1992. /* 2 column liquid layout */
  1993. div.widget-liquid-left {
  1994. float: right;
  1995. clear: right;
  1996. margin-right: 0;
  1997. margin-left: -325px;
  1998. }
  1999. div#widgets-left {
  2000. margin-right: 5px;
  2001. margin-left: 325px;
  2002. }
  2003. div.widget-liquid-right {
  2004. float: left;
  2005. clear: left;
  2006. }
  2007. .inactive-sidebar .widget {
  2008. float: right;
  2009. }
  2010. div.sidebar-name h3 {
  2011. font-family: Tahoma, Arial, sans-serif;
  2012. }
  2013. #widget-list .widget {
  2014. float: right;
  2015. }
  2016. .inactive-sidebar .widget-placeholder {
  2017. float: right;
  2018. }
  2019. .widget-top .widget-title-action {
  2020. float: left;
  2021. }
  2022. .widget-control-edit {
  2023. padding: 0 0 0 8px;
  2024. }
  2025. .sidebar-name-arrow {
  2026. float: left;
  2027. }
  2028. /* Press This */
  2029. .press-this-sidebar {
  2030. float: left;
  2031. }
  2032. .press-this #header-logo,
  2033. .press-this #wphead h1 {
  2034. float: right;
  2035. }
  2036. /* RTL */
  2037. .ltr {
  2038. direction: ltr;
  2039. }
  2040. /**
  2041. * HiDPI Displays
  2042. */
  2043. @media print,
  2044. (-o-min-device-pixel-ratio: 5/4),
  2045. (-webkit-min-device-pixel-ratio: 1.25),
  2046. (min-resolution: 120dpi) {
  2047. .post-com-count {
  2048. background-image: url('../images/bubble_bg-rtl-2x.gif');
  2049. background-size: 18px 100px;
  2050. }
  2051. #content-resize-handle, #post-body .wp_themeSkin .mceStatusbar a.mceResize {
  2052. background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll right bottom;
  2053. background-size: 11px 11px;
  2054. }
  2055. .wp-full-overlay .collapse-sidebar-arrow {
  2056. background-image: url('../images/arrows-2x.png');
  2057. background-size: 15px 123px;
  2058. }
  2059. div.star-holder {
  2060. background: url('../images/stars-rtl-2x.png?ver=20121108') repeat-x bottom right;
  2061. background-size: 21px 37px;
  2062. }
  2063. div.star-holder .star-rating {
  2064. background: url('../images/stars-rtl-2x.png?ver=20121108') repeat-x top right;
  2065. background-size: 21px 37px;
  2066. }
  2067. #post-body .wp_themeSkin .mceStatusbar a.mceResize,
  2068. #content-resize-handle {
  2069. background: transparent url('../images/resize-rtl-2x.gif') no-repeat scroll left bottom;
  2070. }
  2071. }
  2072. /* =Localized CSS
  2073. -------------------------------------------------------------- */
  2074. /* he_IL: Remove Tahoma from the font stack. Arial is best for Hebrew. */
  2075. body.locale-he-il,
  2076. .locale-he-il .quicktags, .locale-he-il .search,
  2077. .locale-he-il .howto,
  2078. .locale-he-il #adminmenu .awaiting-mod,
  2079. .locale-he-il #adminmenu span.update-plugins,
  2080. .locale-he-il #sidemenu li a span.update-plugins,
  2081. .locale-he-il .post-com-count-wrapper,
  2082. .locale-he-il .widefat th,
  2083. .locale-he-il .tablenav .displaying-num,
  2084. .locale-he-il .inline-edit-row fieldset span.title,
  2085. .locale-he-il .inline-edit-row fieldset span.checkbox-title,
  2086. .locale-he-il .inline-edit-row fieldset ul.cat-checklist label,
  2087. .locale-he-il .inline-edit-row .catshow,
  2088. .locale-he-il .inline-edit-row .cathide,
  2089. .locale-he-il .inline-edit-row #bulk-titles div,
  2090. .locale-he-il p.help,
  2091. .locale-he-il p.description,
  2092. .locale-he-il span.description,
  2093. .locale-he-il .form-wrap p,
  2094. .locale-he-il h2 .nav-tab,
  2095. .locale-he-il #your-profile legend,
  2096. .locale-he-il #utc-time, .locale-he-il #local-time,
  2097. .locale-he-il #poststuff h3,
  2098. .locale-he-il .metabox-holder h3,
  2099. .locale-he-il .tool-box .title,
  2100. .locale-he-il td,
  2101. .locale-he-il textarea,
  2102. .locale-he-il input,
  2103. .locale-he-il select,
  2104. .locale-he-il .wrap h2,
  2105. .locale-he-il .subtitle,
  2106. .locale-he-il .wrap .add-new-h2,
  2107. .locale-he-il #dashboard_right_now p.sub,
  2108. .locale-he-il #dashboard-widgets h4,
  2109. .locale-he-il a.rsswidget,
  2110. .locale-he-il #dashboard_plugins h4,
  2111. .locale-he-il #dashboard_plugins h5,
  2112. .locale-he-il #dashboard_recent_comments .comment-meta .approve,
  2113. .locale-he-il #dashboard_right_now td.b,
  2114. .locale-he-il #dashboard_right_now .versions a,
  2115. .locale-he-il .rss-widget span.rss-date,
  2116. .locale-he-il #dashboard_recent_drafts h4 abbr,
  2117. body.login.locale-he-il,
  2118. .locale-he-il #login form .submit input,
  2119. .locale-he-il #menu-management .nav-tabs-arrow-right,
  2120. .locale-he-il #category-add input,
  2121. .locale-he-il #category-add select,
  2122. .locale-he-il .submit input,
  2123. .locale-he-il .button,
  2124. .locale-he-il .button-primary,
  2125. .locale-he-il .button-secondary,
  2126. .locale-he-il #postcustomstuff .submit input,
  2127. .locale-he-