editor-rtl.css 31 KB

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