PageRenderTime 66ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 1ms

/wp-admin/css/wp-admin.dev.css

https://github.com/muskmelon/Greemo
CSS | 2804 lines | 2245 code | 439 blank | 120 comment | 0 complexity | af90054d20b8312e338fbf5baddc69cf MD5 | raw file
  1. /*------------------------------------------------------------------------------
  2. Hello, this is 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 - Favorites Menu
  13. 6.2 - Screen Options Tabs
  14. 7.0 - Main Navigation
  15. 8.0 - Layout Blocks
  16. 9.0 - Dashboard
  17. 10.0 - List Posts
  18. 10.1 - Inline Editing
  19. 11.0 - Write/Edit Post Screen
  20. 11.1 - Custom Fields
  21. 11.2 - Post Revisions
  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 - Misc
  38. 23.0 - Dead
  39. ------------------------------------------------------------------------------*/
  40. /*------------------------------------------------------------------------------
  41. 1.0 - Text Styles
  42. ------------------------------------------------------------------------------*/
  43. p,
  44. ul,
  45. ol,
  46. blockquote,
  47. input,
  48. select {
  49. font-size: 12px;
  50. }
  51. ol {
  52. list-style-type: decimal;
  53. margin-left: 2em;
  54. }
  55. .code, code {
  56. font-family: Consolas, Monaco, monospace;
  57. }
  58. kbd, code {
  59. padding: 1px 3px;
  60. margin: 0 1px;
  61. font-size: 11px;
  62. }
  63. .quicktags, .search {
  64. font: 12px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  65. }
  66. .icon32 {
  67. float: left;
  68. height: 34px;
  69. margin: 7px 8px 0 0;
  70. width: 36px;
  71. }
  72. .key-labels label {
  73. line-height: 24px;
  74. }
  75. .pre {
  76. /* http://www.longren.org/2006/09/27/wrapping-text-inside-pre-tags/ */
  77. white-space: pre-wrap; /* css-3 */
  78. white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
  79. white-space: -pre-wrap; /* Opera 4-6 */
  80. white-space: -o-pre-wrap; /* Opera 7 */
  81. word-wrap: break-word; /* Internet Explorer 5.5+ */
  82. }
  83. .howto {
  84. font-style: italic;
  85. display: block;
  86. font-family: sans-serif;
  87. }
  88. p.install-help {
  89. margin: 8px 0;
  90. font-style: italic;
  91. }
  92. /*------------------------------------------------------------------------------
  93. 2.0 - Forms
  94. ------------------------------------------------------------------------------*/
  95. textarea,
  96. input[type="text"],
  97. input[type="password"],
  98. input[type="file"],
  99. input[type="button"],
  100. input[type="submit"],
  101. input[type="reset"],
  102. select {
  103. border-width: 1px;
  104. border-style: solid;
  105. -moz-border-radius: 3px;
  106. -khtml-border-radius: 3px;
  107. -webkit-border-radius: 3px;
  108. border-radius: 3px;
  109. }
  110. select option {
  111. padding: 2px;
  112. }
  113. .submit {
  114. padding: 1.5em 0;
  115. margin: 5px 0;
  116. -moz-border-radius: 0 0 3px 3px;
  117. -webkit-border-bottom-left-radius: 3px;
  118. -webkit-border-bottom-right-radius: 3px;
  119. -khtml-border-bottom-left-radius: 3px;
  120. -khtml-border-bottom-right-radius: 3px;
  121. border-bottom-left-radius: 3px;
  122. border-bottom-right-radius: 3px;
  123. }
  124. form p.submit a.cancel:hover {
  125. text-decoration: none;
  126. }
  127. .submit input,
  128. .button,
  129. input.button,
  130. .button-primary,
  131. input.button-primary,
  132. .button-secondary,
  133. input.button-secondary,
  134. .button-highlighted,
  135. input.button-highlighted,
  136. #postcustomstuff .submit input {
  137. text-decoration: none;
  138. font-size: 12px !important;
  139. line-height: 13px;
  140. padding: 3px 8px;
  141. cursor: pointer;
  142. border-width: 1px;
  143. border-style: solid;
  144. -moz-border-radius: 11px;
  145. -khtml-border-radius: 11px;
  146. -webkit-border-radius: 11px;
  147. border-radius: 11px;
  148. -moz-box-sizing: content-box;
  149. -webkit-box-sizing: content-box;
  150. -khtml-box-sizing: content-box;
  151. box-sizing: content-box;
  152. }
  153. #minor-publishing-actions input,
  154. #major-publishing-actions input,
  155. #minor-publishing-actions .preview {
  156. min-width: 80px;
  157. text-align: center;
  158. }
  159. textarea.all-options, input.all-options {
  160. width: 250px;
  161. }
  162. input.large-text,
  163. textarea.large-text {
  164. width: 99%;
  165. }
  166. input.regular-text,
  167. #adduser .form-field input {
  168. width: 25em;
  169. }
  170. input.small-text {
  171. width: 50px;
  172. }
  173. #doaction,
  174. #doaction2,
  175. #post-query-submit {
  176. margin-right: 8px;
  177. }
  178. .tablenav select[name="action"],
  179. .tablenav select[name="action2"] {
  180. width: 130px;
  181. }
  182. .tablenav select[name="m"] {
  183. width: 155px;
  184. }
  185. .tablenav select#cat {
  186. width: 170px;
  187. }
  188. #wpcontent select {
  189. padding: 2px;
  190. height: 2em;
  191. font-size: 12px;
  192. }
  193. #wpcontent option {
  194. padding: 2px;
  195. }
  196. #timezone_string option {
  197. margin-left: 1em;
  198. }
  199. label,
  200. #your-profile label + a {
  201. vertical-align: middle;
  202. }
  203. #misc-publishing-actions label {
  204. vertical-align: baseline;
  205. }
  206. #pass-strength-result {
  207. border-style: solid;
  208. border-width: 1px;
  209. float: left;
  210. margin: 13px 5px 5px 1px;
  211. padding: 3px 5px;
  212. text-align: center;
  213. width: 200px;
  214. display: none;
  215. }
  216. .indicator-hint {
  217. padding-top: 8px;
  218. }
  219. p.search-box {
  220. float: right;
  221. margin: 0;
  222. }
  223. /*------------------------------------------------------------------------------
  224. 3.0 - Actions
  225. ------------------------------------------------------------------------------*/
  226. #major-publishing-actions {
  227. padding: 10px 10px 8px;
  228. clear: both;
  229. border-top: none;
  230. }
  231. #delete-action {
  232. line-height: 25px;
  233. vertical-align: middle;
  234. text-align: left;
  235. float: left;
  236. }
  237. #publishing-action {
  238. text-align: right;
  239. float: right;
  240. line-height: 23px;
  241. }
  242. #post-body #minor-publishing {
  243. padding-bottom: 10px;
  244. }
  245. #post-body #misc-publishing-actions {
  246. padding: 0;
  247. }
  248. #post-body .misc-pub-section {
  249. border-right-width: 1px;
  250. border-right-style: solid;
  251. border-bottom: 0 none;
  252. min-height: 30px;
  253. float: left;
  254. max-width: 32%;
  255. }
  256. #post-body .misc-pub-section-last {
  257. border-right: 0;
  258. }
  259. #misc-publishing-actions {
  260. padding: 6px 0 16px 0;
  261. }
  262. .misc-pub-section {
  263. padding: 6px 10px;
  264. border-width: 1px 0;
  265. border-style: solid;
  266. }
  267. .misc-pub-section:first-child {
  268. border-top-width: 0;
  269. }
  270. .misc-pub-section-last {
  271. border-bottom-width: 0;
  272. }
  273. #minor-publishing-actions {
  274. padding: 10px 10px 2px 8px;
  275. text-align: right;
  276. }
  277. #minor-publishing {
  278. border-bottom-width: 1px;
  279. border-bottom-style: solid;
  280. -webkit-box-shadow: 0 1px 0 #fff;
  281. -moz-box-shadow: 0 1px 0 #fff;
  282. box-shadow: 0 1px 0 #fff;
  283. }
  284. #save-post {
  285. float: left;
  286. }
  287. #minor-publishing .ajax-loading {
  288. padding: 3px 0 0 4px;
  289. float: left;
  290. }
  291. .preview {
  292. float: right;
  293. }
  294. #sticky-span {
  295. margin-left: 18px;
  296. }
  297. #post-status-display,
  298. #post-visibility-display {
  299. font-weight: bold;
  300. }
  301. .side-info {
  302. margin: 0;
  303. padding: 4px;
  304. font-size: 11px;
  305. }
  306. .side-info h5 {
  307. padding-bottom: 7px;
  308. font-size: 14px;
  309. margin: 12px 2px 5px;
  310. border-bottom-width: 1px;
  311. border-bottom-style: solid;
  312. }
  313. .side-info ul {
  314. margin: 0;
  315. padding-left: 18px;
  316. list-style: square;
  317. }
  318. a.button,
  319. a.button-primary,
  320. a.button-secondary {
  321. line-height: 15px;
  322. padding: 3px 10px;
  323. white-space: nowrap;
  324. -webkit-border-radius: 10px;
  325. }
  326. .approve {
  327. display: none;
  328. }
  329. .unapproved .approve,
  330. .spam .approve,
  331. .trash .approve {
  332. display: inline;
  333. }
  334. .unapproved .unapprove {
  335. display: none;
  336. }
  337. td.action-links,
  338. th.action-links {
  339. text-align: right;
  340. }
  341. .describe .del-link {
  342. padding-left: 5px;
  343. }
  344. /*------------------------------------------------------------------------------
  345. 4.0 - Notifications
  346. ------------------------------------------------------------------------------*/
  347. #update-nag, .update-nag {
  348. line-height: 19px;
  349. padding: 5px 0;
  350. font-size: 12px;
  351. text-align: center;
  352. margin: 0 15px;
  353. border-width: 1px;
  354. border-style: solid;
  355. border-top-width: 0;
  356. border-top-style: none;
  357. -moz-border-radius: 0 0 3px 3px;
  358. -webkit-border-bottom-right-radius: 3px;
  359. -webkit-border-bottom-left-radius: 3px;
  360. -khtml-border-bottom-right-radius: 3px;
  361. -khtml-border-bottom-left-radius: 3px;
  362. border-bottom-right-radius: 3px;
  363. border-bottom-left-radius: 3px;
  364. }
  365. .plugins .plugin-update {
  366. padding: 0;
  367. }
  368. .plugin-update .update-message {
  369. margin: 0 10px 8px 31px;
  370. font-weight: bold;
  371. }
  372. ul#dismissed-updates {
  373. display: none;
  374. }
  375. form.upgrade {
  376. margin-top: 8px;
  377. }
  378. form.upgrade .hint {
  379. font-style: italic;
  380. font-size: 85%;
  381. margin: -0.5em 0 2em 0;
  382. }
  383. .ajax-feedback {
  384. visibility: hidden;
  385. vertical-align: bottom;
  386. }
  387. #ajax-response.alignleft {
  388. margin-left: 2em;
  389. }
  390. /*------------------------------------------------------------------------------
  391. 5.0 - TinyMCE
  392. ------------------------------------------------------------------------------*/
  393. #editorcontainer #content {
  394. font-family: Consolas, Monaco, monospace;
  395. padding: 6px;
  396. line-height: 150%;
  397. border: 0 none;
  398. outline: none;
  399. resize: vertical;
  400. -moz-box-sizing: border-box;
  401. -webkit-box-sizing: border-box;
  402. -khtml-box-sizing: border-box;
  403. box-sizing: border-box;
  404. }
  405. #editorcontainer,
  406. #quicktags {
  407. border-style: solid;
  408. border-width: 1px;
  409. border-collapse: separate;
  410. -moz-border-radius: 3px 3px 0 0;
  411. -webkit-border-top-right-radius: 3px;
  412. -webkit-border-top-left-radius: 3px;
  413. -khtml-border-top-right-radius: 3px;
  414. -khtml-border-top-left-radius: 3px;
  415. border-top-right-radius: 3px;
  416. border-top-left-radius: 3px;
  417. }
  418. #quicktags {
  419. padding: 0;
  420. margin-bottom: -3px;
  421. border-bottom-width: 3px;
  422. background-image: url("../images/ed-bg.gif");
  423. background-position: left top;
  424. background-repeat: repeat-x;
  425. }
  426. #quicktags #ed_toolbar {
  427. padding: 2px 4px 0;
  428. }
  429. #ed_toolbar input,
  430. #ed_reply_toolbar input {
  431. margin: 3px 1px 4px;
  432. line-height: 18px;
  433. display: inline-block;
  434. min-width: 26px;
  435. padding: 2px 4px;
  436. font-size: 12px;
  437. }
  438. #ed_reply_toolbar input {
  439. margin: 1px 2px 1px 1px;
  440. }
  441. #quicktags #ed_link,
  442. #ed_reply_toolbar #ed_reply_link {
  443. text-decoration: underline;
  444. }
  445. #quicktags #ed_del,
  446. #ed_reply_toolbar #ed_reply_del {
  447. text-decoration: line-through;
  448. }
  449. #quicktags #ed_em,
  450. #ed_reply_toolbar #ed_reply_em {
  451. font-style: italic;
  452. }
  453. #wp_editbtns,
  454. #wp_gallerybtns {
  455. padding: 2px;
  456. position: absolute;
  457. display: none;
  458. z-index: 999998;
  459. }
  460. #wp_editimgbtn,
  461. #wp_delimgbtn,
  462. #wp_editgallery,
  463. #wp_delgallery {
  464. margin: 2px;
  465. padding: 2px;
  466. border-width: 1px;
  467. border-style: solid;
  468. -moz-border-radius: 3px;
  469. -khtml-border-radius: 3px;
  470. -webkit-border-radius: 3px;
  471. border-radius: 3px;
  472. }
  473. /* Distraction Free Writing mode
  474. * =Overlay Styles
  475. -------------------------------------------------------------- */
  476. .fullscreen-overlay {
  477. z-index: 149999;
  478. display: none;
  479. position: fixed;
  480. top: 0;
  481. bottom: 0;
  482. left: 0;
  483. right: 0;
  484. filter: inherit;
  485. }
  486. .fullscreen-active .fullscreen-overlay,
  487. .fullscreen-active #wp-fullscreen-body {
  488. display: block;
  489. }
  490. .fullscreen-fader {
  491. z-index: 200000;
  492. }
  493. .fullscreen-active .fullscreen-fader {
  494. display: none;
  495. }
  496. /* =Overlay Body
  497. -------------------------------------------------------------- */
  498. #wp-fullscreen-body {
  499. width: 100%;
  500. z-index: 150005;
  501. display: none;
  502. position: absolute;
  503. top: 0;
  504. left: 0;
  505. }
  506. #wp-fullscreen-wrap {
  507. margin: 0 auto 50px;
  508. position: relative;
  509. padding-top: 60px;
  510. }
  511. #wp-fullscreen-title {
  512. font-size: 1.7em;
  513. line-height: 100%;
  514. outline: medium none;
  515. padding: 6px 7px;
  516. width: 100%;
  517. margin-bottom: 30px;
  518. }
  519. #wp-fullscreen-container {
  520. padding: 4px 10px 50px;
  521. }
  522. #wp-fullscreen-title,
  523. #wp-fullscreen-container {
  524. -moz-border-radius: 0;
  525. -khtml-border-radius: 0;
  526. -webkit-border-radius: 0;
  527. border-radius: 0;
  528. border: 1px dashed transparent;
  529. background: transparent;
  530. -moz-transition-property: border-color;
  531. -moz-transition-duration: 0.6s;
  532. -webkit-transition-property: border-color;
  533. -webkit-transition-duration: 0.6s;
  534. -o-transition-property: border-color;
  535. -o-transition-duration: 0.6s;
  536. transition-property: border-color;
  537. transition-duration: 0.6s;
  538. }
  539. #wp_mce_fullscreen {
  540. width: 100%;
  541. min-height: 300px;
  542. border: 0;
  543. background: transparent;
  544. font-family: Consolas, Monaco, monospace;
  545. line-height: 1.6em;
  546. padding: 0;
  547. overflow-y: hidden;
  548. outline: none;
  549. resize: none;
  550. }
  551. #wp-fullscreen-tagline {
  552. color: #BBBBBB;
  553. font-size: 18px;
  554. float: right;
  555. padding-top: 5px;
  556. }
  557. /* =Top bar
  558. -------------------------------------------------------------- */
  559. #fullscreen-topbar {
  560. position: fixed;
  561. top: 0;
  562. left: 0;
  563. z-index: 150050;
  564. border-bottom-style: solid;
  565. border-bottom-width: 1px;
  566. min-width: 800px;
  567. width: 100%;
  568. height: 40px;
  569. }
  570. #wp-fullscreen-toolbar {
  571. padding: 6px 10px 0;
  572. clear: both;
  573. max-width: 1100px;
  574. min-width: 820px;
  575. margin: 0 auto;
  576. }
  577. #wp-fullscreen-mode-bar,
  578. #wp-fullscreen-button-bar,
  579. #wp-fullscreen-close,
  580. #wp-fullscreen-count {
  581. float: left;
  582. }
  583. #wp-fullscreen-save {
  584. float: right;
  585. }
  586. #wp-fullscreen-save {
  587. padding: 2px 2px 0 5px;
  588. }
  589. #wp-fullscreen-count,
  590. #wp-fullscreen-close {
  591. padding-top: 5px;
  592. }
  593. #wp-fullscreen-central-toolbar {
  594. margin: auto;
  595. padding: 0;
  596. }
  597. #wp-fullscreen-buttons > div {
  598. float: left;
  599. }
  600. #wp-fullscreen-mode-bar {
  601. padding: 1px 14px 0 0;
  602. }
  603. #wp-fullscreen-modes a {
  604. display: block;
  605. font-size: 11px;
  606. text-decoration: none;
  607. float: left;
  608. margin: 1px 0 0 0;
  609. padding: 2px 6px 2px;
  610. border-width: 1px 1px 1px 0;
  611. border-style: solid;
  612. border-color: #bbb;
  613. color: #777;
  614. text-shadow: 0 1px 0 #fff;
  615. background-color: #f4f4f4;
  616. background-image: -moz-linear-gradient(bottom, #e4e4e4, #f9f9f9);
  617. background-image: -webkit-gradient(linear, left bottom, left top, from(#e4e4e4), to(#f9f9f9));
  618. }
  619. #wp-fullscreen-modes a:hover,
  620. .wp-html-mode #wp-fullscreen-modes a:last-child,
  621. .wp-tmce-mode #wp-fullscreen-modes a:first-child {
  622. color: #333;
  623. border-color: #999;
  624. background-color: #eee;
  625. background-image: -moz-linear-gradient(bottom, #f9f9f9, #e0e0e0);
  626. background-image: -webkit-gradient(linear, left bottom, left top, from(#f9f9f9), to(#e0e0e0));
  627. }
  628. #wp-fullscreen-modes a:first-child {
  629. border-width: 1px;
  630. -moz-border-radius: 3px 0 0 3px;
  631. -webkit-border-top-left-radius: 3px;
  632. -webkit-border-bottom-left-radius: 3px;
  633. -khtml-border-top-left-radius: 3px;
  634. -khtml-border-bottom-left-radius: 3px;
  635. border-top-left-radius: 3px;
  636. border-bottom-left-radius: 3px;
  637. }
  638. #wp-fullscreen-modes a:last-child {
  639. -moz-border-radius: 0 3px 3px 0;
  640. -webkit-border-top-right-radius: 3px;
  641. -webkit-border-bottom-right-radius: 3px;
  642. -khtml-border-top-right-radius: 3px;
  643. -khtml-border-bottom-right-radius: 3px;
  644. border-top-right-radius: 3px;
  645. border-bottom-right-radius: 3px;
  646. }
  647. #wp-fullscreen-buttons .active a {
  648. background: inherit;
  649. }
  650. #wp-fullscreen-buttons .hidden {
  651. display: none;
  652. }
  653. #wp-fullscreen-buttons .disabled {
  654. opacity: 0.5;
  655. }
  656. .wp-html-mode #wp-fullscreen-buttons div {
  657. display: none;
  658. }
  659. .wp-html-mode #wp-fullscreen-buttons div.wp-fullscreen-both {
  660. display: block;
  661. }
  662. #fullscreen-topbar.fullscreen-make-sticky {
  663. display: block !important;
  664. }
  665. #wp-fullscreen-save img {
  666. vertical-align: middle;
  667. }
  668. #wp-fullscreen-save img,
  669. #wp-fullscreen-save span {
  670. padding-right: 4px;
  671. display: none;
  672. }
  673. #wp-fullscreen-buttons .mce_image .mce_image {
  674. background-image: url("../images/menu.png?ver=20100531");
  675. background-position: -124px -38px;
  676. }
  677. #wp-fullscreen-buttons .mce_image .mce_image:hover {
  678. background-position: -124px -6px;
  679. }
  680. /* =Thickbox Adjustments
  681. -------------------------------------------------------------- */
  682. .fullscreen-active #TB_overlay {
  683. z-index: 150100;
  684. }
  685. .fullscreen-active #TB_window {
  686. z-index: 150102;
  687. }
  688. /* =TinyMCE Adjustments
  689. -------------------------------------------------------------- */
  690. #wp_mce_fullscreen_ifr {
  691. background: transparent;
  692. }
  693. #wp_mce_fullscreen_parent #wp_mce_fullscreen_tbl tr.mceFirst {
  694. display : none;
  695. }
  696. #wp-fullscreen-container .wp_themeSkin table td {
  697. vertical-align: top;
  698. }
  699. /*------------------------------------------------------------------------------
  700. 6.0 - Admin Header
  701. ------------------------------------------------------------------------------*/
  702. #wphead-info {
  703. margin: 0 0 0 15px;
  704. }
  705. #user_info {
  706. float: right;
  707. font-size: 12px;
  708. line-height: 26px;
  709. height: 25px;
  710. position: relative;
  711. z-index: 49;
  712. border-style: solid;
  713. border-width: 0;
  714. margin-top: 3px;
  715. padding: 0 2px 0 6px;
  716. }
  717. #user_info.active {
  718. border-width: 1px;
  719. margin-right: -1px;
  720. margin-top: 2px;
  721. -moz-border-radius: 3px 3px 0 0;
  722. -webkit-border-top-right-radius: 3px;
  723. -webkit-border-top-left-radius: 3px;
  724. -khtml-border-top-right-radius: 3px;
  725. -khtml-border-top-left-radius: 3px;
  726. border-top-right-radius: 3px;
  727. border-top-left-radius: 3px;
  728. }
  729. #user_info p {
  730. margin: 0;
  731. padding: 0;
  732. line-height: 25px;
  733. cursor: pointer;
  734. }
  735. #user_info .hide-if-no-js p {
  736. margin: 0 20px 0 0;
  737. }
  738. #user_info:hover .hide-if-no-js p {
  739. text-decoration: underline;
  740. }
  741. #user_info.active .hide-if-no-js p {
  742. text-decoration: none;
  743. }
  744. #user_info_arrow {
  745. height: 22px;
  746. width: 22px;
  747. position: absolute;
  748. right: 3px;
  749. top: 0;
  750. cursor: pointer;
  751. }
  752. #user_info_links_wrap {
  753. min-width: 100px;
  754. width: 100%;
  755. position: absolute;
  756. top: 25px;
  757. right: 0;
  758. padding: 0;
  759. text-shadow: rgba(255,255,255,0.7) 0 1px 0;
  760. }
  761. #user_info_links {
  762. position: absolute;
  763. left: -1px;
  764. right: -1px;
  765. overflow: hidden;
  766. }
  767. #user_info.active #user_info_links ul {
  768. margin-top: 0;
  769. -moz-transition: margin-top 200ms;
  770. -webkit-transition: margin-top 200ms;
  771. -o-transition: margin-top 200ms;
  772. transition: margin-top 200ms;
  773. }
  774. #user_info_links ul {
  775. border-width: 1px;
  776. border-style: solid;
  777. margin-top: -1000px;
  778. -moz-transition: margin-top 500ms ease-in;
  779. -webkit-transition: margin-top 500ms ease-in;
  780. -o-transition: margin-top 500ms ease-in;
  781. transition: margin-top 500ms ease-in;
  782. }
  783. #user_info_links,
  784. #user_info_links ul,
  785. #user_info_links li:last-child {
  786. -moz-border-radius: 0 0 3px 3px;
  787. -webkit-border-bottom-right-radius: 3px;
  788. -webkit-border-bottom-left-radius: 3px;
  789. -khtml-border-bottom-right-radius: 3px;
  790. -khtml-border-bottom-left-radius: 3px;
  791. border-bottom-right-radius: 3px;
  792. border-bottom-left-radius: 3px;
  793. }
  794. #user_info_links li {
  795. display: block;
  796. margin: 0;
  797. }
  798. #user_info_links a {
  799. display: block;
  800. padding: 6px 8px;
  801. }
  802. #wphead {
  803. height: 32px;
  804. margin-right: 20px;
  805. margin-left: 2px;
  806. }
  807. #wphead a,
  808. #adminmenu a,
  809. #sidemenu a,
  810. #taglist a,
  811. #catlist a,
  812. #show-settings a {
  813. text-decoration: none;
  814. }
  815. #header-logo {
  816. float: left;
  817. margin: 7px 0;
  818. -webkit-user-select: none;
  819. -moz-user-select: none;
  820. -khtml-user-select: none;
  821. user-select: none;
  822. }
  823. #wphead h1 {
  824. font: normal 16px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  825. padding: 6px 8px 5px;
  826. margin: 0;
  827. float: left;
  828. }
  829. #wphead h1 a:hover {
  830. text-decoration:none;
  831. }
  832. #wphead h1 a:hover #site-title {
  833. text-decoration:underline;
  834. }
  835. /*------------------------------------------------------------------------------
  836. 6.1 - Favorites Menu
  837. ------------------------------------------------------------------------------*/
  838. #favorite-actions {
  839. margin: 0 12px 0 15px;
  840. min-width: 130px;
  841. position: relative;
  842. display: inline-block;
  843. top: -1px;
  844. }
  845. #favorite-first {
  846. -moz-border-radius: 12px;
  847. -khtml-border-radius: 12px;
  848. -webkit-border-radius: 12px;
  849. border-radius: 12px;
  850. line-height: 15px;
  851. padding: 0 30px 0 0;
  852. border-width: 1px;
  853. border-style: solid;
  854. }
  855. #favorite-inside {
  856. margin: 0;
  857. padding: 2px 1px;
  858. border-width: 1px;
  859. border-style: solid;
  860. position: absolute;
  861. z-index: 11;
  862. display: none;
  863. -moz-border-radius: 0 0 12px 12px;
  864. -webkit-border-bottom-right-radius: 12px;
  865. -webkit-border-bottom-left-radius: 12px;
  866. -khtml-border-bottom-right-radius: 12px;
  867. -khtml-border-bottom-left-radius: 12px;
  868. border-bottom-right-radius: 12px;
  869. border-bottom-left-radius: 12px;
  870. }
  871. #favorite-first a {
  872. padding: 2px 0 2px 12px;
  873. }
  874. #favorite-actions a {
  875. display: block;
  876. text-decoration: none;
  877. font-size: 11px;
  878. }
  879. #favorite-inside a {
  880. padding: 3px 5px 3px 10px;
  881. line-height: 20px;
  882. }
  883. #favorite-toggle {
  884. height: 18px;
  885. position: absolute;
  886. right: 0;
  887. top: 1px;
  888. width: 28px;
  889. border-width: 0 0 0 1px;
  890. border-style: solid;
  891. }
  892. #favorite-actions .slide-down {
  893. -moz-border-radius: 12px 12px 0 0;
  894. -webkit-border-bottom-right-radius: 0;
  895. -webkit-border-bottom-left-radius: 0;
  896. -khtml-border-bottom-right-radius: 0;
  897. -khtml-border-bottom-left-radius: 0;
  898. border-bottom-right-radius: 0;
  899. border-bottom-left-radius: 0;
  900. border-bottom: none;
  901. }
  902. /*------------------------------------------------------------------------------
  903. 6.2 - Screen Options Tabs
  904. ------------------------------------------------------------------------------*/
  905. #screen-meta {
  906. position: relative;
  907. clear: both;
  908. }
  909. #screen-meta-links {
  910. margin: 0 24px 0 0;
  911. }
  912. #screen-meta .screen-reader-text {
  913. visibility: hidden;
  914. }
  915. #screen-options-link-wrap,
  916. #contextual-help-link-wrap {
  917. float: right;
  918. height: 22px;
  919. padding: 0;
  920. margin: 0 0 0 6px;
  921. font-family: sans-serif;
  922. -moz-border-radius-bottomleft: 3px;
  923. -moz-border-radius-bottomright: 3px;
  924. -webkit-border-bottom-left-radius: 3px;
  925. -webkit-border-bottom-right-radius: 3px;
  926. border-bottom-left-radius: 3px;
  927. border-bottom-right-radius: 3px;
  928. }
  929. #contextual-help-wrap li {
  930. list-style-type: disc;
  931. margin-left: 18px;
  932. }
  933. .toggle-arrow {
  934. background-repeat: no-repeat;
  935. background-position: top left;
  936. background-color: transparent;
  937. height: 22px;
  938. line-height: 22px;
  939. display: block;
  940. }
  941. .toggle-arrow-active {
  942. background-position: bottom left;
  943. }
  944. #screen-meta a.show-settings {
  945. text-decoration: none;
  946. z-index: 1;
  947. padding: 0 16px 0 6px;
  948. height: 22px;
  949. line-height: 22px;
  950. font-size: 12px;
  951. display: block;
  952. text-shadow: rgba(255,255,255,0.7) 0 1px 0;
  953. }
  954. #screen-meta a.show-settings:hover {
  955. text-decoration: none;
  956. }
  957. #screen-options-wrap h5,
  958. #contextual-help-wrap h5 {
  959. margin: 8px 0;
  960. font-size: 13px;
  961. }
  962. #screen-options-wrap,
  963. #contextual-help-wrap {
  964. border-style: none solid solid;
  965. border-top: 0 none;
  966. border-width: 0 1px 1px;
  967. margin: 0 20px 0 0;
  968. padding: 8px 12px 12px;
  969. }
  970. .metabox-prefs label {
  971. display: inline-block;
  972. padding-right: 15px;
  973. white-space: nowrap;
  974. line-height: 30px;
  975. }
  976. .metabox-prefs label input {
  977. margin: 0 5px 0 2px;
  978. }
  979. .metabox-prefs label a {
  980. display: none;
  981. }
  982. /*------------------------------------------------------------------------------
  983. 7.0 - Main Navigation (Left Menu)
  984. ------------------------------------------------------------------------------*/
  985. #adminmenuback,
  986. #adminmenuwrap {
  987. border-width: 0 1px 0 0;
  988. border-style: solid;
  989. }
  990. #adminmenuwrap {
  991. position: relative;
  992. }
  993. #adminmenushadow {
  994. position: absolute;
  995. top: 0;
  996. right: 0;
  997. bottom: 0;
  998. width: 6px;
  999. z-index: 20;
  1000. }
  1001. /* side admin menu */
  1002. #adminmenu * {
  1003. -webkit-user-select: none;
  1004. -moz-user-select: none;
  1005. -khtml-user-select: none;
  1006. user-select: none;
  1007. }
  1008. #adminmenu .wp-submenu {
  1009. display: none;
  1010. list-style: none;
  1011. padding: 0;
  1012. margin: 0;
  1013. position: relative;
  1014. z-index: 2;
  1015. }
  1016. #adminmenu .wp-submenu a {
  1017. font-size: 12px;
  1018. line-height: 18px;
  1019. }
  1020. #adminmenu .wp-submenu li.current,
  1021. #adminmenu .wp-submenu li.current a,
  1022. #adminmenu .wp-submenu li.current a:hover {
  1023. font-weight: bold;
  1024. }
  1025. #adminmenu a.menu-top,
  1026. #adminmenu .wp-submenu-head {
  1027. font-size: 13px;
  1028. line-height: 18px;
  1029. }
  1030. #adminmenu div.wp-submenu-head {
  1031. display: none;
  1032. }
  1033. .js.folded #adminmenu div.wp-submenu-head {
  1034. display: block;
  1035. }
  1036. .js.folded #adminmenu a.menu-top,
  1037. body.no-js #adminmenu .wp-menu-toggle,
  1038. .js.folded #adminmenu div.wp-menu-toggle {
  1039. display: none;
  1040. }
  1041. body.js #adminmenu li.wp-menu-open .wp-submenu,
  1042. body.no-js #adminmenu .open-if-no-js .wp-submenu,
  1043. body.no-js #adminmenu li.wp-has-current-submenu .wp-submenu {
  1044. display: block;
  1045. }
  1046. #adminmenu div.wp-menu-image {
  1047. float: left;
  1048. width: 28px;
  1049. height: 28px;
  1050. }
  1051. .js.folded #adminmenu div.wp-menu-image {
  1052. width: 32px;
  1053. }
  1054. #adminmenu li {
  1055. margin: 0;
  1056. padding: 0;
  1057. cursor: pointer;
  1058. }
  1059. #adminmenu a {
  1060. display: block;
  1061. line-height: 18px;
  1062. padding: 2px 5px;
  1063. }
  1064. #adminmenu li.menu-top {
  1065. min-height: 26px;
  1066. position: relative;
  1067. }
  1068. #adminmenu a.menu-top {
  1069. font-weight: bold;
  1070. line-height: 18px;
  1071. min-width: 10em;
  1072. padding: 5px 5px;
  1073. border-width: 1px 0 1px;
  1074. border-style: solid;
  1075. }
  1076. #adminmenu li.wp-menu-open {
  1077. border-width: 0 0 1px;
  1078. border-style: solid;
  1079. }
  1080. #adminmenu .wp-submenu a {
  1081. margin: 0;
  1082. padding-left: 12px;
  1083. }
  1084. .wp-menu-arrow {
  1085. display: none;
  1086. }
  1087. #adminmenu li.wp-has-current-submenu .wp-menu-arrow,
  1088. #adminmenu li.menu-top.current .wp-menu-arrow {
  1089. display: block;
  1090. position: absolute;
  1091. right: -9px;
  1092. top: 0;
  1093. cursor: auto;
  1094. z-index: 25;
  1095. }
  1096. #adminmenu .wp-menu-arrow div {
  1097. width: 15px;
  1098. height: 30px;
  1099. background: url(../images/menu-arrow-frame.png) top right no-repeat;
  1100. }
  1101. #adminmenu .wp-submenu li {
  1102. padding: 0;
  1103. margin: 0;
  1104. }
  1105. .js.folded #adminmenu li.menu-top {
  1106. width: 32px;
  1107. height: 29px;
  1108. border-width: 1px 0;
  1109. border-style: solid;
  1110. }
  1111. #adminmenu .wp-menu-image img {
  1112. float: left;
  1113. padding: 8px 6px 0;
  1114. opacity: 0.6;
  1115. filter: alpha(opacity=60);
  1116. }
  1117. #adminmenu li.menu-top:hover .wp-menu-image img,
  1118. #adminmenu li.wp-has-current-submenu .wp-menu-image img {
  1119. opacity: 1;
  1120. filter: alpha(opacity=100);
  1121. }
  1122. #adminmenu li.wp-menu-separator {
  1123. height: 3px;
  1124. padding: 0;
  1125. margin: 0;
  1126. border-width: 1px 0;
  1127. border-style: solid;
  1128. cursor: inherit;
  1129. }
  1130. #adminmenu div.separator {
  1131. height: 1px;
  1132. padding: 0;
  1133. border-width: 1px 0 0 0;
  1134. border-style: solid;
  1135. }
  1136. .js.folded #adminmenu .wp-submenu {
  1137. display: block;
  1138. position: absolute;
  1139. top: -5px;
  1140. left: 26px;
  1141. z-index: 999;
  1142. width: 0;
  1143. padding: 0;
  1144. overflow: hidden;
  1145. -moz-transition: width 200ms ease-out;
  1146. -webkit-transition: width 200ms ease-out;
  1147. -o-transition: width 200ms ease-out;
  1148. transition: width 200ms ease-out;
  1149. }
  1150. .js.folded #adminmenu .wp-submenu.sub-open {
  1151. padding: 0 8px 8px 0;
  1152. }
  1153. #adminmenu .wp-submenu .wp-submenu-head {
  1154. padding: 6px 4px 5px 10px;
  1155. cursor: default;
  1156. border-width: 1px 0;
  1157. border-style: solid;
  1158. }
  1159. .js.folded #adminmenu .wp-submenu-wrap {
  1160. margin-top: 4px;
  1161. border-width: 0 1px 1px 0;
  1162. border-style: solid;
  1163. position: relative;
  1164. -webkit-border-bottom-right-radius: 3px;
  1165. -webkit-border-top-right-radius: 3px;
  1166. -khtml-border-bottom-right-radius: 3px;
  1167. -khtml-border-top-right-radius: 3px;
  1168. -moz-border-radius-bottomright: 3px;
  1169. -moz-border-radius-topright: 3px;
  1170. border-bottom-right-radius: 3px;
  1171. border-top-right-radius: 3px;
  1172. }
  1173. .js.folded #adminmenu .wp-submenu ul {
  1174. border-width: 0 0 0 1px;
  1175. border-style: solid;
  1176. }
  1177. .js.folded #adminmenu .wp-submenu a {
  1178. padding-left: 10px;
  1179. }
  1180. .js.folded #adminmenu a.wp-has-submenu {
  1181. margin-left: 40px;
  1182. }
  1183. #adminmenu .wp-menu-toggle {
  1184. width: 18px;
  1185. clear: right;
  1186. float: right;
  1187. margin: 1px 0 0;
  1188. height: 27px;
  1189. padding: 1px 2px 0 0;
  1190. cursor: pointer;
  1191. }
  1192. #adminmenu .wp-menu-image a {
  1193. height: 24px;
  1194. }
  1195. #adminmenu .wp-menu-image img {
  1196. padding: 6px 0 0 1px;
  1197. }
  1198. #adminmenu .awaiting-mod,
  1199. #adminmenu span.update-plugins,
  1200. #sidemenu li a span.update-plugins {
  1201. position: absolute;
  1202. font-family: sans-serif;
  1203. font-size: 9px;
  1204. line-height: 17px;
  1205. font-weight: bold;
  1206. margin-top: 1px;
  1207. margin-left: 7px;
  1208. -moz-border-radius: 10px;
  1209. -khtml-border-radius: 10px;
  1210. -webkit-border-radius: 10px;
  1211. border-radius: 10px;
  1212. }
  1213. #adminmenu li .awaiting-mod span,
  1214. #adminmenu li span.update-plugins span,
  1215. #sidemenu li a span.update-plugins span {
  1216. display: block;
  1217. padding: 0 6px;
  1218. }
  1219. #adminmenu li span.count-0,
  1220. #sidemenu li a .count-0 {
  1221. display: none;
  1222. }
  1223. .post-com-count-wrapper {
  1224. min-width: 22px;
  1225. font-family: sans-serif;
  1226. }
  1227. .post-com-count {
  1228. height: 1.3em;
  1229. line-height: 1.1em;
  1230. display: block;
  1231. text-decoration: none;
  1232. padding: 0 0 6px;
  1233. cursor: pointer;
  1234. background-position: center -80px;
  1235. background-repeat: no-repeat;
  1236. }
  1237. .post-com-count span {
  1238. font-size: 11px;
  1239. font-weight: bold;
  1240. height: 1.4em;
  1241. line-height: 1.4em;
  1242. min-width: 0.7em;
  1243. padding: 0 6px;
  1244. display: inline-block;
  1245. cursor: pointer;
  1246. -moz-border-radius: 5px;
  1247. -khtml-border-radius: 5px;
  1248. -webkit-border-radius: 5px;
  1249. border-radius: 5px;
  1250. }
  1251. strong .post-com-count {
  1252. background-position: center -55px;
  1253. }
  1254. .post-com-count:hover {
  1255. background-position: center -3px;
  1256. }
  1257. .column-response .post-com-count {
  1258. float: left;
  1259. margin-right: 5px;
  1260. text-align: center;
  1261. }
  1262. .response-links {
  1263. float: left;
  1264. }
  1265. #the-comment-list .attachment-80x60 {
  1266. padding: 4px 8px;
  1267. }
  1268. #collapse-menu {
  1269. font-size: 12px;
  1270. line-height: 34px;
  1271. }
  1272. .js.folded #collapse-menu span {
  1273. display: none;
  1274. }
  1275. #collapse-button,
  1276. #collapse-button div {
  1277. width: 15px;
  1278. height: 15px;
  1279. }
  1280. #collapse-button {
  1281. float: left;
  1282. margin: 8px 6px;
  1283. border-width: 1px;
  1284. border-style: solid;
  1285. -moz-border-radius: 10px;
  1286. -khtml-border-radius: 10px;
  1287. -webkit-border-radius: 10px;
  1288. border-radius: 10px;
  1289. }
  1290. /*------------------------------------------------------------------------------
  1291. 8.0 - Layout Blocks
  1292. ------------------------------------------------------------------------------*/
  1293. body.wp-admin {
  1294. min-width: 785px;
  1295. }
  1296. body.admin-bar #wphead,
  1297. body.admin-bar #adminmenu {
  1298. padding-top: 28px;
  1299. }
  1300. .narrow {
  1301. width: 70%;
  1302. margin-bottom: 40px;
  1303. }
  1304. .narrow p {
  1305. line-height: 150%;
  1306. }
  1307. .widefat th,
  1308. .widefat td {
  1309. overflow: hidden;
  1310. }
  1311. .widefat th {
  1312. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1313. font-weight: normal;
  1314. }
  1315. .widefat td p {
  1316. margin: 2px 0 0.8em;
  1317. }
  1318. .widefat .column-comment p {
  1319. margin: 0.6em 0;
  1320. }
  1321. .postbox-container {
  1322. float: left;
  1323. padding-right: 0.5%;
  1324. }
  1325. .postbox-container .meta-box-sortables {
  1326. min-height: 300px;
  1327. }
  1328. .postbox .hndle {
  1329. cursor: move;
  1330. }
  1331. .hndle a {
  1332. font-size: 11px;
  1333. font-weight: normal;
  1334. }
  1335. .postbox .handlediv {
  1336. float: right;
  1337. width: 27px;
  1338. height: 30px;
  1339. cursor: pointer;
  1340. }
  1341. .sortable-placeholder {
  1342. border-width: 1px;
  1343. border-style: dashed;
  1344. margin-bottom: 20px;
  1345. }
  1346. .widget,
  1347. .postbox,
  1348. .stuffbox {
  1349. margin-bottom: 20px;
  1350. padding: 0;
  1351. border-width: 1px;
  1352. border-style: solid;
  1353. line-height: 1;
  1354. }
  1355. .widget .widget-top,
  1356. .postbox h3,
  1357. .stuffbox h3 {
  1358. margin-top: 1px;
  1359. border-bottom-width: 1px;
  1360. border-style: solid;
  1361. cursor: move;
  1362. -webkit-user-select: none;
  1363. -moz-user-select: none;
  1364. -khtml-user-select: none;
  1365. user-select: none;
  1366. }
  1367. .postbox .inside,
  1368. .stuffbox .inside {
  1369. padding: 0 10px;
  1370. }
  1371. .postbox.closed h3 {
  1372. border: none;
  1373. -moz-box-shadow: none;
  1374. -webkit-box-shadow: none;
  1375. box-shadow: none;
  1376. }
  1377. .postbox table.form-table {
  1378. margin-bottom: 0;
  1379. }
  1380. .postbox input[type="text"],
  1381. .postbox textarea,
  1382. .stuffbox input[type="text"],
  1383. .stuffbox textarea {
  1384. border-width: 1px;
  1385. border-style: solid;
  1386. }
  1387. .temp-border {
  1388. border: 1px dotted #ccc;
  1389. }
  1390. .columns-prefs label {
  1391. padding: 0 5px;
  1392. }
  1393. /*------------------------------------------------------------------------------
  1394. 9.0 - Dashboard
  1395. ------------------------------------------------------------------------------*/
  1396. #wpbody-content .metabox-holder {
  1397. padding-top: 10px;
  1398. }
  1399. #dashboard-widgets .meta-box-sortables {
  1400. margin: 0 5px;
  1401. }
  1402. #dashboard_recent_comments div.undo {
  1403. border-top-style: solid;
  1404. border-top-width: 1px;
  1405. margin: 0 -10px;
  1406. padding: 3px 8px;
  1407. font-size: 11px;
  1408. }
  1409. #the-comment-list td.comment p.comment-author {
  1410. margin-top: 0;
  1411. margin-left: 0;
  1412. }
  1413. #the-comment-list p.comment-author img {
  1414. float: left;
  1415. margin-right: 8px;
  1416. }
  1417. #the-comment-list p.comment-author strong a {
  1418. border: none;
  1419. }
  1420. #the-comment-list td {
  1421. vertical-align: top;
  1422. }
  1423. #the-comment-list td.comment {
  1424. word-wrap: break-word;
  1425. }
  1426. /*------------------------------------------------------------------------------
  1427. 10.0 - List Posts (/Pages/etc)
  1428. ------------------------------------------------------------------------------*/
  1429. table.fixed {
  1430. table-layout: fixed;
  1431. }
  1432. .fixed .column-rating,
  1433. .fixed .column-visible {
  1434. width: 8%;
  1435. }
  1436. .fixed .column-date,
  1437. .fixed .column-parent,
  1438. .fixed .column-links {
  1439. width: 10%;
  1440. }
  1441. .fixed .column-response,
  1442. .fixed .column-author,
  1443. .fixed .column-categories,
  1444. .fixed .column-tags,
  1445. .fixed .column-rel,
  1446. .fixed .column-role {
  1447. width: 15%;
  1448. }
  1449. .fixed .column-comments {
  1450. width: 4em;
  1451. padding: 8px 0;
  1452. text-align: left;
  1453. }
  1454. .fixed .column-comments .vers {
  1455. padding-left: 3px;
  1456. }
  1457. .fixed .column-comments a {
  1458. float: left;
  1459. }
  1460. .fixed .column-slug {
  1461. width: 25%;
  1462. }
  1463. .fixed .column-posts {
  1464. width: 10%;
  1465. }
  1466. .fixed .column-icon {
  1467. width: 80px;
  1468. }
  1469. #commentsdiv .fixed .column-author,
  1470. #comments-form .fixed .column-author {
  1471. width: 20%;
  1472. }
  1473. #commentsdiv.postbox .inside {
  1474. line-height: 1.4em;
  1475. margin: 0;
  1476. padding: 0;
  1477. }
  1478. #commentsdiv.postbox .inside .row-actions {
  1479. line-height:18px;
  1480. }
  1481. #commentsdiv.postbox .inside td {
  1482. padding:1em 10px;
  1483. }
  1484. #commentsdiv.postbox .inside .column-comment p {
  1485. }
  1486. #commentsdiv.postbox .inside .column-author {
  1487. width:33%;
  1488. }
  1489. #commentsdiv.postbox .inside p {
  1490. margin:6px 10px 8px;
  1491. }
  1492. #commentsdiv.postbox .column-comment p {
  1493. margin:0.6em 0;
  1494. }
  1495. #commentsdiv.postbox #replyrow td {
  1496. padding:0;
  1497. }
  1498. .sorting-indicator {
  1499. display: none;
  1500. width: 7px;
  1501. height: 4px;
  1502. margin-top: 8px;
  1503. margin-left: 7px;
  1504. background-image: url(../images/sort.gif);
  1505. background-repeat: no-repeat;
  1506. }
  1507. .fixed .column-comments .sorting-indicator {
  1508. margin-top: 3px;
  1509. }
  1510. .widefat th.sortable,
  1511. .widefat th.sorted {
  1512. padding: 0;
  1513. }
  1514. th.sortable a,
  1515. th.sorted a {
  1516. display: block;
  1517. overflow: hidden;
  1518. padding: 7px 7px 8px;
  1519. }
  1520. .fixed .column-comments.sortable a,
  1521. .fixed .column-comments.sorted a {
  1522. padding: 8px 0;
  1523. }
  1524. th.sortable a span,
  1525. th.sorted a span {
  1526. float: left;
  1527. cursor: pointer;
  1528. }
  1529. th.sorted.asc .sorting-indicator,
  1530. th.desc:hover span.sorting-indicator {
  1531. display: block;
  1532. background-position: 0 0;
  1533. }
  1534. th.sorted.desc .sorting-indicator,
  1535. th.asc:hover span.sorting-indicator {
  1536. display: block;
  1537. background-position: -7px 0;
  1538. }
  1539. /* Bulk Actions */
  1540. .tablenav-pages a {
  1541. border-bottom-style: solid;
  1542. border-bottom-width: 2px;
  1543. font-weight: bold;
  1544. margin-right: 1px;
  1545. padding: 0 2px;
  1546. }
  1547. .tablenav-pages .current-page {
  1548. text-align: center;
  1549. }
  1550. .tablenav-pages .next-page {
  1551. margin-left: 2px;
  1552. }
  1553. .tablenav a.button-secondary {
  1554. display: block;
  1555. margin: 3px 8px 0 0;
  1556. }
  1557. .tablenav {
  1558. clear: both;
  1559. height: 30px;
  1560. margin: 6px 0 4px;
  1561. vertical-align: middle;
  1562. }
  1563. .tablenav .tablenav-pages {
  1564. float: right;
  1565. display: block;
  1566. cursor: default;
  1567. height: 30px;
  1568. line-height: 30px;
  1569. font-size: 12px;
  1570. }
  1571. .tablenav .no-pages,
  1572. .tablenav .one-page .pagination-links {
  1573. display: none;
  1574. }
  1575. .tablenav .tablenav-pages a,
  1576. .tablenav-pages span.current {
  1577. text-decoration: none;
  1578. border: none;
  1579. padding: 3px 6px;
  1580. border-width: 1px;
  1581. border-style: solid;
  1582. -moz-border-radius: 3px;
  1583. -khtml-border-radius: 3px;
  1584. -webkit-border-radius: 3px;
  1585. border-radius: 3px;
  1586. }
  1587. .tablenav .tablenav-pages a.disabled:hover {
  1588. cursor: default;
  1589. }
  1590. .tablenav .tablenav-pages a.disabled:active {
  1591. cursor: default;
  1592. }
  1593. .tablenav .displaying-num {
  1594. margin-right: 10px;
  1595. font-size: 12px;
  1596. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1597. font-style: italic;
  1598. }
  1599. .tablenav .actions {
  1600. padding: 2px 8px 0 0;
  1601. }
  1602. .tablenav .delete {
  1603. margin-right: 20px;
  1604. }
  1605. .view-switch {
  1606. float: right;
  1607. margin: 6px 8px 0;
  1608. }
  1609. .view-switch a {
  1610. text-decoration: none;
  1611. }
  1612. .filter {
  1613. float: left;
  1614. margin: -5px 0 0 10px;
  1615. }
  1616. .filter .subsubsub {
  1617. margin-left: -10px;
  1618. margin-top: 13px;
  1619. }
  1620. .screen-per-page {
  1621. width: 3em;
  1622. }
  1623. #posts-filter fieldset {
  1624. float: left;
  1625. margin: 0 1.5ex 1em 0;
  1626. padding: 0;
  1627. }
  1628. #posts-filter fieldset legend {
  1629. padding: 0 0 .2em 1px;
  1630. }
  1631. span.post-state-format {
  1632. font-weight: normal;
  1633. }
  1634. /*------------------------------------------------------------------------------
  1635. 10.1 - Inline Editing
  1636. ------------------------------------------------------------------------------*/
  1637. /*
  1638. .quick-edit* is for Quick Edit
  1639. .bulk-edit* is for Bulk Edit
  1640. .inline-edit* is for everything
  1641. */
  1642. /* Layout */
  1643. tr.inline-edit-row td {
  1644. padding: 0 0.5em;
  1645. }
  1646. #wpbody-content .inline-edit-row fieldset {
  1647. font-size: 12px;
  1648. float: left;
  1649. margin: 0;
  1650. padding: 0;
  1651. width: 100%;
  1652. }
  1653. #wpbody-content .inline-edit-row fieldset .inline-edit-col {
  1654. padding: 0 0.5em;
  1655. }
  1656. #wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
  1657. border-width: 0 0 0 1px;
  1658. border-style: none none none solid;
  1659. }
  1660. #wpbody-content .quick-edit-row-post .inline-edit-col-left {
  1661. width: 40%;
  1662. }
  1663. #wpbody-content .quick-edit-row-post .inline-edit-col-right {
  1664. width: 39%;
  1665. }
  1666. #wpbody-content .inline-edit-row-post .inline-edit-col-center {
  1667. width: 20%;
  1668. }
  1669. #wpbody-content .quick-edit-row-page .inline-edit-col-left {
  1670. width: 50%;
  1671. }
  1672. #wpbody-content .quick-edit-row-page .inline-edit-col-right,
  1673. #wpbody-content .bulk-edit-row-post .inline-edit-col-right {
  1674. width: 49%;
  1675. }
  1676. #wpbody-content .bulk-edit-row .inline-edit-col-left {
  1677. width: 30%;
  1678. }
  1679. #wpbody-content .bulk-edit-row-page .inline-edit-col-right {
  1680. width: 69%;
  1681. }
  1682. #wpbody-content .bulk-edit-row .inline-edit-col-bottom {
  1683. float: right;
  1684. width: 69%;
  1685. }
  1686. #wpbody-content .inline-edit-row-page .inline-edit-col-right {
  1687. margin-top: 27px;
  1688. }
  1689. .inline-edit-row fieldset .inline-edit-group {
  1690. clear: both;
  1691. }
  1692. .inline-edit-row fieldset .inline-edit-group:after {
  1693. content: ".";
  1694. display: block;
  1695. height: 0;
  1696. clear: both;
  1697. visibility: hidden;
  1698. }
  1699. .inline-edit-row p.submit {
  1700. clear: both;
  1701. padding: 0.5em;
  1702. margin: 0.5em 0 0;
  1703. }
  1704. .inline-edit-row span.error {
  1705. line-height: 22px;
  1706. margin: 0 15px;
  1707. padding: 3px 5px;
  1708. }
  1709. /* Positioning */
  1710. .inline-edit-row h4 {
  1711. margin: .2em 0;
  1712. padding: 0;
  1713. line-height: 23px;
  1714. }
  1715. .inline-edit-row fieldset span.title,
  1716. .inline-edit-row fieldset span.checkbox-title {
  1717. margin: 0;
  1718. padding: 0;
  1719. line-height: 27px;
  1720. }
  1721. .inline-edit-row fieldset label,
  1722. .inline-edit-row fieldset span.inline-edit-categories-label {
  1723. display: block;
  1724. margin: .2em 0;
  1725. }
  1726. .inline-edit-row fieldset label.inline-edit-tags {
  1727. margin-top: 0;
  1728. }
  1729. .inline-edit-row fieldset label.inline-edit-tags span.title {
  1730. margin: .2em 0;
  1731. }
  1732. .inline-edit-row fieldset label span.title {
  1733. display: block;
  1734. float: left;
  1735. width: 5em;
  1736. }
  1737. .inline-edit-row fieldset label span.input-text-wrap {
  1738. display: block;
  1739. margin-left: 5em;
  1740. }
  1741. .quick-edit-row-post fieldset.inline-edit-col-right label span.title {
  1742. width: auto;
  1743. padding-right: 0.5em;
  1744. }
  1745. .inline-edit-row .input-text-wrap input[type=text] {
  1746. width: 100%;
  1747. }
  1748. .inline-edit-row fieldset label input[type=checkbox] {
  1749. vertical-align: text-bottom;
  1750. }
  1751. .inline-edit-row fieldset label textarea {
  1752. width: 100%;
  1753. height: 4em;
  1754. }
  1755. #wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
  1756. max-width: 50%;
  1757. }
  1758. #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
  1759. margin-right: 0.5em
  1760. }
  1761. .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
  1762. width: 6em;
  1763. }
  1764. /* Styling */
  1765. .inline-edit-row h4 {
  1766. text-transform: uppercase;
  1767. }
  1768. .inline-edit-row fieldset span.title,
  1769. .inline-edit-row fieldset span.checkbox-title {
  1770. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1771. font-style: italic;
  1772. line-height: 1.8em;
  1773. }
  1774. /* Specific Elements */
  1775. .inline-edit-row fieldset input[type="text"],
  1776. .inline-edit-row fieldset textarea {
  1777. border-style: solid;
  1778. border-width: 1px;
  1779. }
  1780. .inline-edit-row fieldset .inline-edit-date {
  1781. float: left;
  1782. }
  1783. .inline-edit-row fieldset input[name=jj],
  1784. .inline-edit-row fieldset input[name=hh],
  1785. .inline-edit-row fieldset input[name=mn] {
  1786. font-size: 12px;
  1787. width: 2.1em;
  1788. }
  1789. .inline-edit-row fieldset input[name=aa] {
  1790. font-size: 12px;
  1791. width: 3.5em;
  1792. }
  1793. .inline-edit-row fieldset label input.inline-edit-password-input {
  1794. width: 8em;
  1795. }
  1796. .inline-edit-row .catshow,
  1797. .inline-edit-row .cathide {
  1798. cursor: pointer;
  1799. }
  1800. ul.cat-checklist {
  1801. height: 12em;
  1802. border-style: solid;
  1803. border-width: 1px;
  1804. overflow-y: scroll;
  1805. padding: 0 5px;
  1806. margin: 0;
  1807. }
  1808. #bulk-titles {
  1809. display: block;
  1810. height: 12em;
  1811. border-style: solid;
  1812. border-width: 1px;
  1813. overflow-y: scroll;
  1814. padding: 0 5px;
  1815. margin: 0 0 5px;
  1816. }
  1817. .inline-edit-row fieldset ul.cat-checklist li,
  1818. .inline-edit-row fieldset ul.cat-checklist input {
  1819. margin: 0;
  1820. }
  1821. .inline-edit-row fieldset ul.cat-checklist label,
  1822. .inline-edit-row .catshow,
  1823. .inline-edit-row .cathide,
  1824. .inline-edit-row #bulk-titles div {
  1825. font-family: sans-serif;
  1826. font-style: normal;
  1827. font-size: 11px;
  1828. }
  1829. table .inline-edit-row fieldset ul.cat-hover {
  1830. height: auto;
  1831. max-height: 30em;
  1832. overflow-y: auto;
  1833. position: absolute;
  1834. }
  1835. .inline-edit-row fieldset label input.inline-edit-menu-order-input {
  1836. width: 3em;
  1837. }
  1838. .inline-edit-row fieldset label input.inline-edit-slug-input {
  1839. width: 75%;
  1840. }
  1841. .quick-edit-row-post fieldset label.inline-edit-status {
  1842. float: left;
  1843. }
  1844. #bulk-titles {
  1845. line-height: 140%;
  1846. }
  1847. #bulk-titles div {
  1848. margin: 0.2em 0.3em;
  1849. }
  1850. #bulk-titles div a {
  1851. cursor: pointer;
  1852. display: block;
  1853. float: left;
  1854. height: 10px;
  1855. margin: 3px 3px 0 -2px;
  1856. overflow: hidden;
  1857. position: relative;
  1858. text-indent: -9999px;
  1859. width: 10px;
  1860. }
  1861. /*------------------------------------------------------------------------------
  1862. 11.0 - Write/Edit Post Screen
  1863. ------------------------------------------------------------------------------*/
  1864. #titlediv {
  1865. position: relative;
  1866. margin-bottom: 20px;
  1867. }
  1868. #titlediv label { cursor: text; }
  1869. #titlediv div.inside {
  1870. margin: 0;
  1871. }
  1872. #poststuff #titlewrap {
  1873. border: 0;
  1874. padding: 0;
  1875. }
  1876. #titlediv #title {
  1877. padding: 3px 4px;
  1878. border-width: 1px;
  1879. border-style: solid;
  1880. -moz-border-radius: 3px;
  1881. -khtml-border-radius: 3px;
  1882. -webkit-border-radius: 3px;
  1883. border-radius: 3px;
  1884. font-size: 1.7em;
  1885. line-height: 100%;
  1886. width: 100%;
  1887. outline: none;
  1888. }
  1889. #titlediv #title-prompt-text,
  1890. #wp-fullscreen-title-prompt-text {
  1891. color: #bbb;
  1892. position: absolute;
  1893. font-size: 1.7em;
  1894. padding: 8px;
  1895. }
  1896. #wp-fullscreen-title-prompt-text {
  1897. left: 0;
  1898. padding: 11px;
  1899. }
  1900. #poststuff .inside-submitbox,
  1901. #side-sortables .inside-submitbox {
  1902. margin: 0 3px;
  1903. font-size: 11px;
  1904. }
  1905. input#link_description,
  1906. input#link_url {
  1907. width: 98%;
  1908. }
  1909. #pending {
  1910. background: 0 none;
  1911. border: 0 none;
  1912. padding: 0;
  1913. font-size: 11px;
  1914. margin-top: -1px;
  1915. }
  1916. #edit-slug-box {
  1917. height: 1em;
  1918. margin-top: 8px;
  1919. padding: 0 7px;
  1920. }
  1921. #editable-post-name-full {
  1922. display: none;
  1923. }
  1924. #editable-post-name input {
  1925. width: 16em;
  1926. }
  1927. .postarea h3 label {
  1928. float: left;
  1929. }
  1930. .postarea #add-media-button {
  1931. float: right;
  1932. margin: 7px 0pt 0pt;
  1933. position: relative;
  1934. right: 10px;
  1935. }
  1936. #poststuff #editor-toolbar {
  1937. height: 30px;
  1938. }
  1939. .wp_themeSkin tr.mceFirst td.mceToolbar {
  1940. border-width: 0 0 1px;
  1941. border-style: none none solid;
  1942. }
  1943. #edButtonPreview,
  1944. #edButtonHTML {
  1945. height: 18px;
  1946. margin: 5px 5px 0 0;
  1947. padding: 4px 5px 2px;
  1948. float: right;
  1949. cursor: pointer;
  1950. border-width: 1px;
  1951. border-style: solid;
  1952. -moz-border-radius: 3px 3px 0 0;
  1953. -webkit-border-top-right-radius: 3px;
  1954. -webkit-border-top-left-radius: 3px;
  1955. -khtml-border-top-right-radius: 3px;
  1956. -khtml-border-top-left-radius: 3px;
  1957. border-top-right-radius: 3px;
  1958. border-top-left-radius: 3px;
  1959. }
  1960. .js .theEditor {
  1961. color: white;
  1962. }
  1963. #poststuff #edButtonHTML {
  1964. margin-right: 15px;
  1965. }
  1966. #media-buttons {
  1967. cursor: default;
  1968. padding: 8px 8px 0;
  1969. }
  1970. #media-buttons a {
  1971. cursor: pointer;
  1972. padding: 0 0 5px 10px;
  1973. }
  1974. #media-buttons img,
  1975. #submitpost #ajax-loading,
  1976. #submitpost .ajax-loading {
  1977. vertical-align: middle;
  1978. }
  1979. #wpcontent .ajax-loading {
  1980. visibility: hidden;
  1981. }
  1982. .submitbox .submit {
  1983. text-align: left;
  1984. padding: 12px 10px 10px;
  1985. font-size: 11px;
  1986. }
  1987. .submitbox .submitdelete {
  1988. border-bottom-width: 1px;
  1989. border-bottom-style: solid;
  1990. text-decoration: none;
  1991. padding: 1px 2px;
  1992. }
  1993. .inside-submitbox #post_status {
  1994. margin: 2px 0 2px -2px;
  1995. }
  1996. .submitbox .submit a:hover {
  1997. border-bottom-width: 1px;
  1998. border-bottom-style: solid;
  1999. }
  2000. .submitbox .submit input {
  2001. margin-bottom: 8px;
  2002. margin-right: 4px;
  2003. padding: 6px;
  2004. }
  2005. #post-status-select, #post-format {
  2006. line-height: 2.5em;
  2007. margin-top: 3px;
  2008. }
  2009. /* Post Screen */
  2010. #post-body #normal-sortables {
  2011. min-height: 50px;
  2012. }
  2013. #post-body #advanced-sortables {
  2014. min-height: 20px;
  2015. }
  2016. .postbox {
  2017. -moz-border-radius: 3px;
  2018. -webkit-border-radius: 3px;
  2019. -khtml-border-radius: 3px;
  2020. border-radius: 3px;
  2021. position: relative;
  2022. min-width: 255px;
  2023. }
  2024. #trackback_url {
  2025. width: 99%;
  2026. }
  2027. #normal-sortables .postbox .submit {
  2028. background: transparent none;
  2029. border: 0 none;
  2030. float: right;
  2031. padding: 0 12px;
  2032. margin:0;
  2033. }
  2034. #side-sortables .category-add input {
  2035. width: 94%;
  2036. }
  2037. #side-sortables .category-add select {
  2038. width: 100%;
  2039. }
  2040. #side-sortables .category-add input.category-add-sumbit,
  2041. #post-body .category-add input.category-add input.category-add-sumbit {
  2042. width: auto;
  2043. }
  2044. #post-body ul.category-tabs,
  2045. #post-body ul.add-menu-item-tabs {
  2046. float: left;
  2047. width: 120px;
  2048. text-align: right;
  2049. /* Negative margin for the sake of those without JS: all tabs display */
  2050. margin: 0 -120px 0 5px;
  2051. padding: 0;
  2052. }
  2053. #post-body ul.category-tabs li,
  2054. #post-body ul.add-menu-item-tabs li {
  2055. padding: 8px;
  2056. }
  2057. #post-body ul.category-tabs li.tabs,
  2058. #post-body ul.add-menu-item-tabs li.tabs {
  2059. -moz-border-radius: 3px 0 0 3px;
  2060. -webkit-border-top-left-radius: 3px;
  2061. -webkit-border-bottom-left-radius: 3px;
  2062. -khtml-border-top-left-radius: 3px;
  2063. -khtml-border-bottom-left-radius: 3px;
  2064. border-top-left-radius: 3px;
  2065. border-bottom-left-radius: 3px;
  2066. }
  2067. #post-body ul.category-tabs li.tabs a,
  2068. #post-body ul.add-menu-item-tabs li.tabs a {
  2069. font-weight: bold;
  2070. text-decoration: none;
  2071. }
  2072. .wp-tab-panel,
  2073. .categorydiv div.tabs-panel,
  2074. .customlinkdiv div.tabs-panel,
  2075. .posttypediv div.tabs-panel,
  2076. .taxonomydiv div.tabs-panel,
  2077. #linkcategorydiv div.tabs-panel {
  2078. height: 200px;
  2079. overflow: auto;
  2080. padding: 0.5em 0.9em;
  2081. border-style: solid;
  2082. border-width: 1px;
  2083. }
  2084. .nav-menus-php .customlinkdiv div.tabs-panel,
  2085. .nav-menus-php .posttypediv div.tabs-panel,
  2086. .nav-menus-php .taxonomydiv div.tabs-panel {
  2087. height: auto;
  2088. max-height: 205px;
  2089. }
  2090. div.tabs-panel-active {
  2091. display:block;
  2092. }
  2093. div.tabs-panel-inactive {
  2094. display:none;
  2095. }
  2096. #post-body .categorydiv div.tabs-panel,
  2097. .taxonomy div.tabs-panel,
  2098. #post-body #linkcategorydiv div.tabs-panel {
  2099. margin: 0 5px 0 125px;
  2100. }
  2101. #side-sortables .category-tabs li,
  2102. #side-sortables .add-menu-item-tabs li,
  2103. .wp-tab-bar li {
  2104. display: inline;
  2105. line-height: 1.35em;
  2106. }
  2107. #side-sortables .category-tabs a,
  2108. #side-sortables .add-menu-item-tabs a,
  2109. .wp-tab-bar a {
  2110. text-decoration: none;
  2111. }
  2112. #side-sortables .category-tabs,
  2113. #side-sortables .add-menu-item-tabs,
  2114. .wp-tab-bar {
  2115. margin-bottom: 3px;
  2116. }
  2117. .categorydiv ul,
  2118. .customlinkdiv ul,
  2119. .posttypediv ul,
  2120. .taxonomydiv ul,
  2121. #linkcategorydiv ul {
  2122. list-style: none;
  2123. padding: 0;
  2124. margin: 0;
  2125. }
  2126. #normal-sortables .postbox #replyrow .submit {
  2127. float: none;
  2128. margin: 0;
  2129. padding: 3px 7px;
  2130. }
  2131. #side-sortables .submitbox .submit input,
  2132. #side-sortables .submitbox .submit .preview,
  2133. #side-sortables .submitbox .submit a.preview:hover {
  2134. border: 0 none;
  2135. }
  2136. #side-sortables .inside-submitbox .insidebox,
  2137. .stuffbox .insidebox {
  2138. margin: 11px 0;
  2139. }
  2140. #side-sortables .comments-box,
  2141. #normal-sortables .comments-box {
  2142. border: 0 none;
  2143. }
  2144. ul.category-tabs,
  2145. ul.add-menu-item-tabs,
  2146. ul.wp-tab-bar {
  2147. margin-top: 12px;
  2148. }
  2149. #side-sortables .comments-box thead th,
  2150. #normal-sortables .comments-box thead th {
  2151. background: transparent;
  2152. padding: 0 7px 4px;
  2153. font-style: italic;
  2154. }
  2155. ul.category-tabs li.tabs,
  2156. ul.add-menu-item-tabs li.tabs,
  2157. .wp-tab-active {
  2158. border-style: solid solid none;
  2159. border-width: 1px 1px 0;
  2160. }
  2161. #commentsdiv img.waiting {
  2162. padding-left: 5px;
  2163. }
  2164. #post-body .category-tabs li.tabs,
  2165. #post-body .add-menu-item-tabs li.tabs {
  2166. border-style: solid none solid solid;
  2167. border-width: 1px 0 1px 1px;
  2168. margin-right: -1px;
  2169. }
  2170. ul.category-tabs li,
  2171. ul.add-menu-item-tabs li,
  2172. ul.wp-tab-bar li {
  2173. padding: 5px;
  2174. -moz-border-radius: 3px 3px 0 0;
  2175. -webkit-border-top-left-radius: 3px;
  2176. -webkit-border-top-right-radius: 3px;
  2177. -khtml-border-top-left-radius: 3px;
  2178. -khtml-border-top-right-radius: 3px;
  2179. border-top-left-radius: 3px;
  2180. border-top-right-radius: 3px;
  2181. }
  2182. /* positioning etc. */
  2183. form#tags-filter {
  2184. position: relative;
  2185. }
  2186. .screen-per-page {
  2187. width: 3em;
  2188. }
  2189. #posts-filter fieldset {
  2190. float: left;
  2191. margin: 0 1.5ex 1em 0;
  2192. padding: 0;
  2193. }
  2194. #posts-filter fieldset legend {
  2195. padding: 0 0 .2em 1px;
  2196. }
  2197. /* Edit posts */
  2198. td.post-title strong, td.plugin-title strong {
  2199. display: block;
  2200. margin-bottom: .2em;
  2201. }
  2202. td.post-title p, td.plugin-title p {
  2203. margin: 6px 0;
  2204. }
  2205. /* Global classes */
  2206. .wp-hidden-children .wp-hidden-child,
  2207. .ui-tabs-hide {
  2208. display: none;
  2209. }
  2210. .commentlist .avatar {
  2211. vertical-align: text-top;
  2212. }
  2213. #post-body .tagsdiv #newtag {
  2214. margin-right: 5px;
  2215. width: 16em;
  2216. }
  2217. #side-sortables input#post_password {
  2218. width: 94%
  2219. }
  2220. #side-sortables .tagsdiv #newtag {
  2221. width: 68%;
  2222. }
  2223. #post-status-info {
  2224. border-width: 0 1px 1px;
  2225. border-style: none solid solid;
  2226. width: 100%;
  2227. -moz-border-radius: 0 0 3px 3px;
  2228. -webkit-border-bottom-left-radius: 3px;
  2229. -webkit-border-bottom-right-radius: 3px;
  2230. -khtml-border-bottom-left-radius: 3px;
  2231. -khtml-border-bottom-right-radius: 3px;
  2232. border-bottom-left-radius: 3px;
  2233. border-bottom-right-radius: 3px;
  2234. }
  2235. #post-status-info td {
  2236. font-size: 12px;
  2237. }
  2238. .autosave-info {
  2239. padding: 2px 15px 2px 2px;
  2240. text-align: right;
  2241. }
  2242. #editorcontent #post-status-info {
  2243. border: none;
  2244. }
  2245. #post-body .wp_themeSkin .mceStatusbar a.mceResize {
  2246. display: block;
  2247. background: transparent url(../images/resize.gif) no-repeat scroll right bottom;
  2248. width: 12px;
  2249. cursor: se-resize;
  2250. margin: 0 2px;
  2251. position: relative;
  2252. top: 22px;
  2253. }
  2254. #wp-word-count {
  2255. display: block;
  2256. padding: 2px 7px;
  2257. }
  2258. #timestampdiv select {
  2259. height: 20px;
  2260. line-height: 14px;
  2261. padding: 0;
  2262. vertical-align: top;
  2263. }
  2264. #jj, #hh, #mn {
  2265. width: 2em;
  2266. padding: 1px;
  2267. font-size: 12px;
  2268. }
  2269. #aa {
  2270. width: 3.4em;
  2271. padding: 1px;
  2272. font-size: 12px;
  2273. }
  2274. .curtime #timestamp {
  2275. background-repeat: no-repeat;
  2276. background-position: left top;
  2277. padding-left: 18px;
  2278. }
  2279. #timestampdiv {
  2280. padding-top: 5px;
  2281. line-height: 23px;
  2282. }
  2283. #timestampdiv p {
  2284. margin: 8px 0 6px;
  2285. }
  2286. #timestampdiv input {
  2287. border-width: 1px;
  2288. border-style: solid;
  2289. }
  2290. /*------------------------------------------------------------------------------
  2291. 11.1 - Custom Fields
  2292. ------------------------------------------------------------------------------*/
  2293. #postcustomstuff table,
  2294. #postcustomstuff input,
  2295. #postcustomstuff textarea {
  2296. border-width: 1px;
  2297. border-style: solid;
  2298. -moz-border-radius: 3px;
  2299. -khtml-border-radius: 3px;
  2300. -webkit-border-radius: 3px;
  2301. border-radius: 3px;
  2302. }
  2303. #postcustomstuff .updatemeta,
  2304. #postcustomstuff .deletemeta {
  2305. margin: auto;
  2306. }
  2307. #postcustomstuff thead th {
  2308. padding: 5px 8px 8px;
  2309. }
  2310. #postcustom #postcustomstuff .submit {
  2311. border: 0 none;
  2312. float: none;
  2313. padding: 5px 8px;
  2314. }
  2315. #side-sortables #postcustom #postcustomstuff .submit {
  2316. padding: 0 5px;
  2317. }
  2318. #side-sortables #postcustom #postcustomstuff td.left input {
  2319. margin: 3px 3px 0;
  2320. }
  2321. #side-sortables #postcustom #postcustomstuff #the-list textarea {
  2322. height: 85px;
  2323. margin: 3px;
  2324. }
  2325. #postcustomstuff table {
  2326. margin: 0;
  2327. width: 100%;
  2328. border-width: 1px;
  2329. border-style: solid;
  2330. border-spacing: 0;
  2331. }
  2332. #postcustomstuff table input,
  2333. #postcustomstuff table select,
  2334. #postcustomstuff table textarea {
  2335. width: 95%;
  2336. margin: 8px 0 8px 8px;
  2337. }
  2338. #postcustomstuff th.left,
  2339. #postcustomstuff td.left {
  2340. width: 38%;
  2341. }
  2342. #postcustomstuff .submit input {
  2343. width: auto;
  2344. }
  2345. #postcustomstuff #newmeta .submit {
  2346. padding: 0 8px;
  2347. }
  2348. #postcustomstuff table #addmetasub {
  2349. width: auto;
  2350. }
  2351. #postcustomstuff #newmetaleft {
  2352. vertical-align: top;
  2353. }
  2354. #postcustomstuff #newmetaleft a {
  2355. padding: 0 10px;
  2356. text-decoration: none;
  2357. }
  2358. /*------------------------------------------------------------------------------
  2359. 11.2 - Post Revis