home *** CD-ROM | disk | FTP | other *** search
/ HTML Examples / WP.iso / wordpress / wp-includes / css / editor.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2018-01-23  |  30.8 KB  |  1,834 lines

  1. /*------------------------------------------------------------------------------
  2.  TinyMCE and Quicklinks toolbars
  3. ------------------------------------------------------------------------------*/
  4.  
  5. /* TinyMCE widgets/containers */
  6.  
  7. .mce-container,
  8. .mce-container *,
  9. .mce-widget,
  10. .mce-widget * {
  11.     color: inherit;
  12.     font-family: inherit;
  13. }
  14.  
  15. .mce-container .mce-monospace,
  16. .mce-widget .mce-monospace {
  17.     font-family: Consolas, Monaco, monospace;
  18.     font-size: 13px;
  19.     line-height: 150%;
  20. }
  21.  
  22. /* TinyMCE windows */
  23. #mce-modal-block,
  24. #mce-modal-block.mce-fade {
  25.     opacity: 0.7;
  26.     filter: alpha(opacity=70);
  27.     transition: none;
  28. }
  29.  
  30. .mce-window {
  31.     border-radius: 0;
  32.     box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
  33.     -webkit-font-smoothing: subpixel-antialiased;
  34.     transition: none;
  35. }
  36.  
  37. .mce-window .mce-container-body.mce-abs-layout {
  38.     overflow: visible;
  39. }
  40.  
  41. .mce-window .mce-window-head {
  42.     background: #fcfcfc;
  43.     border-bottom: 1px solid #ddd;
  44.     padding: 0;
  45.     min-height: 36px;
  46. }
  47.  
  48. .mce-window .mce-window-head .mce-title {
  49.     color: #444;
  50.     font-size: 18px;
  51.     font-weight: 600;
  52.     line-height: 36px;
  53.     margin: 0;
  54.     padding: 0 36px 0 16px;
  55. }
  56.  
  57. .mce-window .mce-window-head .mce-close,
  58. .mce-window-head .mce-close .mce-i-remove {
  59.     color: transparent;
  60.     top: 0;
  61.     right: 0;
  62.     width: 36px;
  63.     height: 36px;
  64.     padding: 0;
  65.     line-height: 36px;
  66.     text-align: center;
  67. }
  68.  
  69. .mce-window-head .mce-close .mce-i-remove:before {
  70.     font: normal 20px/36px dashicons;
  71.     text-align: center;
  72.     color: #666;
  73.     width: 36px;
  74.     height: 36px;
  75.     display: block;
  76. }
  77.  
  78. .mce-window-head .mce-close:hover .mce-i-remove:before,
  79. .mce-window-head .mce-close:focus .mce-i-remove:before {
  80.     color: #00a0d2;
  81. }
  82.  
  83. .mce-window-head .mce-close:focus .mce-i-remove,
  84. div.mce-tab:focus {
  85.     box-shadow: 0 0 0 1px #5b9dd9,
  86.         0 0 2px 1px rgba(30, 140, 190, .8);
  87. }
  88.  
  89. .mce-window .mce-window-head .mce-dragh {
  90.     width: calc( 100% - 36px );
  91. }
  92.  
  93. .mce-window .mce-foot {
  94.     border-top: 1px solid #ddd;
  95. }
  96.  
  97. .mce-textbox,
  98. .mce-checkbox i.mce-i-checkbox,
  99. #wp-link .query-results {
  100.     border: 1px solid #ddd;
  101.     border-radius: 0;
  102.     box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
  103.     transition: .05s all ease-in-out;
  104. }
  105.  
  106. .mce-textbox:focus,
  107. .mce-textbox.mce-focus,
  108. .mce-checkbox:focus i.mce-i-checkbox,
  109. #wp-link .query-results:focus {
  110.     border-color: #5b9dd9;
  111.     box-shadow: 0 0 2px rgba(30,140,190,0.8);
  112. }
  113.  
  114. .mce-window .mce-wp-help {
  115.     height: 360px;
  116.     width: 460px;
  117.     overflow: auto;
  118. }
  119.  
  120. .mce-window .mce-wp-help * {
  121.     box-sizing: border-box;
  122. }
  123.  
  124. .mce-window .mce-wp-help > .mce-container-body {
  125.     width: auto !important;
  126. }
  127.  
  128. .mce-window .wp-editor-help {
  129.     padding: 10px 10px 0 20px;
  130. }
  131.  
  132. .mce-window .wp-editor-help h2,
  133. .mce-window .wp-editor-help p {
  134.     margin: 8px 0;
  135.     white-space: normal;
  136.     font-size: 14px;
  137.     font-weight: 400;
  138. }
  139.  
  140. .mce-window .wp-editor-help table {
  141.     width: 100%;
  142.     margin-bottom: 20px;
  143. }
  144.  
  145. .mce-window .wp-editor-help table.wp-help-single {
  146.     margin: 0 8px 20px;
  147. }
  148.  
  149. .mce-window .wp-editor-help table.fixed {
  150.     table-layout: fixed;
  151. }
  152.  
  153. .mce-window .wp-editor-help table.fixed th:nth-child(odd),
  154. .mce-window .wp-editor-help table.fixed td:nth-child(odd) {
  155.     width: 12%;
  156. }
  157.  
  158. .mce-window .wp-editor-help table.fixed th:nth-child(even),
  159. .mce-window .wp-editor-help table.fixed td:nth-child(even) {
  160.     width: 38%;
  161. }
  162.  
  163. .mce-window .wp-editor-help table.fixed th:nth-child(odd) {
  164.     padding: 5px 0 0;
  165. }
  166.  
  167. .mce-window .wp-editor-help td,
  168. .mce-window .wp-editor-help th {
  169.     font-size: 13px;
  170.     padding: 5px;
  171.     vertical-align: middle;
  172.     word-wrap: break-word;
  173.     white-space: normal;
  174. }
  175.  
  176. .mce-window .wp-editor-help th {
  177.     font-weight: 600;
  178.     padding-bottom: 0;
  179. }
  180.  
  181. .mce-window .wp-editor-help kbd {
  182.     font-family: monospace;
  183.     padding: 2px 7px 3px;
  184.     font-weight: 600;
  185.     margin: 0;
  186.     background: #eaeaea;
  187.     background: rgba(0,0,0,0.08);
  188. }
  189.  
  190. .mce-window .wp-help-th-center td:nth-child(odd),
  191. .mce-window .wp-help-th-center th:nth-child(odd) {
  192.     text-align: center;
  193. }
  194.  
  195. /* TinyMCE menus */
  196. .mce-menu,
  197. .mce-floatpanel.mce-popover {
  198.     border-color: rgba(0,0,0,0.15);
  199.     border-radius: 0;
  200.     box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
  201. }
  202.  
  203. .mce-menu,
  204. .mce-floatpanel.mce-popover.mce-bottom {
  205.     margin-top: 2px;
  206. }
  207.  
  208. .mce-floatpanel .mce-arrow {
  209.     display: none;
  210. }
  211.  
  212. .mce-menu .mce-container-body {
  213.     min-width: 160px;
  214. }
  215.  
  216. .mce-menu-item {
  217.     border: none;
  218.     margin-bottom: 2px;
  219. }
  220.  
  221. .mce-menu-has-icons i.mce-ico {
  222.     line-height: 20px;
  223. }
  224.  
  225. /* TinyMCE panel */
  226. div.mce-panel {
  227.     border: 0;
  228.     background: #fff;
  229. }
  230.  
  231. .mce-panel.mce-menu {
  232.     border: 1px solid #ddd;
  233. }
  234.  
  235. div.mce-tab {
  236.     line-height: 13px;
  237. }
  238.  
  239. /* TinyMCE toolbars */
  240. div.mce-toolbar-grp {
  241.     border-bottom: 1px solid #ddd;
  242.     background: #f5f5f5;
  243.     padding: 0;
  244.     position: relative;
  245. }
  246.  
  247. div.mce-inline-toolbar-grp {
  248.     border: 1px solid #a0a5aa;
  249.     border-radius: 2px;
  250.     box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
  251.     box-sizing: border-box;
  252.     margin-bottom: 8px;
  253.     position: absolute;
  254.     -moz-user-select: none;
  255.     -webkit-user-select: none;
  256.     -ms-user-select: none;
  257.     user-select: none;
  258.     max-width: 98%;
  259.     z-index: 100100; /* Same as the other TinyMCE "panels" */
  260. }
  261.  
  262. div.mce-inline-toolbar-grp > div.mce-stack-layout {
  263.     padding: 1px;
  264. }
  265.  
  266. div.mce-inline-toolbar-grp.mce-arrow-up {
  267.     margin-bottom: 0;
  268.     margin-top: 8px;
  269. }
  270.  
  271. div.mce-inline-toolbar-grp:before,
  272. div.mce-inline-toolbar-grp:after {
  273.     position: absolute;
  274.     left: 50%;
  275.     display: block;
  276.     width: 0;
  277.     height: 0;
  278.     border-style: solid;
  279.     border-color: transparent;
  280.     content: "";
  281. }
  282.  
  283. div.mce-inline-toolbar-grp.mce-arrow-up:before {
  284.     top: -9px;
  285.     border-bottom-color: #a0a5aa;
  286.     border-width: 0 9px 9px;
  287.     margin-left: -9px;
  288. }
  289.  
  290. div.mce-inline-toolbar-grp.mce-arrow-down:before {
  291.     bottom: -9px;
  292.     border-top-color: #a0a5aa;
  293.     border-width: 9px 9px 0;
  294.     margin-left: -9px;
  295. }
  296.  
  297. div.mce-inline-toolbar-grp.mce-arrow-up:after {
  298.     top: -8px;
  299.     border-bottom-color: #f5f5f5;
  300.     border-width: 0 8px 8px;
  301.     margin-left: -8px;
  302. }
  303.  
  304. div.mce-inline-toolbar-grp.mce-arrow-down:after {
  305.     bottom: -8px;
  306.     border-top-color: #f5f5f5;
  307.     border-width: 8px 8px 0;
  308.     margin-left: -8px;
  309. }
  310.  
  311. div.mce-inline-toolbar-grp.mce-arrow-left:before,
  312. div.mce-inline-toolbar-grp.mce-arrow-left:after {
  313.     margin: 0;
  314. }
  315.  
  316. div.mce-inline-toolbar-grp.mce-arrow-left:before {
  317.     left: 20px;
  318. }
  319. div.mce-inline-toolbar-grp.mce-arrow-left:after {
  320.     left: 21px;
  321. }
  322.  
  323. div.mce-inline-toolbar-grp.mce-arrow-right:before,
  324. div.mce-inline-toolbar-grp.mce-arrow-right:after {
  325.     left: auto;
  326.     margin: 0;
  327. }
  328.  
  329. div.mce-inline-toolbar-grp.mce-arrow-right:before {
  330.     right: 20px;
  331. }
  332.  
  333. div.mce-inline-toolbar-grp.mce-arrow-right:after {
  334.     right: 21px;
  335. }
  336.  
  337. div.mce-inline-toolbar-grp.mce-arrow-full {
  338.     right: 0;
  339. }
  340.  
  341. div.mce-inline-toolbar-grp.mce-arrow-full > div {
  342.     width: 100%;
  343.     overflow-x: auto;
  344. }
  345.  
  346. div.mce-toolbar-grp > div {
  347.     padding: 3px;
  348. }
  349.  
  350. .has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first {
  351.     padding-right: 32px;
  352. }
  353.  
  354. .mce-toolbar .mce-btn-group {
  355.     margin: 0;
  356. }
  357.  
  358. div.mce-statusbar {
  359.     border-top: 1px solid #e5e5e5;
  360. }
  361.  
  362. div.mce-path {
  363.     padding: 2px 10px;
  364.     margin: 0;
  365. }
  366.  
  367. .mce-path,
  368. .mce-path-item,
  369. .mce-path .mce-divider {
  370.     font-size: 12px;
  371. }
  372.  
  373. .mce-toolbar .mce-btn,
  374. .qt-dfw {
  375.     border-color: transparent;
  376.     background: transparent;
  377.     box-shadow: none;
  378.     text-shadow: none;
  379.     cursor: pointer;
  380. }
  381.  
  382. .mce-btn .mce-txt {
  383.     direction: inherit;
  384.     text-align: inherit;
  385. }
  386.  
  387. .mce-toolbar .mce-btn-group .mce-btn,
  388. .qt-dfw {
  389.     border: 1px solid transparent;
  390.     margin: 2px;
  391.     border-radius: 2px;
  392. }
  393.  
  394. .mce-toolbar .mce-btn-group .mce-btn:hover,
  395. .mce-toolbar .mce-btn-group .mce-btn:focus,
  396. .qt-dfw:hover,
  397. .qt-dfw:focus {
  398.     background: #fafafa;
  399.     border-color: #555d66;
  400.     color: #23282d;
  401.     box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );
  402.     outline: none;
  403. }
  404.  
  405. .mce-toolbar .mce-btn-group .mce-btn.mce-active,
  406. .mce-toolbar .mce-btn-group .mce-btn:active,
  407. .qt-dfw.active {
  408.     background: #ebebeb;
  409.     border-color: #555d66;
  410.     box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.3 );
  411. }
  412.  
  413. .mce-toolbar .mce-btn-group .mce-btn.mce-active:hover,
  414. .mce-toolbar .mce-btn-group .mce-btn.mce-active:focus {
  415.     border-color: #23282d;
  416. }
  417.  
  418. .mce-toolbar .mce-btn-group .mce-btn.mce-disabled:hover,
  419. .mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus {
  420.     color: #a0a5aa;
  421.     background: none;
  422.     border-color: #ddd;
  423.     text-shadow: 0 1px 0 #fff;
  424.     box-shadow: none;
  425. }
  426.  
  427. .mce-toolbar .mce-btn-group .mce-btn.mce-disabled:focus {
  428.     border-color: #555d66;
  429. }
  430.  
  431. .mce-toolbar .mce-btn-group .mce-first,
  432. .mce-toolbar .mce-btn-group .mce-last {
  433.     border-color: transparent;
  434. }
  435.  
  436. .mce-toolbar .mce-btn button,
  437. .qt-dfw {
  438.     padding: 2px 3px;
  439.     line-height: normal;
  440. }
  441.  
  442. .mce-toolbar .mce-listbox button {
  443.     font-size: 13px;
  444.     line-height: 20px;
  445.     padding-left: 6px;
  446.     padding-right: 20px;
  447. }
  448.  
  449. .mce-toolbar .mce-btn i {
  450.     text-shadow: none;
  451. }
  452.  
  453. .mce-toolbar .mce-btn-group > div {
  454.     white-space: normal;
  455. }
  456.  
  457. .mce-toolbar .mce-colorbutton .mce-open {
  458.     border-right: 0;
  459. }
  460.  
  461. .mce-toolbar .mce-colorbutton .mce-preview {
  462.     margin: 0;
  463.     padding: 0;
  464.     top: auto;
  465.     bottom: 2px;
  466.     left: 3px;
  467.     height: 3px;
  468.     width: 20px;
  469.     background: #555d66;
  470. }
  471.  
  472. .mce-toolbar .mce-btn-group .mce-btn.mce-primary {
  473.     min-width: 0;
  474.     background: #0085ba;
  475.     border-color: #0073aa #006799 #006799;
  476.     box-shadow: 0 1px 0 #006799;
  477.     color: #fff;
  478.     text-decoration: none;
  479.     text-shadow: none;
  480. }
  481.  
  482. /* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */
  483. .mce-toolbar .mce-btn-group .mce-btn.mce-primary button {
  484.     padding: 2px 3px 1px;
  485. }
  486.  
  487. .mce-toolbar .mce-btn-group .mce-btn.mce-primary .mce-ico {
  488.     color: #fff;
  489. }
  490.  
  491. .mce-toolbar .mce-btn-group .mce-btn.mce-primary:hover,
  492. .mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
  493.     background: #008ec2;
  494.     border-color: #006799;
  495.     color: #fff;
  496. }
  497.  
  498. .mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
  499.     box-shadow: 0 0 1px 1px #33b3db;
  500. }
  501.  
  502. .mce-toolbar .mce-btn-group .mce-btn.mce-primary:active {
  503.     background: #0073aa;
  504.     border-color: #006799;
  505.     box-shadow: inset 0 2px 0 #006799;
  506. }
  507.  
  508. /* mce listbox */
  509. .mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
  510.     border-radius: 0;
  511.     direction: ltr;
  512.     background: #fff;
  513.     border: 1px solid #ddd;
  514.     box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2);
  515. }
  516.  
  517. .mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover,
  518. .mce-toolbar .mce-btn-group .mce-btn.mce-listbox:focus {
  519.     border-color: #b4b9be;
  520. }
  521.  
  522. .mce-panel .mce-btn i.mce-caret {
  523.     border-top: 6px solid #555d66;
  524.     margin-left: 2px;
  525.     margin-right: 2px;
  526. }
  527.  
  528. .mce-listbox i.mce-caret {
  529.     right: 4px;
  530. }
  531.  
  532. .mce-panel .mce-btn:hover i.mce-caret,
  533. .mce-panel .mce-btn:focus i.mce-caret {
  534.     border-top-color: #23282d;
  535. }
  536.  
  537. .mce-panel .mce-active i.mce-caret {
  538.     border-top: 0;
  539.     border-bottom: 6px solid #23282d;
  540.     margin-top: 7px;
  541. }
  542.  
  543. .mce-listbox.mce-active i.mce-caret {
  544.     margin-top: -3px;
  545. }
  546.  
  547. .mce-toolbar .mce-splitbtn:hover .mce-open {
  548.     border-right-color: transparent;
  549. }
  550.  
  551. .mce-toolbar .mce-splitbtn .mce-open.mce-active {
  552.     background: transparent;
  553.     outline: none;
  554. }
  555.  
  556. .mce-menu .mce-menu-item:hover,
  557. .mce-menu .mce-menu-item.mce-selected,
  558. .mce-menu .mce-menu-item:focus,
  559. .mce-menu .mce-menu-item-normal.mce-active,
  560. .mce-menu .mce-menu-item-preview.mce-active {
  561.     background: #0073aa; /* See color scheme. */
  562.     color: #fff;
  563. }
  564.  
  565. .mce-menu .mce-menu-item-preview.mce-active {
  566.     border-left: none;
  567. }
  568.  
  569. .mce-menu .mce-menu-item-preview.mce-active .mce-text {
  570.     color: #fff;
  571. }
  572.  
  573. .mce-menu .mce-menu-item.mce-disabled {
  574.     cursor: default;
  575. }
  576.  
  577. .mce-menu .mce-menu-item.mce-disabled:hover {
  578.     background: #ccc;
  579. }
  580.  
  581. /* Menubar */
  582. div.mce-menubar {
  583.     border-color: #e5e5e5;
  584.     background: #fff;
  585.     border-width: 0px 0px 1px;
  586. }
  587.  
  588. .mce-menubar .mce-menubtn:hover,
  589. .mce-menubar .mce-menubtn.mce-active,
  590. .mce-menubar .mce-menubtn:focus {
  591.     border-color: transparent;
  592.     background: transparent;
  593. }
  594.  
  595. .mce-menubar .mce-menubtn:focus {
  596.     color: #124964;
  597.     box-shadow:
  598.         0 0 0 1px #5b9dd9,
  599.         0 0 2px 1px rgba(30, 140, 190, .8);
  600. }
  601.  
  602. div.mce-menu .mce-menu-item-sep,
  603. .mce-menu-item-sep:hover {
  604.     border-bottom: 1px solid #ddd;
  605.     height: 0px;
  606.     margin: 5px 0;
  607. }
  608.  
  609. .mce-menubtn span {
  610.     margin-right: 0;
  611.     padding-left: 3px;
  612. }
  613.  
  614. .mce-menu-has-icons i.mce-ico:before {
  615.     margin-left: -2px;
  616. }
  617.  
  618. /* Keyboard shortcuts position */
  619. .mce-menu.mce-menu-align .mce-menu-item-normal {
  620.     position: relative;
  621. }
  622.  
  623. .mce-menu.mce-menu-align .mce-menu-shortcut {
  624.     bottom: 0.6em;
  625.     font-size: 0.9em;
  626. }
  627.  
  628. /* Buttons in modals */
  629. .mce-primary button,
  630. .mce-primary button i {
  631.     text-align: center;
  632.     color: #fff;
  633.     text-shadow: none;
  634.     padding: 0;
  635.     line-height: 26px;
  636. }
  637.  
  638. .mce-window .mce-btn {
  639.     color: #555;
  640.     background: #f7f7f7;
  641.     text-decoration: none;
  642.     font-size: 13px;
  643.     line-height: 26px;
  644.     height: 28px;
  645.     margin: 0;
  646.     padding: 0;
  647.     cursor: pointer;
  648.     border: 1px solid #cccccc;
  649.     -webkit-appearance: none;
  650.     border-radius: 3px;
  651.     white-space: nowrap;
  652.     box-shadow: 0 1px 0 #cccccc;
  653. }
  654.  
  655. /* Remove the dotted border on :focus and the extra padding in Firefox */
  656. .mce-window .mce-btn::-moz-focus-inner {
  657.     border-width: 0;
  658.     border-style: none;
  659.     padding: 0;
  660. }
  661.  
  662. .mce-window .mce-btn:hover,
  663. .mce-window .mce-btn:focus {
  664.     background: #fafafa;
  665.     border-color: #999;
  666.     color: #23282d;
  667. }
  668.  
  669. .mce-window .mce-btn:focus {
  670.     border-color: #5b9dd9;
  671.     box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
  672. }
  673.  
  674. .mce-window .mce-btn:active {
  675.     background: #eee;
  676.     border-color: #999;
  677.     box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
  678.     -webkit-transform: translateY(1px);
  679.     transform: translateY(1px);
  680. }
  681.  
  682. .mce-window .mce-btn.mce-disabled {
  683.     color: #a0a5aa !important;
  684.     border-color: #ddd !important;
  685.     background: #f7f7f7 !important;
  686.     box-shadow: none !important;
  687.     text-shadow: 0 1px 0 #fff !important;
  688.     cursor: default;
  689.     -webkit-transform: none !important;
  690.     transform: none !important;
  691. }
  692.  
  693. .mce-window .mce-btn.mce-primary {
  694.     background: #0085ba;
  695.     border-color: #0073aa #006799 #006799;
  696.     box-shadow: 0 1px 0 #006799;
  697.     color: #fff;
  698.     text-decoration: none;
  699.     text-shadow: 0 -1px 1px #006799,
  700.         1px 0 1px #006799,
  701.         0 1px 1px #006799,
  702.         -1px 0 1px #006799;
  703. }
  704.  
  705. .mce-window .mce-btn.mce-primary:hover,
  706. .mce-window .mce-btn.mce-primary:focus {
  707.     background: #008ec2;
  708.     border-color: #006799;
  709.     color: #fff;
  710. }
  711.  
  712. .mce-window .mce-btn.mce-primary:focus {
  713.     box-shadow: 0 1px 0 #0073aa,
  714.         0 0 2px 1px #33b3db;
  715. }
  716.  
  717. .mce-window .mce-btn.mce-primary:active {
  718.     background: #0073aa;
  719.     border-color: #006799;
  720.     box-shadow: inset 0 2px 0 #006799;
  721.     vertical-align: top;
  722. }
  723.  
  724. .mce-window .mce-btn.mce-primary.mce-disabled {
  725.     color: #66c6e4 !important;
  726.     background: #008ec2 !important;
  727.     border-color: #007cb2 !important;
  728.     box-shadow: none !important;
  729.     text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important;
  730.     cursor: default;
  731. }
  732.  
  733. .mce-menubtn.mce-fixed-width span {
  734.     overflow-x: hidden;
  735.     text-overflow: ellipsis;
  736.     width: 82px;
  737. }
  738.  
  739. /* Charmap modal */
  740. .mce-charmap {
  741.     margin: 3px;
  742. }
  743.  
  744. .mce-charmap td {
  745.     padding: 0;
  746.     border-color: #ddd;
  747.     cursor: pointer;
  748. }
  749.  
  750. .mce-charmap td:hover {
  751.     background: #f3f3f3;
  752. }
  753.  
  754. .mce-charmap td div {
  755.     width: 18px;
  756.     height: 22px;
  757.     line-height: 22px;
  758. }
  759.  
  760. /* TinyMCE tooltips */
  761. .mce-tooltip {
  762.     margin-top: 2px;
  763. }
  764.  
  765. /* Don't show the tooltip. Used in Chrome RTL, see #42018 */
  766. .rtl .mce-tooltip.wp-hide-mce-tooltip {
  767.     display: none !important;
  768. }
  769.  
  770. .mce-tooltip-inner {
  771.     border-radius: 3px;
  772.     box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
  773.     color: #fff;
  774.     font-size: 12px;
  775. }
  776.  
  777. /* TinyMCE icons */
  778. .mce-ico {
  779.     font-family: 'tinymce', Arial;
  780. }
  781.  
  782. .mce-btn-small .mce-ico {
  783.     font-family: 'tinymce-small', Arial;
  784. }
  785.  
  786. .mce-toolbar .mce-ico {
  787.     color: #555d66;
  788.     line-height: 20px;
  789.     width: 20px;
  790.     height: 20px;
  791.     text-align: center;
  792.     text-shadow: none;
  793.     margin: 0;
  794.     padding: 0;
  795. }
  796.  
  797. .qt-dfw {
  798.     color: #555d66;
  799.     line-height: 20px;
  800.     width: 28px;
  801.     height: 26px;
  802.     text-align: center;
  803.     text-shadow: none;
  804. }
  805.  
  806. .mce-toolbar .mce-btn .mce-open {
  807.     line-height: 20px;
  808. }
  809.  
  810. .mce-toolbar .mce-btn:hover .mce-open,
  811. .mce-toolbar .mce-btn:focus .mce-open,
  812. .mce-toolbar .mce-btn.mce-active .mce-open {
  813.     border-left-color: #23282d;
  814. }
  815.  
  816. div.mce-notification {
  817.     left: 10% !important;
  818.     right: 10%;
  819. }
  820.  
  821. .mce-notification button.mce-close {
  822.     right: 6px;
  823.     top: 3px;
  824.     font-weight: 400;
  825.     color: #555d66;
  826. }
  827.  
  828. .mce-notification button.mce-close:hover,
  829. .mce-notification button.mce-close:focus {
  830.     color: #000;
  831. }
  832.  
  833. i.mce-i-bold,
  834. i.mce-i-italic,
  835. i.mce-i-bullist,
  836. i.mce-i-numlist,
  837. i.mce-i-blockquote,
  838. i.mce-i-alignleft,
  839. i.mce-i-aligncenter,
  840. i.mce-i-alignright,
  841. i.mce-i-link,
  842. i.mce-i-unlink,
  843. i.mce-i-wp_more,
  844. i.mce-i-strikethrough,
  845. i.mce-i-spellchecker,
  846. i.mce-i-fullscreen,
  847. i.mce-i-wp_fullscreen,
  848. i.mce-i-dfw,
  849. i.mce-i-wp_adv,
  850. i.mce-i-underline,
  851. i.mce-i-alignjustify,
  852. i.mce-i-forecolor,
  853. i.mce-i-backcolor,
  854. i.mce-i-pastetext,
  855. i.mce-i-pasteword,
  856. i.mce-i-removeformat,
  857. i.mce-i-charmap,
  858. i.mce-i-outdent,
  859. i.mce-i-indent,
  860. i.mce-i-undo,
  861. i.mce-i-redo,
  862. i.mce-i-help,
  863. i.mce-i-wp_help,
  864. i.mce-i-wp-media-library,
  865. i.mce-i-ltr,
  866. i.mce-i-wp_page,
  867. i.mce-i-hr,
  868. i.mce-i-wp_code,
  869. i.mce-i-dashicon,
  870. i.mce-i-remove {
  871.     font: normal 20px/1 dashicons;
  872.     padding: 0;
  873.     vertical-align: top;
  874.     speak: none;
  875.     -webkit-font-smoothing: antialiased;
  876.     -moz-osx-font-smoothing: grayscale;
  877.     margin-left: -2px;
  878.     padding-right: 2px;
  879. }
  880.  
  881. .qt-dfw {
  882.     font: normal 20px/1 dashicons;
  883.     vertical-align: top;
  884.     speak: none;
  885.     -webkit-font-smoothing: antialiased;
  886.     -moz-osx-font-smoothing: grayscale;
  887. }
  888.  
  889. i.mce-i-bold:before {
  890.     content: "\f200";
  891. }
  892.  
  893. i.mce-i-italic:before {
  894.     content: "\f201";
  895. }
  896.  
  897. i.mce-i-bullist:before {
  898.     content: "\f203";
  899. }
  900.  
  901. i.mce-i-numlist:before {
  902.     content: "\f204";
  903. }
  904.  
  905. i.mce-i-blockquote:before {
  906.     content: "\f205";
  907. }
  908.  
  909. i.mce-i-alignleft:before {
  910.     content: "\f206";
  911. }
  912.  
  913. i.mce-i-aligncenter:before {
  914.     content: "\f207";
  915. }
  916.  
  917. i.mce-i-alignright:before {
  918.     content: "\f208";
  919. }
  920.  
  921. i.mce-i-link:before {
  922.     content: "\f103";
  923. }
  924.  
  925. i.mce-i-unlink:before {
  926.     content: "\f225";
  927. }
  928.  
  929. i.mce-i-wp_more:before {
  930.     content: "\f209";
  931. }
  932.  
  933. i.mce-i-strikethrough:before {
  934.     content: "\f224";
  935. }
  936.  
  937. i.mce-i-spellchecker:before {
  938.     content: "\f210";
  939. }
  940.  
  941. i.mce-i-fullscreen:before,
  942. i.mce-i-wp_fullscreen:before,
  943. i.mce-i-dfw:before,
  944. .qt-dfw:before {
  945.     content: "\f211";
  946. }
  947.  
  948. i.mce-i-wp_adv:before {
  949.     content: "\f212";
  950. }
  951.  
  952. i.mce-i-underline:before {
  953.     content: "\f213";
  954. }
  955.  
  956. i.mce-i-alignjustify:before {
  957.     content: "\f214";
  958. }
  959.  
  960. i.mce-i-forecolor:before,
  961. i.mce-i-backcolor:before {
  962.     content: "\f215";
  963. }
  964.  
  965. i.mce-i-pastetext:before {
  966.     content: "\f217";
  967. }
  968.  
  969. i.mce-i-removeformat:before {
  970.     content: "\f218";
  971. }
  972.  
  973. i.mce-i-charmap:before {
  974.     content: "\f220";
  975. }
  976.  
  977. i.mce-i-outdent:before {
  978.     content: "\f221";
  979. }
  980.  
  981. i.mce-i-indent:before {
  982.     content: "\f222";
  983. }
  984.  
  985. i.mce-i-undo:before {
  986.     content: "\f171";
  987. }
  988.  
  989. i.mce-i-redo:before {
  990.     content: "\f172";
  991. }
  992.  
  993. i.mce-i-help:before,
  994. i.mce-i-wp_help:before {
  995.     content: "\f223";
  996. }
  997.  
  998. i.mce-i-wp-media-library:before {
  999.     content: "\f104";
  1000. }
  1001.  
  1002. i.mce-i-ltr:before {
  1003.     content: "\f320";
  1004. }
  1005.  
  1006. i.mce-i-wp_page:before {
  1007.     content: "\f105";
  1008. }
  1009.  
  1010. i.mce-i-hr:before {
  1011.     content: "\f460";
  1012. }
  1013.  
  1014. i.mce-i-remove:before {
  1015.     content: "\f158";
  1016. }
  1017.  
  1018. i.mce-i-wp_code:before {
  1019.     content: "\f475";
  1020. }
  1021.  
  1022. /* RTL button icons */
  1023. .rtl i.mce-i-outdent:before {
  1024.     content: "\f222";
  1025. }
  1026.  
  1027. .rtl i.mce-i-indent:before {
  1028.     content: "\f221";
  1029. }
  1030.  
  1031. /* Editors */
  1032. .wp-editor-wrap {
  1033.     position: relative;
  1034. }
  1035.  
  1036. .wp-editor-tools {
  1037.     position: relative;
  1038.     z-index: 1;
  1039. }
  1040.  
  1041. .wp-editor-tools:after {
  1042.     clear: both;
  1043.     content: "";
  1044.     display: table;
  1045. }
  1046.  
  1047. .wp-editor-container {
  1048.     clear: both;
  1049.     border: 1px solid #e5e5e5;
  1050. }
  1051.  
  1052. .wp-editor-area {
  1053.     font-family: Consolas, Monaco, monospace;
  1054.     font-size: 13px;
  1055.     padding: 10px;
  1056.     margin: 1px 0 0;
  1057.     line-height: 150%;
  1058.     border: 0;
  1059.     outline: none;
  1060.     display: block;
  1061.     resize: vertical;
  1062.     box-sizing: border-box;
  1063. }
  1064.  
  1065. .rtl .wp-editor-area {
  1066.     font-family: Tahoma, Monaco, monospace;
  1067. }
  1068.  
  1069. .locale-he-il .wp-editor-area {
  1070.     font-family: Arial, Monaco, monospace;
  1071. }
  1072.  
  1073. .wp-editor-container textarea.wp-editor-area {
  1074.     width: 100%;
  1075.     margin: 0;
  1076.     box-shadow: none;
  1077. }
  1078.  
  1079. .wp-editor-tabs {
  1080.     float: right;
  1081. }
  1082.  
  1083. .wp-switch-editor {
  1084.     float: left;
  1085.     box-sizing: content-box;
  1086.     position: relative;
  1087.     top: 1px;
  1088.     background: #ebebeb;
  1089.     color: #666;
  1090.     cursor: pointer;
  1091.     font-size: 13px;
  1092.     line-height: 19px;
  1093.     height: 20px;
  1094.     margin: 5px 0 0 5px;
  1095.     padding: 3px 8px 4px;
  1096.     border: 1px solid #e5e5e5;
  1097. }
  1098.  
  1099. .wp-switch-editor:focus {
  1100.     box-shadow:
  1101.         0 0 0 1px #5b9dd9,
  1102.         0 0 2px 1px rgba(30, 140, 190, .8);
  1103.     outline: none;
  1104.     color: #23282d;
  1105. }
  1106.  
  1107. .wp-switch-editor:active,
  1108. .html-active .switch-html:focus,
  1109. .tmce-active .switch-tmce:focus {
  1110.     box-shadow: none;
  1111. }
  1112.  
  1113. .wp-switch-editor:active {
  1114.     background-color: #f5f5f5;
  1115.     box-shadow: none;
  1116. }
  1117.  
  1118. .js .tmce-active .wp-editor-area {
  1119.     color: #fff;
  1120. }
  1121.  
  1122. .tmce-active .quicktags-toolbar {
  1123.      display: none;
  1124. }
  1125.  
  1126. .tmce-active .switch-tmce,
  1127. .html-active .switch-html {
  1128.     background: #f5f5f5;
  1129.     color: #555;
  1130.     border-bottom-color: #f5f5f5;
  1131. }
  1132.  
  1133. .wp-media-buttons {
  1134.     float: left;
  1135. }
  1136.  
  1137. .wp-media-buttons .button {
  1138.     margin-right: 5px;
  1139.     margin-bottom: 4px;
  1140.     padding-left: 7px;
  1141.     padding-right: 7px;
  1142. }
  1143.  
  1144. .wp-media-buttons .button:active {
  1145.     position: relative;
  1146.     top: 1px;
  1147.     margin-top: -1px;
  1148.     margin-bottom: 1px;
  1149. }
  1150.  
  1151. .wp-media-buttons .insert-media {
  1152.     padding-left: 5px;
  1153. }
  1154.  
  1155. .wp-media-buttons a {
  1156.     text-decoration: none;
  1157.     color: #444;
  1158.     font-size: 12px;
  1159. }
  1160.  
  1161. .wp-media-buttons img {
  1162.     padding: 0 4px;
  1163.     vertical-align: middle;
  1164. }
  1165.  
  1166. .wp-media-buttons span.wp-media-buttons-icon {
  1167.     display: inline-block;
  1168.     width: 18px;
  1169.     height: 18px;
  1170.     vertical-align: text-top;
  1171.     margin: 0 2px;
  1172. }
  1173.  
  1174. .wp-media-buttons .add_media span.wp-media-buttons-icon {
  1175.     background: none;
  1176. }
  1177.  
  1178. .wp-media-buttons .add_media span.wp-media-buttons-icon:before {
  1179.     font: normal 18px/1 dashicons;
  1180.     speak: none;
  1181.     -webkit-font-smoothing: antialiased;
  1182.     -moz-osx-font-smoothing: grayscale;
  1183. }
  1184.  
  1185. .wp-media-buttons .add_media span.wp-media-buttons-icon:before {
  1186.     content: "\f104";
  1187. }
  1188.  
  1189. /* Quicktags */
  1190. .quicktags-toolbar {
  1191.     padding: 3px;
  1192.     position: relative;
  1193.     border-bottom: 1px solid #ddd;
  1194.     background: #f5f5f5;
  1195.     min-height: 30px;
  1196. }
  1197.  
  1198. .has-dfw .quicktags-toolbar {
  1199.     padding-right: 35px;
  1200. }
  1201.  
  1202. .wp-core-ui .quicktags-toolbar input.button.button-small {
  1203.     margin: 2px;
  1204. }
  1205.  
  1206. .quicktags-toolbar input[value="link"] {
  1207.     text-decoration: underline;
  1208. }
  1209.  
  1210. .quicktags-toolbar input[value="del"] {
  1211.     text-decoration: line-through;
  1212. }
  1213.  
  1214. .quicktags-toolbar input[value="i"] {
  1215.     font-style: italic;
  1216. }
  1217.  
  1218. .quicktags-toolbar input[value="b"] {
  1219.     font-weight: 600;
  1220. }
  1221.  
  1222. .mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw,
  1223. .qt-dfw {
  1224.     position: absolute;
  1225.     top: 0;
  1226.     right: 0;
  1227.     margin: 5px 5px 0 0;
  1228. }
  1229.  
  1230. .qt-fullscreen {
  1231.     position: static;
  1232.     margin: 2px;
  1233. }
  1234.  
  1235. @media screen and ( max-width: 782px ) {
  1236.     .mce-toolbar .mce-btn button,
  1237.     .qt-dfw {
  1238.         padding: 6px 7px;
  1239.     }
  1240.  
  1241.     /* Compensate for the extra box shadow at the bottom of .mce-btn.mce-primary */
  1242.     .mce-toolbar .mce-btn-group .mce-btn.mce-primary button {
  1243.         padding: 6px 7px 5px;
  1244.     }
  1245.  
  1246.     .mce-toolbar .mce-btn-group .mce-btn {
  1247.         margin: 1px;
  1248.     }
  1249.  
  1250.     .qt-dfw {
  1251.         width: 36px;
  1252.         height: 34px;
  1253.     }
  1254.  
  1255.     .mce-toolbar .mce-btn-group .mce-btn.mce-wp-dfw {
  1256.         margin: 4px 4px 0 0;
  1257.     }
  1258.  
  1259.     .mce-toolbar .mce-colorbutton .mce-preview {
  1260.         left: 8px;
  1261.         bottom: 6px;
  1262.     }
  1263.  
  1264.     .mce-window .mce-btn {
  1265.         padding: 2px 0;
  1266.     }
  1267.  
  1268.     .has-dfw div.mce-toolbar-grp .mce-toolbar.mce-first,
  1269.     .has-dfw .quicktags-toolbar {
  1270.         padding-right: 40px;
  1271.     }
  1272. }
  1273.  
  1274. @media screen and ( min-width: 782px ) {
  1275.     .wp-core-ui .quicktags-toolbar input.button.button-small {
  1276.         /* .button-small is normally 11px, but a bit too small for these buttons. */
  1277.         font-size: 12px;
  1278.         height: 26px;
  1279.         line-height: 24px;
  1280.     }
  1281. }
  1282.  
  1283. #wp_editbtns,
  1284. #wp_gallerybtns {
  1285.     padding: 2px;
  1286.     position: absolute;
  1287.     display: none;
  1288.     z-index: 100020;
  1289. }
  1290.  
  1291. #wp_editimgbtn,
  1292. #wp_delimgbtn,
  1293. #wp_editgallery,
  1294. #wp_delgallery {
  1295.     border-color: #999;
  1296.     background-color: #eee;
  1297.     margin: 2px;
  1298.     padding: 2px;
  1299.     border-width: 1px;
  1300.     border-style: solid;
  1301.     border-radius: 3px;
  1302. }
  1303.  
  1304. #wp_editimgbtn:hover,
  1305. #wp_delimgbtn:hover,
  1306. #wp_editgallery:hover,
  1307. #wp_delgallery:hover {
  1308.     border-color: #555;
  1309.     background-color: #ccc;
  1310. }
  1311.  
  1312. /*------------------------------------------------------------------------------
  1313.  wp-link
  1314. ------------------------------------------------------------------------------*/
  1315.  
  1316. #wp-link-wrap {
  1317.     display: none;
  1318.     background-color: #fff;
  1319.     box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
  1320.     width: 500px;
  1321.     overflow: hidden;
  1322.     margin-left: -250px;
  1323.     margin-top: -125px;
  1324.     position: fixed;
  1325.     top: 50%;
  1326.     left: 50%;
  1327.     z-index: 100105;
  1328.     transition: height 0.2s, margin-top 0.2s;
  1329. }
  1330.  
  1331. #wp-link-backdrop {
  1332.     display: none;
  1333.     position: fixed;
  1334.     top: 0;
  1335.     left: 0;
  1336.     right: 0;
  1337.     bottom: 0;
  1338.     min-height: 360px;
  1339.     background: #000;
  1340.     opacity: 0.7;
  1341.     filter: alpha(opacity=70);
  1342.     z-index: 100100;
  1343. }
  1344.  
  1345. #wp-link {
  1346.     position: relative;
  1347.     height: 100%;
  1348. }
  1349.  
  1350. #wp-link-wrap {
  1351.     height: 500px;
  1352.     margin-top: -250px;
  1353. }
  1354.  
  1355. #wp-link-wrap .wp-link-text-field {
  1356.     display: none;
  1357. }
  1358.  
  1359. #wp-link-wrap.has-text-field .wp-link-text-field {
  1360.     display: block;
  1361. }
  1362.  
  1363. #link-modal-title {
  1364.     background: #fcfcfc;
  1365.     border-bottom: 1px solid #ddd;
  1366.     height: 36px;
  1367.     font-size: 18px;
  1368.     font-weight: 600;
  1369.     line-height: 36px;
  1370.     margin: 0;
  1371.     padding: 0 36px 0 16px;
  1372. }
  1373.  
  1374. #wp-link-close {
  1375.     color: #666;
  1376.     padding: 0;
  1377.     position: absolute;
  1378.     top: 0;
  1379.     right: 0;
  1380.     width: 36px;
  1381.     height: 36px;
  1382.     text-align: center;
  1383.     background: none;
  1384.     border: none;
  1385.     cursor: pointer;
  1386. }
  1387.  
  1388. #wp-link-close:before {
  1389.     font: normal 20px/36px dashicons;
  1390.     vertical-align: top;
  1391.     speak: none;
  1392.     -webkit-font-smoothing: antialiased;
  1393.     -moz-osx-font-smoothing: grayscale;
  1394.     width: 36px;
  1395.     height: 36px;
  1396.     content: "\f158";
  1397. }
  1398.  
  1399. #wp-link-close:hover,
  1400. #wp-link-close:focus {
  1401.     color: #00a0d2;
  1402. }
  1403.  
  1404. #wp-link-close:focus {
  1405.     outline: none;
  1406.     box-shadow:
  1407.         0 0 0 1px #5b9dd9,
  1408.         0 0 2px 1px rgba(30, 140, 190, .8);
  1409. }
  1410.  
  1411. #wp-link-wrap #link-selector {
  1412.     -webkit-overflow-scrolling: touch;
  1413.     padding: 0 16px;
  1414.     position: absolute;
  1415.     top: 37px;
  1416.     left: 0;
  1417.     right: 0;
  1418.     bottom: 44px;
  1419. }
  1420.  
  1421. #wp-link ol,
  1422. #wp-link ul {
  1423.     list-style: none;
  1424.     margin: 0;
  1425.     padding: 0;
  1426. }
  1427.  
  1428. #wp-link input[type="text"] {
  1429.     box-sizing: border-box;
  1430. }
  1431.  
  1432. #wp-link #link-options {
  1433.     padding: 8px 0 12px;
  1434. }
  1435.  
  1436. #wp-link p.howto {
  1437.     margin: 3px 0;
  1438. }
  1439.  
  1440. #wp-link p.howto a {
  1441.     text-decoration: none;
  1442.     color: inherit;
  1443. }
  1444.  
  1445. #wp-link label input[type="text"] {
  1446.     margin-top: 5px;
  1447.     width: 70%;
  1448. }
  1449.  
  1450. #wp-link #link-options label span,
  1451. #wp-link #search-panel label span.search-label {
  1452.     display: inline-block;
  1453.     width: 80px;
  1454.     text-align: right;
  1455.     padding-right: 5px;
  1456.     max-width: 24%;
  1457.     vertical-align: middle;
  1458.     word-wrap: break-word;
  1459. }
  1460.  
  1461. #wp-link .link-search-field {
  1462.     float: left;
  1463.     width: 250px;
  1464.     max-width: 70%;
  1465. }
  1466.  
  1467. #wp-link .link-search-wrapper {
  1468.     margin: 5px 0 9px;
  1469.     display: block;
  1470.     overflow: hidden;
  1471. }
  1472.  
  1473. #wp-link .link-search-wrapper span {
  1474.     float: left;
  1475.     margin-top: 4px;
  1476. }
  1477.  
  1478. #wp-link .link-search-wrapper .spinner {
  1479.     margin-top: 5px;
  1480. }
  1481.  
  1482. #wp-link .link-target {
  1483.     padding: 3px 0 0;
  1484.     white-space: nowrap;
  1485.     overflow: hidden;
  1486.     text-overflow: ellipsis;
  1487. }
  1488.  
  1489. #wp-link .link-target label {
  1490.     max-width: 70%;
  1491. }
  1492.  
  1493. #wp-link .query-results {
  1494.     border: 1px #dfdfdf solid;
  1495.     margin: 0 0 12px;
  1496.     background: #fff;
  1497.     overflow: auto;
  1498.     position: absolute;
  1499.     left: 16px;
  1500.     right: 16px;
  1501.     bottom: 0;
  1502.     top: 166px;
  1503. }
  1504.  
  1505. .has-text-field #wp-link .query-results {
  1506.     top: 200px;
  1507. }
  1508.  
  1509. #wp-link li {
  1510.     clear: both;
  1511.     margin-bottom: 0;
  1512.     border-bottom: 1px solid #f1f1f1;
  1513.     color: #32373c;
  1514.     padding: 4px 6px 4px 10px;
  1515.     cursor: pointer;
  1516.     position: relative;
  1517. }
  1518.  
  1519. #wp-link .query-notice {
  1520.     padding: 0;
  1521.     border-bottom: 1px solid #dfdfdf;
  1522.     background-color: #f7fcfe;
  1523.     color: #000;
  1524. }
  1525.  
  1526. #wp-link .query-notice .query-notice-default,
  1527. #wp-link .query-notice .query-notice-hint {
  1528.     display: block;
  1529.     padding: 6px;
  1530.     border-left: 4px solid #00a0d2;
  1531. }
  1532.  
  1533. #wp-link .unselectable.no-matches-found {
  1534.     padding: 0;
  1535.     border-bottom: 1px solid #dfdfdf;
  1536.     background-color: #fef7f1;
  1537. }
  1538.  
  1539. #wp-link .no-matches-found .item-title {
  1540.     display: block;
  1541.     padding: 6px;
  1542.     border-left: 4px solid #d54e21;
  1543. }
  1544.  
  1545. #wp-link .query-results em {
  1546.     font-style: normal;
  1547. }
  1548.  
  1549. #wp-link li:hover {
  1550.     background: #eaf2fa;
  1551.     color: #151515;
  1552. }
  1553.  
  1554. #wp-link li.unselectable {
  1555.     border-bottom: 1px solid #dfdfdf;
  1556. }
  1557.  
  1558. #wp-link li.unselectable:hover {
  1559.     background: #fff;
  1560.     cursor: auto;
  1561.     color: #32373c;
  1562. }
  1563.  
  1564. #wp-link li.selected {
  1565.     background: #ddd;
  1566.     color: #32373c;
  1567. }
  1568.  
  1569. #wp-link li.selected .item-title {
  1570.     font-weight: 600;
  1571. }
  1572.  
  1573. #wp-link li:last-child {
  1574.     border: none;
  1575. }
  1576.  
  1577. #wp-link .item-title {
  1578.     display: inline-block;
  1579.     width: 80%;
  1580.     width: calc(100% - 68px);
  1581.     word-wrap: break-word;
  1582. }
  1583.  
  1584. #wp-link .item-info {
  1585.     text-transform: uppercase;
  1586.     color: #666;
  1587.     font-size: 11px;
  1588.     position: absolute;
  1589.     right: 5px;
  1590.     top: 5px;
  1591. }
  1592.  
  1593. #wp-link .river-waiting {
  1594.     display: none;
  1595.     padding: 10px 0;
  1596. }
  1597.  
  1598. #wp-link .submitbox {
  1599.     padding: 8px 16px;
  1600.     background: #fcfcfc;
  1601.     border-top: 1px solid #ddd;
  1602.     position: absolute;
  1603.     bottom: 0;
  1604.     left: 0;
  1605.     right: 0;
  1606. }
  1607.  
  1608. #wp-link-cancel {
  1609.     line-height: 25px;
  1610.     float: left;
  1611. }
  1612.  
  1613. #wp-link-update {
  1614.     line-height: 23px;
  1615.     float: right;
  1616. }
  1617.  
  1618. #wp-link-submit {
  1619.     float: right;
  1620. }
  1621.  
  1622. @media screen and ( max-width: 782px ) {
  1623.     #wp-link-wrap {
  1624.         margin-top: -140px;
  1625.     }
  1626.  
  1627.     #wp-link-wrap .query-results {
  1628.         top: 195px;
  1629.     }
  1630.  
  1631.     #wp-link-wrap.has-text-field .query-results {
  1632.         top: 235px;
  1633.     }
  1634.  
  1635.     #link-selector {
  1636.         padding: 0 16px 60px;
  1637.     }
  1638.  
  1639.     #wp-link-wrap #link-selector {
  1640.         bottom: 52px;
  1641.     }
  1642.  
  1643.     #wp-link-cancel {
  1644.         line-height: 32px;
  1645.     }
  1646.  
  1647.     #wp-link .link-target {
  1648.         padding-top: 10px;
  1649.     }
  1650.  
  1651.     #wp-link .submitbox .button {
  1652.         margin-bottom: 0;
  1653.     }
  1654. }
  1655.  
  1656. @media screen and ( max-width: 520px ) {
  1657.     #wp-link-wrap {
  1658.         width: auto;
  1659.         margin-left: 0;
  1660.         left: 10px;
  1661.         right: 10px;
  1662.         max-width: 500px;
  1663.     }
  1664. }
  1665.  
  1666. @media screen and ( max-height: 520px ) {
  1667.     #wp-link-wrap {
  1668.         transition: none;
  1669.         height: auto;
  1670.         margin-top: 0;
  1671.         top: 10px;
  1672.         bottom: 10px;
  1673.     }
  1674.  
  1675.     #link-selector {
  1676.         overflow: auto;
  1677.     }
  1678.  
  1679.     #search-panel .query-results {
  1680.         position: static;
  1681.     }
  1682. }
  1683.  
  1684. @media screen and ( max-height: 290px ) {
  1685.     #wp-link-wrap {
  1686.         height: auto;
  1687.         margin-top: 0;
  1688.         top: 10px;
  1689.         bottom: 10px;
  1690.     }
  1691.  
  1692.     #link-selector {
  1693.         overflow: auto;
  1694.         height: calc(100% - 92px);
  1695.         padding-bottom: 2px;
  1696.     }
  1697.  
  1698.     #search-panel .query-results {
  1699.         position: static;
  1700.     }
  1701. }
  1702.  
  1703. div.wp-link-preview {
  1704.     float: left;
  1705.     margin: 5px;
  1706.     max-width: 694px;
  1707.     overflow: hidden;
  1708.     text-overflow: ellipsis;
  1709. }
  1710.  
  1711. div.wp-link-preview a {
  1712.     color: #0073aa;
  1713.     text-decoration: underline;
  1714.     transition-property: border, background, color;
  1715.     transition-duration: .05s;
  1716.     transition-timing-function: ease-in-out;
  1717.     cursor: pointer;
  1718. }
  1719.  
  1720. div.wp-link-preview a.wplink-url-error {
  1721.     color: #dc3232;
  1722. }
  1723.  
  1724. div.wp-link-input {
  1725.     float: left;
  1726.     margin: 2px;
  1727.     max-width: 694px;
  1728. }
  1729.  
  1730. div.wp-link-input input {
  1731.     width: 300px;
  1732.     padding: 3px;
  1733.     box-sizing: border-box;
  1734. }
  1735.  
  1736. .mce-toolbar div.wp-link-preview ~ .mce-btn,
  1737. .mce-toolbar div.wp-link-input ~ .mce-btn {
  1738.     margin: 2px 1px;
  1739. }
  1740.  
  1741. .mce-inline-toolbar-grp .mce-btn-group .mce-btn:last-child {
  1742.     margin-right: 2px;
  1743. }
  1744.  
  1745. .ui-autocomplete.wplink-autocomplete {
  1746.     z-index: 100110;
  1747.     max-height: 200px;
  1748.     overflow-y: auto;
  1749.     padding: 0;
  1750.     margin: 0;
  1751.     list-style: none;
  1752.     position: absolute;
  1753.     border: 1px solid #5b9dd9;
  1754.     box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
  1755.     background-color: #fff;
  1756. }
  1757.  
  1758. .ui-autocomplete.wplink-autocomplete li {
  1759.     margin-bottom: 0;
  1760.     padding: 4px 10px;
  1761.     clear: both;
  1762.     white-space: normal;
  1763.     text-align: left;
  1764. }
  1765.  
  1766. .ui-autocomplete.wplink-autocomplete li .wp-editor-float-right {
  1767.     float: right;
  1768. }
  1769.  
  1770. .ui-autocomplete.wplink-autocomplete li.ui-state-focus {
  1771.     background-color: #ddd;
  1772.     cursor: pointer;
  1773. }
  1774.  
  1775. @media screen and ( max-width: 782px ) {
  1776.     div.wp-link-preview,
  1777.     div.wp-link-input {
  1778.         max-width: 70%;
  1779.         max-width: calc(100% - 86px);
  1780.     }
  1781.  
  1782.     div.wp-link-preview {
  1783.         margin: 8px 0 8px 5px;
  1784.     }
  1785.  
  1786.     div.wp-link-input {
  1787.         width: 300px;
  1788.     }
  1789.  
  1790.     div.wp-link-input input {
  1791.         width: 100%;
  1792.         font-size: 16px;
  1793.         padding: 5px;
  1794.     }
  1795. }
  1796.  
  1797. /* =Overlay Body
  1798. -------------------------------------------------------------- */
  1799.  
  1800. .mce-fullscreen {
  1801.     z-index: 100010;
  1802. }
  1803.  
  1804. /* =Localization
  1805. -------------------------------------------------------------- */
  1806. .rtl .wp-switch-editor,
  1807. .rtl .quicktags-toolbar input {
  1808.     font-family: Tahoma, sans-serif;
  1809. }
  1810.  
  1811. /* rtl:ignore */
  1812. .mce-rtl .mce-flow-layout .mce-flow-layout-item > div {
  1813.     direction: rtl;
  1814. }
  1815.  
  1816. /* rtl:ignore */
  1817. .mce-rtl .mce-listbox i.mce-caret {
  1818.     left: 6px;
  1819. }
  1820.  
  1821. html:lang(he-il) .rtl .wp-switch-editor,
  1822. html:lang(he-il) .rtl .quicktags-toolbar input  {
  1823.      font-family: Arial, sans-serif;
  1824. }
  1825.  
  1826. /* HiDPI */
  1827. @media print,
  1828.   (-webkit-min-device-pixel-ratio: 1.25),
  1829.   (min-resolution: 120dpi) {
  1830.     .wp-media-buttons .add_media span.wp-media-buttons-icon {
  1831.         background: none;
  1832.     }
  1833. }
  1834.