skin.css 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370
  1. /**
  2. * Copyright (c) Tiny Technologies, Inc. All rights reserved.
  3. * Licensed under the LGPL or a commercial license.
  4. * For LGPL see License.txt in the project root for license information.
  5. * For commercial licenses see https://www.tiny.cloud/
  6. */
  7. .tox {
  8. box-sizing: content-box;
  9. color: #222f3e;
  10. cursor: auto;
  11. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  12. font-size: 16px;
  13. font-style: normal;
  14. font-weight: normal;
  15. line-height: normal;
  16. -webkit-tap-highlight-color: transparent;
  17. text-decoration: none;
  18. text-shadow: none;
  19. text-transform: none;
  20. vertical-align: initial;
  21. white-space: normal;
  22. }
  23. .tox *:not(svg) {
  24. box-sizing: inherit;
  25. color: inherit;
  26. cursor: inherit;
  27. direction: inherit;
  28. font-family: inherit;
  29. font-size: inherit;
  30. font-style: inherit;
  31. font-weight: inherit;
  32. line-height: inherit;
  33. -webkit-tap-highlight-color: inherit;
  34. text-align: inherit;
  35. text-decoration: inherit;
  36. text-shadow: inherit;
  37. text-transform: inherit;
  38. vertical-align: inherit;
  39. white-space: inherit;
  40. }
  41. .tox *:not(svg) {
  42. /* stylelint-disable-line no-duplicate-selectors */
  43. background: transparent;
  44. border: 0;
  45. float: none;
  46. height: auto;
  47. margin: 0;
  48. max-width: none;
  49. outline: 0;
  50. padding: 0;
  51. position: static;
  52. width: auto;
  53. }
  54. .tox:not([dir=rtl]) {
  55. direction: ltr;
  56. text-align: left;
  57. }
  58. .tox[dir=rtl] {
  59. direction: rtl;
  60. text-align: right;
  61. }
  62. .tox-tinymce {
  63. border: 1px solid #cccccc;
  64. border-radius: 0;
  65. box-shadow: none;
  66. box-sizing: border-box;
  67. display: flex;
  68. flex-direction: column;
  69. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  70. overflow: hidden;
  71. position: relative;
  72. visibility: inherit !important;
  73. }
  74. .tox-editor-container {
  75. display: flex;
  76. flex: 1 1 auto;
  77. flex-direction: column;
  78. overflow: hidden;
  79. }
  80. .tox-editor-container > *:first-child {
  81. border-top: none !important;
  82. }
  83. .tox-tinymce-aux {
  84. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  85. }
  86. .tox-tinymce *:focus,
  87. .tox-tinymce-aux *:focus {
  88. outline: none;
  89. }
  90. button::-moz-focus-inner {
  91. border: 0;
  92. }
  93. .tox-silver-sink {
  94. z-index: 1300;
  95. }
  96. .tox .tox-anchorbar {
  97. display: flex;
  98. flex: 0 0 auto;
  99. }
  100. .tox .tox-bar {
  101. display: flex;
  102. flex: 0 0 auto;
  103. }
  104. .tox .tox-button {
  105. background-color: #207ab7;
  106. background-image: none;
  107. background-position: none;
  108. background-repeat: none;
  109. border-color: #207ab7;
  110. border-radius: 3px;
  111. border-style: solid;
  112. border-width: 1px;
  113. box-shadow: none;
  114. box-sizing: border-box;
  115. color: #fff;
  116. cursor: pointer;
  117. display: inline-block;
  118. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  119. font-size: 14px;
  120. font-weight: bold;
  121. letter-spacing: 1;
  122. line-height: 24px;
  123. margin: 0;
  124. outline: none;
  125. padding: 4px 16px;
  126. text-align: center;
  127. text-decoration: none;
  128. text-transform: capitalize;
  129. white-space: nowrap;
  130. }
  131. .tox .tox-button[disabled] {
  132. background-color: #207ab7;
  133. background-image: none;
  134. border-color: #207ab7;
  135. box-shadow: none;
  136. color: rgba(255, 255, 255, 0.5);
  137. cursor: not-allowed;
  138. }
  139. .tox .tox-button:focus:not(:disabled) {
  140. background-color: #1c6ca1;
  141. background-image: none;
  142. border-color: #1c6ca1;
  143. box-shadow: none;
  144. color: #fff;
  145. }
  146. .tox .tox-button:hover:not(:disabled) {
  147. background-color: #1c6ca1;
  148. background-image: none;
  149. border-color: #1c6ca1;
  150. box-shadow: none;
  151. color: #fff;
  152. }
  153. .tox .tox-button:active:not(:disabled) {
  154. background-color: #185d8c;
  155. background-image: none;
  156. border-color: #185d8c;
  157. box-shadow: none;
  158. color: #fff;
  159. }
  160. .tox .tox-button--secondary {
  161. background-color: #f0f0f0;
  162. background-image: none;
  163. background-position: none;
  164. background-repeat: none;
  165. border-color: #f0f0f0;
  166. border-radius: 3px;
  167. border-style: solid;
  168. border-width: 1px;
  169. box-shadow: none;
  170. color: #222f3e;
  171. outline: none;
  172. padding: 4px 16px;
  173. text-decoration: none;
  174. text-transform: capitalize;
  175. }
  176. .tox .tox-button--secondary[disabled] {
  177. background-color: #f0f0f0;
  178. background-image: none;
  179. border-color: #f0f0f0;
  180. box-shadow: none;
  181. color: rgba(34, 47, 62, 0.5);
  182. }
  183. .tox .tox-button--secondary:focus:not(:disabled) {
  184. background-color: #e3e3e3;
  185. background-image: none;
  186. border-color: #e3e3e3;
  187. box-shadow: none;
  188. color: #222f3e;
  189. }
  190. .tox .tox-button--secondary:hover:not(:disabled) {
  191. background-color: #e3e3e3;
  192. background-image: none;
  193. border-color: #e3e3e3;
  194. box-shadow: none;
  195. color: #222f3e;
  196. }
  197. .tox .tox-button--secondary:active:not(:disabled) {
  198. background-color: #d6d6d6;
  199. background-image: none;
  200. border-color: #d6d6d6;
  201. box-shadow: none;
  202. color: #222f3e;
  203. }
  204. .tox .tox-button--icon,
  205. .tox .tox-button.tox-button--icon,
  206. .tox .tox-button.tox-button--secondary.tox-button--icon {
  207. padding: 4px;
  208. }
  209. .tox .tox-button--icon .tox-icon svg,
  210. .tox .tox-button.tox-button--icon .tox-icon svg,
  211. .tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg {
  212. display: block;
  213. fill: currentColor;
  214. }
  215. .tox .tox-button-link {
  216. background: 0;
  217. border: none;
  218. box-sizing: border-box;
  219. cursor: pointer;
  220. display: inline-block;
  221. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  222. font-size: 16px;
  223. font-weight: normal;
  224. line-height: 1.3;
  225. margin: 0;
  226. padding: 0;
  227. white-space: nowrap;
  228. }
  229. .tox .tox-button-link--sm {
  230. font-size: 14px;
  231. }
  232. .tox .tox-button--naked {
  233. background-color: transparent;
  234. border-color: transparent;
  235. box-shadow: unset;
  236. color: #222f3e;
  237. }
  238. .tox .tox-button--naked:hover:not(:disabled) {
  239. background-color: #e3e3e3;
  240. border-color: #e3e3e3;
  241. box-shadow: none;
  242. color: #222f3e;
  243. }
  244. .tox .tox-button--naked:focus:not(:disabled) {
  245. background-color: #e3e3e3;
  246. border-color: #e3e3e3;
  247. box-shadow: none;
  248. color: #222f3e;
  249. }
  250. .tox .tox-button--naked:active:not(:disabled) {
  251. background-color: #d6d6d6;
  252. border-color: #d6d6d6;
  253. box-shadow: none;
  254. color: #222f3e;
  255. }
  256. .tox .tox-button--naked .tox-icon svg {
  257. fill: currentColor;
  258. }
  259. .tox .tox-button--naked.tox-button--icon {
  260. color: currentColor;
  261. }
  262. .tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
  263. color: #222f3e;
  264. }
  265. .tox .tox-checkbox {
  266. align-items: center;
  267. border-radius: 3px;
  268. cursor: pointer;
  269. display: flex;
  270. height: 36px;
  271. min-width: 36px;
  272. }
  273. .tox .tox-checkbox__input {
  274. /* Hide from view but visible to screen readers */
  275. height: 1px;
  276. left: -10000px;
  277. overflow: hidden;
  278. position: absolute;
  279. top: auto;
  280. width: 1px;
  281. }
  282. .tox .tox-checkbox__icons {
  283. border-radius: 3px;
  284. box-shadow: 0 0 0 2px transparent;
  285. box-sizing: content-box;
  286. height: 24px;
  287. padding: calc(4px - 1px);
  288. width: 24px;
  289. }
  290. .tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  291. display: block;
  292. fill: rgba(34, 47, 62, 0.3);
  293. }
  294. .tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  295. display: none;
  296. fill: #207ab7;
  297. }
  298. .tox .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  299. display: none;
  300. fill: #207ab7;
  301. }
  302. .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  303. display: none;
  304. }
  305. .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  306. display: block;
  307. }
  308. .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  309. display: none;
  310. }
  311. .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  312. display: block;
  313. }
  314. .tox input.tox-checkbox__input:focus + .tox-checkbox__icons {
  315. border-radius: 3px;
  316. box-shadow: inset 0 0 0 1px #207ab7;
  317. padding: calc(4px - 1px);
  318. }
  319. .tox:not([dir=rtl]) .tox-checkbox__label {
  320. margin-left: 4px;
  321. }
  322. .tox:not([dir=rtl]) .tox-bar .tox-checkbox {
  323. margin-left: 4px;
  324. }
  325. .tox[dir=rtl] .tox-checkbox__label {
  326. margin-right: 4px;
  327. }
  328. .tox[dir=rtl] .tox-bar .tox-checkbox {
  329. margin-right: 4px;
  330. }
  331. .tox .tox-collection--toolbar .tox-collection__group {
  332. display: flex;
  333. padding: 0;
  334. }
  335. .tox .tox-collection--grid .tox-collection__group {
  336. display: flex;
  337. flex-wrap: wrap;
  338. max-height: 208px;
  339. overflow-x: hidden;
  340. overflow-y: auto;
  341. padding: 0;
  342. }
  343. .tox .tox-collection--list .tox-collection__group {
  344. border-bottom-width: 0;
  345. border-color: #cccccc;
  346. border-left-width: 0;
  347. border-right-width: 0;
  348. border-style: solid;
  349. border-top-width: 1px;
  350. padding: 4px 0;
  351. }
  352. .tox .tox-collection--list .tox-collection__group:first-child {
  353. border-top-width: 0;
  354. }
  355. .tox .tox-collection__group-heading {
  356. background-color: #e6e6e6;
  357. color: rgba(34, 47, 62, 0.7);
  358. cursor: default;
  359. font-size: 12px;
  360. font-style: normal;
  361. font-weight: normal;
  362. margin-bottom: 4px;
  363. margin-top: -4px;
  364. padding: 4px 8px;
  365. text-transform: none;
  366. -webkit-touch-callout: none;
  367. -webkit-user-select: none;
  368. -moz-user-select: none;
  369. -ms-user-select: none;
  370. user-select: none;
  371. }
  372. .tox .tox-collection__item {
  373. align-items: center;
  374. color: #222f3e;
  375. cursor: pointer;
  376. display: flex;
  377. -webkit-touch-callout: none;
  378. -webkit-user-select: none;
  379. -moz-user-select: none;
  380. -ms-user-select: none;
  381. user-select: none;
  382. }
  383. .tox .tox-collection--list .tox-collection__item {
  384. padding: 4px 8px;
  385. }
  386. .tox .tox-collection--toolbar .tox-collection__item {
  387. border-radius: 3px;
  388. padding: 4px;
  389. }
  390. .tox .tox-collection--grid .tox-collection__item {
  391. border-radius: 3px;
  392. padding: 4px;
  393. }
  394. .tox .tox-collection--list .tox-collection__item--enabled {
  395. background-color: inherit;
  396. color: contrast(inherit, #222f3e, #fff);
  397. }
  398. .tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  399. background-color: #dee0e2;
  400. color: #222f3e;
  401. }
  402. .tox .tox-collection--toolbar .tox-collection__item--enabled {
  403. background-color: #c8cbcf;
  404. color: #222f3e;
  405. }
  406. .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  407. background-color: #dee0e2;
  408. color: #222f3e;
  409. }
  410. .tox .tox-collection--grid .tox-collection__item--enabled {
  411. background-color: #c8cbcf;
  412. color: #222f3e;
  413. }
  414. .tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  415. background-color: #dee0e2;
  416. color: #222f3e;
  417. }
  418. .tox .tox-collection__item--state-disabled {
  419. background-color: transparent;
  420. color: rgba(34, 47, 62, 0.5);
  421. cursor: default;
  422. }
  423. .tox .tox-collection__item-icon {
  424. align-items: center;
  425. display: flex;
  426. height: 24px;
  427. justify-content: center;
  428. width: 24px;
  429. }
  430. .tox .tox-collection__item-icon svg {
  431. fill: currentColor;
  432. }
  433. .tox .tox-collection--toolbar-lg .tox-collection__item-icon {
  434. height: 48px;
  435. width: 48px;
  436. }
  437. .tox .tox-collection__item[role="menuitemcheckbox"]:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg {
  438. display: none;
  439. }
  440. .tox .tox-collection__item-label {
  441. color: currentColor;
  442. display: inline-block;
  443. flex: 1;
  444. -ms-flex-preferred-size: auto;
  445. font-size: 14px;
  446. font-style: normal;
  447. font-weight: normal;
  448. line-height: 24px;
  449. text-transform: none;
  450. word-break: break-all;
  451. }
  452. .tox .tox-collection__item-accessory {
  453. color: rgba(34, 47, 62, 0.7);
  454. display: inline-block;
  455. font-size: 14px;
  456. height: 24px;
  457. line-height: 24px;
  458. text-transform: normal;
  459. }
  460. .tox .tox-collection__item-caret {
  461. align-items: center;
  462. display: flex;
  463. min-height: 24px;
  464. }
  465. .tox .tox-collection__item-caret::after {
  466. content: '';
  467. font-size: 0;
  468. min-height: inherit;
  469. }
  470. .tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > *:not(:first-child) {
  471. margin-left: 8px;
  472. }
  473. .tox:not([dir=rtl]) .tox-collection--list .tox-collection__item-label:first-child {
  474. margin-left: 4px;
  475. }
  476. .tox:not([dir=rtl]) .tox-collection__item-accessory {
  477. margin-left: 16px;
  478. text-align: right;
  479. }
  480. .tox:not([dir=rtl]) .tox-collection__item-caret {
  481. margin-left: 16px;
  482. }
  483. .tox[dir=rtl] .tox-collection--list .tox-collection__item > *:not(:first-child) {
  484. margin-right: 8px;
  485. }
  486. .tox[dir=rtl] .tox-collection--list .tox-collection__item-label:first-child {
  487. margin-right: 4px;
  488. }
  489. .tox[dir=rtl] .tox-collection__item-icon-rtl {
  490. /* stylelint-disable-next-line no-descending-specificity */
  491. }
  492. .tox[dir=rtl] .tox-collection__item-icon-rtl .tox-collection__item-icon svg {
  493. transform: rotateY(180deg);
  494. }
  495. .tox[dir=rtl] .tox-collection__item-accessory {
  496. margin-right: 16px;
  497. text-align: left;
  498. }
  499. .tox[dir=rtl] .tox-collection__item-caret {
  500. margin-right: 16px;
  501. transform: rotateY(180deg);
  502. }
  503. .tox .tox-color-picker-container {
  504. display: flex;
  505. flex-direction: row;
  506. height: 225px;
  507. margin: 0;
  508. }
  509. .tox .tox-sv-palette {
  510. box-sizing: border-box;
  511. display: flex;
  512. height: 100%;
  513. }
  514. .tox .tox-sv-palette-spectrum {
  515. height: 100%;
  516. }
  517. .tox .tox-sv-palette,
  518. .tox .tox-sv-palette-spectrum {
  519. width: 225px;
  520. }
  521. .tox .tox-sv-palette-thumb {
  522. background: none;
  523. border: 1px solid black;
  524. border-radius: 50%;
  525. box-sizing: content-box;
  526. height: 12px;
  527. position: absolute;
  528. width: 12px;
  529. }
  530. .tox .tox-sv-palette-inner-thumb {
  531. border: 1px solid white;
  532. border-radius: 50%;
  533. height: 10px;
  534. position: absolute;
  535. width: 10px;
  536. }
  537. .tox .tox-hue-slider {
  538. box-sizing: border-box;
  539. height: 100%;
  540. width: 25px;
  541. }
  542. .tox .tox-hue-slider-spectrum {
  543. background: linear-gradient(to bottom, #f00, #ff0080, #f0f, #8000ff, #00f, #0080ff, #0ff, #00ff80, #0f0, #80ff00, #ff0, #ff8000, #f00);
  544. height: 100%;
  545. width: 100%;
  546. }
  547. .tox .tox-hue-slider,
  548. .tox .tox-hue-slider-spectrum {
  549. width: 20px;
  550. }
  551. .tox .tox-hue-slider-thumb {
  552. background: white;
  553. border: 1px solid black;
  554. box-sizing: content-box;
  555. height: 4px;
  556. width: 100%;
  557. }
  558. .tox .tox-rgb-form {
  559. display: flex;
  560. flex-direction: column;
  561. justify-content: space-between;
  562. }
  563. .tox .tox-rgb-form div {
  564. align-items: center;
  565. display: flex;
  566. justify-content: space-between;
  567. margin-bottom: 5px;
  568. width: inherit;
  569. }
  570. .tox .tox-rgb-form input {
  571. width: 6em;
  572. }
  573. .tox .tox-rgb-form input.tox-invalid {
  574. /* Need !important to override Chrome's focus styling unfortunately */
  575. border: 1px solid red !important;
  576. }
  577. .tox .tox-rgb-form .tox-rgba-preview {
  578. border: 1px solid black;
  579. flex-grow: 2;
  580. margin-bottom: 0;
  581. }
  582. .tox:not([dir=rtl]) .tox-sv-palette {
  583. margin-right: 15px;
  584. }
  585. .tox:not([dir=rtl]) .tox-hue-slider {
  586. margin-right: 15px;
  587. }
  588. .tox:not([dir=rtl]) .tox-hue-slider-thumb {
  589. margin-left: -1px;
  590. }
  591. .tox:not([dir=rtl]) .tox-rgb-form label {
  592. margin-right: 0.5em;
  593. }
  594. .tox[dir=rtl] .tox-sv-palette {
  595. margin-left: 15px;
  596. }
  597. .tox[dir=rtl] .tox-hue-slider {
  598. margin-left: 15px;
  599. }
  600. .tox[dir=rtl] .tox-hue-slider-thumb {
  601. margin-right: -1px;
  602. }
  603. .tox[dir=rtl] .tox-rgb-form label {
  604. margin-left: 0.5em;
  605. }
  606. .tox .tox-toolbar .tox-swatches,
  607. .tox .tox-toolbar__primary .tox-swatches,
  608. .tox .tox-toolbar__overflow .tox-swatches {
  609. margin: 2px 0 3px 4px;
  610. }
  611. .tox .tox-collection--list .tox-collection__group .tox-swatches-menu {
  612. border: 0;
  613. margin: -4px 0;
  614. }
  615. .tox .tox-swatches__row {
  616. display: flex;
  617. }
  618. .tox .tox-swatch {
  619. height: 30px;
  620. transition: transform 0.15s, box-shadow 0.15s;
  621. width: 30px;
  622. }
  623. .tox .tox-swatch:hover,
  624. .tox .tox-swatch:focus {
  625. box-shadow: 0 0 0 1px rgba(127, 127, 127, 0.3) inset;
  626. transform: scale(0.8);
  627. }
  628. .tox .tox-swatch--remove {
  629. align-items: center;
  630. display: flex;
  631. justify-content: center;
  632. }
  633. .tox .tox-swatch--remove svg path {
  634. stroke: #e74c3c;
  635. }
  636. .tox .tox-swatches__picker-btn {
  637. align-items: center;
  638. background-color: transparent;
  639. border: 0;
  640. cursor: pointer;
  641. display: flex;
  642. height: 30px;
  643. justify-content: center;
  644. outline: none;
  645. padding: 0;
  646. width: 30px;
  647. }
  648. .tox .tox-swatches__picker-btn svg {
  649. height: 24px;
  650. width: 24px;
  651. }
  652. .tox .tox-swatches__picker-btn:hover {
  653. background: #dee0e2;
  654. }
  655. .tox:not([dir=rtl]) .tox-swatches__picker-btn {
  656. margin-left: auto;
  657. }
  658. .tox[dir=rtl] .tox-swatches__picker-btn {
  659. margin-right: auto;
  660. }
  661. .tox .tox-comment-thread {
  662. background: #fff;
  663. position: relative;
  664. }
  665. .tox .tox-comment-thread > *:not(:first-child) {
  666. margin-top: 8px;
  667. }
  668. .tox .tox-comment {
  669. background: #fff;
  670. border: 1px solid #cccccc;
  671. border-radius: 3px;
  672. box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  673. padding: 8px 8px 16px 8px;
  674. position: relative;
  675. }
  676. .tox .tox-comment__header {
  677. align-items: center;
  678. color: #222f3e;
  679. display: flex;
  680. justify-content: space-between;
  681. }
  682. .tox .tox-comment__date {
  683. color: rgba(34, 47, 62, 0.7);
  684. font-size: 12px;
  685. }
  686. .tox .tox-comment__body {
  687. color: #222f3e;
  688. font-size: 14px;
  689. font-style: normal;
  690. font-weight: normal;
  691. line-height: 1.3;
  692. margin-top: 8px;
  693. position: relative;
  694. text-transform: initial;
  695. }
  696. .tox .tox-comment__body textarea {
  697. resize: none;
  698. white-space: normal;
  699. width: 100%;
  700. }
  701. .tox .tox-comment__expander {
  702. padding-top: 8px;
  703. }
  704. .tox .tox-comment__expander p {
  705. color: rgba(34, 47, 62, 0.7);
  706. font-size: 14px;
  707. font-style: normal;
  708. }
  709. .tox .tox-comment__body p {
  710. margin: 0;
  711. }
  712. .tox .tox-comment__buttonspacing {
  713. padding-top: 16px;
  714. text-align: center;
  715. }
  716. .tox .tox-comment-thread__overlay::after {
  717. background: #fff;
  718. bottom: 0;
  719. content: "";
  720. display: flex;
  721. left: 0;
  722. opacity: 0.9;
  723. position: absolute;
  724. right: 0;
  725. top: 0;
  726. z-index: 5;
  727. }
  728. .tox .tox-comment__reply {
  729. display: flex;
  730. flex-shrink: 0;
  731. flex-wrap: wrap;
  732. justify-content: flex-end;
  733. margin-top: 8px;
  734. }
  735. .tox .tox-comment__reply > *:first-child {
  736. margin-bottom: 8px;
  737. width: 100%;
  738. }
  739. .tox .tox-comment__edit {
  740. display: flex;
  741. flex-wrap: wrap;
  742. justify-content: flex-end;
  743. margin-top: 16px;
  744. }
  745. .tox .tox-comment__gradient::after {
  746. background: linear-gradient(rgba(255, 255, 255, 0), #fff);
  747. bottom: 0;
  748. content: "";
  749. display: block;
  750. height: 5em;
  751. margin-top: -40px;
  752. position: absolute;
  753. width: 100%;
  754. }
  755. .tox .tox-comment__overlay {
  756. background: #fff;
  757. bottom: 0;
  758. display: flex;
  759. flex-direction: column;
  760. flex-grow: 1;
  761. left: 0;
  762. opacity: 0.9;
  763. position: absolute;
  764. right: 0;
  765. text-align: center;
  766. top: 0;
  767. z-index: 5;
  768. }
  769. .tox .tox-comment__loading-text {
  770. align-items: center;
  771. color: #222f3e;
  772. display: flex;
  773. flex-direction: column;
  774. position: relative;
  775. }
  776. .tox .tox-comment__loading-text > div {
  777. padding-bottom: 16px;
  778. }
  779. .tox .tox-comment__overlaytext {
  780. bottom: 0;
  781. flex-direction: column;
  782. font-size: 14px;
  783. left: 0;
  784. padding: 1em;
  785. position: absolute;
  786. right: 0;
  787. top: 0;
  788. z-index: 10;
  789. }
  790. .tox .tox-comment__overlaytext p {
  791. background-color: #fff;
  792. box-shadow: 0 0 8px 8px #fff;
  793. color: #222f3e;
  794. text-align: center;
  795. }
  796. .tox .tox-comment__overlaytext div:nth-of-type(2) {
  797. font-size: 0.8em;
  798. }
  799. .tox .tox-comment__busy-spinner {
  800. align-items: center;
  801. background-color: #fff;
  802. bottom: 0;
  803. display: flex;
  804. justify-content: center;
  805. left: 0;
  806. position: absolute;
  807. right: 0;
  808. top: 0;
  809. z-index: 1103;
  810. }
  811. .tox .tox-comment__scroll {
  812. display: flex;
  813. flex-direction: column;
  814. flex-shrink: 1;
  815. overflow: auto;
  816. }
  817. .tox .tox-conversations {
  818. margin: 8px;
  819. }
  820. .tox:not([dir=rtl]) .tox-comment__edit {
  821. margin-left: 8px;
  822. }
  823. .tox:not([dir=rtl]) .tox-comment__buttonspacing > *:last-child,
  824. .tox:not([dir=rtl]) .tox-comment__edit > *:last-child,
  825. .tox:not([dir=rtl]) .tox-comment__reply > *:last-child {
  826. margin-left: 8px;
  827. }
  828. .tox[dir=rtl] .tox-comment__edit {
  829. margin-right: 8px;
  830. }
  831. .tox[dir=rtl] .tox-comment__buttonspacing > *:last-child,
  832. .tox[dir=rtl] .tox-comment__edit > *:last-child,
  833. .tox[dir=rtl] .tox-comment__reply > *:last-child {
  834. margin-right: 8px;
  835. }
  836. .tox .tox-user {
  837. align-items: center;
  838. display: flex;
  839. }
  840. .tox .tox-user__avatar svg {
  841. fill: rgba(34, 47, 62, 0.7);
  842. }
  843. .tox .tox-user__name {
  844. color: rgba(34, 47, 62, 0.7);
  845. font-size: 12px;
  846. font-style: normal;
  847. font-weight: bold;
  848. text-transform: uppercase;
  849. }
  850. .tox:not([dir=rtl]) .tox-user__avatar svg {
  851. margin-right: 8px;
  852. }
  853. .tox:not([dir=rtl]) .tox-user__avatar + .tox-user__name {
  854. margin-left: 8px;
  855. }
  856. .tox[dir=rtl] .tox-user__avatar svg {
  857. margin-left: 8px;
  858. }
  859. .tox[dir=rtl] .tox-user__avatar + .tox-user__name {
  860. margin-right: 8px;
  861. }
  862. .tox .tox-dialog-wrap {
  863. align-items: center;
  864. bottom: 0;
  865. display: flex;
  866. justify-content: center;
  867. left: 0;
  868. position: fixed;
  869. right: 0;
  870. top: 0;
  871. z-index: 1100;
  872. }
  873. .tox .tox-dialog-wrap__backdrop {
  874. background-color: rgba(255, 255, 255, 0.75);
  875. bottom: 0;
  876. left: 0;
  877. position: absolute;
  878. right: 0;
  879. top: 0;
  880. z-index: 1101;
  881. }
  882. .tox .tox-dialog {
  883. background-color: #fff;
  884. border-color: #cccccc;
  885. border-radius: 3px;
  886. border-style: solid;
  887. border-width: 1px;
  888. box-shadow: 0 16px 16px -10px rgba(34, 47, 62, 0.15), 0 0 40px 1px rgba(34, 47, 62, 0.15);
  889. display: flex;
  890. flex-direction: column;
  891. max-height: 100%;
  892. max-width: 480px;
  893. overflow: hidden;
  894. position: relative;
  895. width: 95vw;
  896. z-index: 1102;
  897. }
  898. .tox .tox-dialog__header {
  899. align-items: center;
  900. background-color: #fff;
  901. border-bottom: none;
  902. color: #222f3e;
  903. display: flex;
  904. font-size: 16px;
  905. justify-content: space-between;
  906. margin-bottom: 16px;
  907. padding: 8px 16px 0 16px;
  908. position: relative;
  909. }
  910. .tox .tox-dialog__header .tox-button {
  911. z-index: 1;
  912. }
  913. .tox .tox-dialog__draghandle {
  914. cursor: grab;
  915. height: 100%;
  916. left: 0;
  917. position: absolute;
  918. top: 0;
  919. width: 100%;
  920. }
  921. .tox .tox-dialog__draghandle:active {
  922. cursor: grabbing;
  923. }
  924. .tox .tox-dialog__dismiss {
  925. margin-left: auto;
  926. }
  927. .tox .tox-dialog__title {
  928. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  929. font-size: 20px;
  930. font-style: normal;
  931. font-weight: normal;
  932. line-height: 1.3;
  933. margin: 0;
  934. text-transform: normal;
  935. }
  936. .tox .tox-dialog__body {
  937. color: #222f3e;
  938. display: flex;
  939. flex: 1;
  940. -ms-flex-preferred-size: auto;
  941. font-size: 16px;
  942. font-style: normal;
  943. font-weight: normal;
  944. line-height: 1.3;
  945. min-width: 0;
  946. padding: 0 16px;
  947. text-align: left;
  948. text-transform: normal;
  949. }
  950. .tox .tox-dialog__body-nav {
  951. align-items: flex-start;
  952. display: flex;
  953. flex-direction: column;
  954. }
  955. .tox .tox-dialog__body-nav-item {
  956. border-bottom: 2px solid transparent;
  957. color: rgba(34, 47, 62, 0.7);
  958. display: inline-block;
  959. font-size: 14px;
  960. line-height: 1.3;
  961. margin-bottom: 8px;
  962. text-decoration: none;
  963. }
  964. .tox .tox-dialog__body-nav-item--active {
  965. border-bottom: 2px solid #207ab7;
  966. color: #207ab7;
  967. }
  968. .tox .tox-dialog__body-content {
  969. display: flex;
  970. flex: 1;
  971. flex-direction: column;
  972. -ms-flex-preferred-size: auto;
  973. max-height: 650px;
  974. overflow: auto;
  975. }
  976. .tox .tox-dialog__body-content > * {
  977. margin-bottom: 0;
  978. margin-top: 16px;
  979. }
  980. .tox .tox-dialog__body-content > *:first-child {
  981. margin-top: 0;
  982. }
  983. .tox .tox-dialog__body-content > *:last-child {
  984. margin-bottom: 0;
  985. }
  986. .tox .tox-dialog__body-content > *:only-child {
  987. margin-bottom: 0;
  988. margin-top: 0;
  989. }
  990. .tox .tox-dialog--width-lg {
  991. height: 650px;
  992. max-width: 1200px;
  993. }
  994. .tox .tox-dialog--width-md {
  995. max-width: 800px;
  996. }
  997. .tox .tox-dialog--width-md .tox-dialog__body-content {
  998. overflow: auto;
  999. }
  1000. .tox .tox-dialog__body-content--centered {
  1001. text-align: center;
  1002. }
  1003. .tox .tox-dialog__body-content--spacious {
  1004. margin-bottom: 16px;
  1005. }
  1006. .tox .tox-dialog__footer {
  1007. align-items: center;
  1008. background-color: #fff;
  1009. border-top: 1px solid #cccccc;
  1010. display: flex;
  1011. justify-content: space-between;
  1012. margin-top: 16px;
  1013. padding: 8px 16px;
  1014. }
  1015. .tox .tox-dialog__busy-spinner {
  1016. align-items: center;
  1017. background-color: rgba(255, 255, 255, 0.75);
  1018. bottom: 0;
  1019. display: flex;
  1020. justify-content: center;
  1021. left: 0;
  1022. position: absolute;
  1023. right: 0;
  1024. top: 0;
  1025. z-index: 1103;
  1026. }
  1027. .tox .tox-dialog__table {
  1028. border-collapse: collapse;
  1029. width: 100%;
  1030. }
  1031. .tox .tox-dialog__table thead th {
  1032. font-weight: bold;
  1033. padding-bottom: 8px;
  1034. }
  1035. .tox .tox-dialog__table tbody tr {
  1036. border-bottom: 1px solid #cccccc;
  1037. }
  1038. .tox .tox-dialog__table tbody tr:last-child {
  1039. border-bottom: none;
  1040. }
  1041. .tox .tox-dialog__table td {
  1042. padding-bottom: 8px;
  1043. padding-top: 8px;
  1044. }
  1045. .tox .tox-dialog__popups {
  1046. position: absolute;
  1047. width: 100%;
  1048. z-index: 1100;
  1049. }
  1050. .tox .tox-dialog__body-iframe {
  1051. display: flex;
  1052. flex: 1;
  1053. flex-direction: column;
  1054. -ms-flex-preferred-size: auto;
  1055. }
  1056. .tox .tox-dialog__body-iframe .tox-navobj {
  1057. display: flex;
  1058. flex: 1;
  1059. -ms-flex-preferred-size: auto;
  1060. }
  1061. .tox .tox-dialog__body-iframe .tox-navobj :nth-child(2) {
  1062. flex: 1;
  1063. -ms-flex-preferred-size: auto;
  1064. height: 100%;
  1065. }
  1066. body.tox-dialog__disable-scroll {
  1067. overflow: hidden;
  1068. }
  1069. .tox.tox-platform-ie {
  1070. /* IE11 CSS styles go here */
  1071. }
  1072. .tox.tox-platform-ie .tox-dialog-wrap {
  1073. position: -ms-device-fixed;
  1074. }
  1075. .tox:not([dir=rtl]) .tox-dialog__body-nav {
  1076. margin-right: 32px;
  1077. }
  1078. .tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start > *,
  1079. .tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end > * {
  1080. margin-left: 8px;
  1081. }
  1082. .tox[dir=rtl] .tox-dialog__body {
  1083. text-align: right;
  1084. }
  1085. .tox[dir=rtl] .tox-dialog__body-nav {
  1086. margin-left: 32px;
  1087. }
  1088. .tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start > *,
  1089. .tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end > * {
  1090. margin-right: 8px;
  1091. }
  1092. .tox .tox-dropzone-container {
  1093. display: flex;
  1094. flex: 1;
  1095. -ms-flex-preferred-size: auto;
  1096. }
  1097. .tox .tox-dropzone {
  1098. align-items: center;
  1099. background: #fff;
  1100. border: 2px dashed #cccccc;
  1101. box-sizing: border-box;
  1102. display: flex;
  1103. flex-direction: column;
  1104. flex-grow: 1;
  1105. justify-content: center;
  1106. min-height: 100px;
  1107. padding: 10px;
  1108. }
  1109. .tox .tox-dropzone p {
  1110. color: rgba(34, 47, 62, 0.7);
  1111. margin: 0 0 16px 0;
  1112. }
  1113. .tox .tox-edit-area {
  1114. border-top: 1px solid #cccccc;
  1115. display: flex;
  1116. flex: 1;
  1117. -ms-flex-preferred-size: auto;
  1118. overflow: hidden;
  1119. position: relative;
  1120. }
  1121. .tox .tox-edit-area__iframe {
  1122. background-color: #fff;
  1123. border: 0;
  1124. box-sizing: border-box;
  1125. flex: 1;
  1126. -ms-flex-preferred-size: auto;
  1127. height: 100%;
  1128. position: absolute;
  1129. width: 100%;
  1130. }
  1131. .tox.tox-inline-edit-area {
  1132. border: 1px dotted #cccccc;
  1133. }
  1134. .tox .tox-control-wrap {
  1135. flex: 1;
  1136. position: relative;
  1137. }
  1138. .tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,
  1139. .tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,
  1140. .tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid {
  1141. display: none;
  1142. }
  1143. .tox .tox-control-wrap svg {
  1144. display: block;
  1145. }
  1146. .tox .tox-control-wrap__status-icon-wrap {
  1147. position: absolute;
  1148. top: 50%;
  1149. transform: translateY(-50%);
  1150. }
  1151. .tox .tox-control-wrap__status-icon-invalid svg {
  1152. fill: #c00;
  1153. }
  1154. .tox .tox-control-wrap__status-icon-unknown svg {
  1155. fill: orange;
  1156. }
  1157. .tox .tox-control-wrap__status-icon-valid svg {
  1158. fill: green;
  1159. }
  1160. .tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,
  1161. .tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,
  1162. .tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield {
  1163. padding-right: 32px;
  1164. }
  1165. .tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap {
  1166. right: 4px;
  1167. }
  1168. .tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,
  1169. .tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,
  1170. .tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield {
  1171. padding-left: 32px;
  1172. }
  1173. .tox[dir=rtl] .tox-control-wrap__status-icon-wrap {
  1174. left: 4px;
  1175. }
  1176. .tox .tox-autocompleter {
  1177. max-width: 25em;
  1178. }
  1179. .tox .tox-autocompleter .tox-menu {
  1180. max-width: 25em;
  1181. }
  1182. .tox .tox-color-input {
  1183. display: flex;
  1184. }
  1185. .tox .tox-color-input .tox-textfield {
  1186. border-radius: 3px 0 0 3px;
  1187. display: flex;
  1188. }
  1189. .tox .tox-color-input span {
  1190. border-color: rgba(34, 47, 62, 0.2);
  1191. border-radius: 0 3px 3px 0;
  1192. border-style: solid;
  1193. border-width: 1px 1px 1px 0;
  1194. box-shadow: none;
  1195. box-sizing: border-box;
  1196. cursor: pointer;
  1197. display: flex;
  1198. width: 35px;
  1199. }
  1200. .tox .tox-color-input span:focus {
  1201. border-color: #207ab7;
  1202. }
  1203. .tox[dir="rtl"] .tox-color-input .tox-textfield {
  1204. border-radius: 0 3px 3px 0;
  1205. }
  1206. .tox[dir="rtl"] .tox-color-input span {
  1207. border-radius: 3px 0 0 3px;
  1208. border-width: 1px 0 1px 1px;
  1209. }
  1210. .tox .tox-label,
  1211. .tox .tox-toolbar-label {
  1212. color: rgba(34, 47, 62, 0.7);
  1213. display: block;
  1214. font-size: 14px;
  1215. font-style: normal;
  1216. font-weight: normal;
  1217. line-height: 1.3;
  1218. padding: 0 8px 0 0;
  1219. text-transform: normal;
  1220. white-space: nowrap;
  1221. }
  1222. .tox .tox-toolbar-label {
  1223. padding: 0 8px;
  1224. }
  1225. .tox[dir=rtl] .tox-label {
  1226. padding: 0 0 0 8px;
  1227. }
  1228. .tox .tox-form {
  1229. display: flex;
  1230. flex: 1;
  1231. flex-direction: column;
  1232. -ms-flex-preferred-size: auto;
  1233. }
  1234. .tox .tox-form__group {
  1235. box-sizing: border-box;
  1236. margin-bottom: 4px;
  1237. }
  1238. .tox .tox-form__group--error {
  1239. color: #c00;
  1240. }
  1241. .tox .tox-form__group--collection {
  1242. display: flex;
  1243. }
  1244. .tox .tox-form__grid {
  1245. display: flex;
  1246. flex-direction: row;
  1247. flex-wrap: wrap;
  1248. justify-content: space-between;
  1249. }
  1250. .tox .tox-form__grid--2col > .tox-form__group {
  1251. width: calc(50% - (8px / 2));
  1252. }
  1253. .tox .tox-form__grid--3col > .tox-form__group {
  1254. width: calc(100% / 3 - (8px / 2));
  1255. }
  1256. .tox .tox-form__grid--4col > .tox-form__group {
  1257. width: calc(25% - (8px / 2));
  1258. }
  1259. .tox .tox-form__controls-h-stack {
  1260. align-items: center;
  1261. display: flex;
  1262. }
  1263. .tox .tox-form__group--inline {
  1264. align-items: center;
  1265. display: flex;
  1266. }
  1267. .tox .tox-form__group--stretched {
  1268. display: flex;
  1269. flex: 1;
  1270. flex-direction: column;
  1271. -ms-flex-preferred-size: auto;
  1272. }
  1273. .tox .tox-form__group--stretched .tox-textarea {
  1274. flex: 1;
  1275. -ms-flex-preferred-size: auto;
  1276. }
  1277. .tox .tox-form__group--stretched .tox-navobj {
  1278. display: flex;
  1279. flex: 1;
  1280. -ms-flex-preferred-size: auto;
  1281. }
  1282. .tox .tox-form__group--stretched .tox-navobj :nth-child(2) {
  1283. flex: 1;
  1284. -ms-flex-preferred-size: auto;
  1285. height: 100%;
  1286. }
  1287. .tox:not([dir=rtl]) .tox-form__controls-h-stack > *:not(:first-child) {
  1288. margin-left: 4px;
  1289. }
  1290. .tox[dir=rtl] .tox-form__controls-h-stack > *:not(:first-child) {
  1291. margin-right: 4px;
  1292. }
  1293. .tox .tox-lock.tox-locked .tox-lock-icon__unlock,
  1294. .tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock {
  1295. display: none;
  1296. }
  1297. .tox .tox-textfield,
  1298. .tox .tox-toolbar-textfield,
  1299. .tox:not([dir=rtl]) .tox-selectfield select,
  1300. .tox[dir=rtl] .tox-selectfield select,
  1301. .tox .tox-textarea {
  1302. -webkit-appearance: none;
  1303. -moz-appearance: none;
  1304. appearance: none;
  1305. background-color: #fff;
  1306. border-color: #cccccc;
  1307. border-radius: 3px;
  1308. border-style: solid;
  1309. border-width: 1px;
  1310. box-shadow: none;
  1311. box-sizing: border-box;
  1312. color: #222f3e;
  1313. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  1314. font-size: 16px;
  1315. line-height: 24px;
  1316. margin: 0;
  1317. outline: none;
  1318. padding: 5px 4.75px;
  1319. resize: none;
  1320. width: 100%;
  1321. }
  1322. .tox .tox-textfield:focus,
  1323. .tox .tox-selectfield select:focus,
  1324. .tox .tox-textarea:focus {
  1325. border-color: #207ab7;
  1326. box-shadow: none;
  1327. outline: none;
  1328. }
  1329. .tox .tox-toolbar-textfield {
  1330. border-width: 0;
  1331. margin-bottom: 3px;
  1332. margin-top: 2px;
  1333. max-width: 250px;
  1334. }
  1335. .tox .tox-naked-btn {
  1336. background-color: transparent;
  1337. border: 0;
  1338. border-color: transparent;
  1339. box-shadow: unset;
  1340. color: #207ab7;
  1341. cursor: pointer;
  1342. display: block;
  1343. margin: 0;
  1344. padding: 0;
  1345. }
  1346. .tox .tox-naked-btn svg {
  1347. display: block;
  1348. fill: #222f3e;
  1349. }
  1350. .tox:not([dir=rtl]) .tox-toolbar-textfield + * {
  1351. margin-left: 4px;
  1352. }
  1353. .tox[dir=rtl] .tox-toolbar-textfield + * {
  1354. margin-right: 4px;
  1355. }
  1356. .tox .tox-selectfield {
  1357. cursor: pointer;
  1358. position: relative;
  1359. }
  1360. .tox .tox-selectfield select::-ms-expand {
  1361. display: none;
  1362. }
  1363. .tox .tox-selectfield svg {
  1364. pointer-events: none;
  1365. position: absolute;
  1366. top: 50%;
  1367. transform: translateY(-50%);
  1368. }
  1369. .tox:not([dir=rtl]) .tox-selectfield select {
  1370. padding-right: 24px;
  1371. }
  1372. .tox:not([dir=rtl]) .tox-selectfield svg {
  1373. right: 8px;
  1374. }
  1375. .tox[dir=rtl] .tox-selectfield select {
  1376. padding-left: 24px;
  1377. }
  1378. .tox[dir=rtl] .tox-selectfield svg {
  1379. left: 8px;
  1380. }
  1381. .tox .tox-textarea {
  1382. -webkit-appearance: textarea;
  1383. -moz-appearance: textarea;
  1384. appearance: textarea;
  1385. white-space: pre-wrap;
  1386. }
  1387. .tox-fullscreen {
  1388. border: 0;
  1389. height: 100%;
  1390. left: 0;
  1391. margin: 0;
  1392. overflow: hidden;
  1393. padding: 0;
  1394. position: fixed;
  1395. top: 0;
  1396. width: 100%;
  1397. }
  1398. .tox-fullscreen .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle {
  1399. display: none;
  1400. }
  1401. .tox-fullscreen .tox.tox-tinymce.tox-fullscreen {
  1402. z-index: 1200;
  1403. }
  1404. .tox-fullscreen .tox.tox-tinymce-aux {
  1405. z-index: 1201;
  1406. }
  1407. .tox .tox-image-tools {
  1408. width: 100%;
  1409. }
  1410. .tox .tox-image-tools__toolbar {
  1411. align-items: center;
  1412. display: flex;
  1413. justify-content: center;
  1414. }
  1415. .tox .tox-image-tools__image {
  1416. background-color: #666;
  1417. height: 380px;
  1418. overflow: auto;
  1419. position: relative;
  1420. width: 100%;
  1421. }
  1422. .tox .tox-image-tools__image,
  1423. .tox .tox-image-tools__image + .tox-image-tools__toolbar {
  1424. margin-top: 8px;
  1425. }
  1426. .tox .tox-image-tools__image-bg {
  1427. background: url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==);
  1428. }
  1429. .tox .tox-image-tools__toolbar > .tox-spacer {
  1430. flex: 1;
  1431. -ms-flex-preferred-size: auto;
  1432. }
  1433. .tox .tox-croprect-block {
  1434. background: black;
  1435. filter: alpha(opacity=50);
  1436. opacity: 0.5;
  1437. position: absolute;
  1438. zoom: 1;
  1439. }
  1440. .tox .tox-croprect-handle {
  1441. border: 2px solid white;
  1442. height: 20px;
  1443. left: 0;
  1444. position: absolute;
  1445. top: 0;
  1446. width: 20px;
  1447. }
  1448. .tox .tox-croprect-handle-move {
  1449. border: 0;
  1450. cursor: move;
  1451. position: absolute;
  1452. }
  1453. .tox .tox-croprect-handle-nw {
  1454. border-width: 2px 0 0 2px;
  1455. cursor: nw-resize;
  1456. left: 100px;
  1457. margin: -2px 0 0 -2px;
  1458. top: 100px;
  1459. }
  1460. .tox .tox-croprect-handle-ne {
  1461. border-width: 2px 2px 0 0;
  1462. cursor: ne-resize;
  1463. left: 200px;
  1464. margin: -2px 0 0 -20px;
  1465. top: 100px;
  1466. }
  1467. .tox .tox-croprect-handle-sw {
  1468. border-width: 0 0 2px 2px;
  1469. cursor: sw-resize;
  1470. left: 100px;
  1471. margin: -20px 2px 0 -2px;
  1472. top: 200px;
  1473. }
  1474. .tox .tox-croprect-handle-se {
  1475. border-width: 0 2px 2px 0;
  1476. cursor: se-resize;
  1477. left: 200px;
  1478. margin: -20px 0 0 -20px;
  1479. top: 200px;
  1480. }
  1481. .tox:not([dir=rtl]) .tox-image-tools__toolbar > .tox-slider:not(:first-of-type) {
  1482. margin-left: 8px;
  1483. }
  1484. .tox:not([dir=rtl]) .tox-image-tools__toolbar > .tox-button + .tox-slider {
  1485. margin-left: 32px;
  1486. }
  1487. .tox:not([dir=rtl]) .tox-image-tools__toolbar > .tox-slider + .tox-button {
  1488. margin-left: 32px;
  1489. }
  1490. .tox[dir=rtl] .tox-image-tools__toolbar > .tox-slider:not(:first-of-type) {
  1491. margin-right: 8px;
  1492. }
  1493. .tox[dir=rtl] .tox-image-tools__toolbar > .tox-button + .tox-slider {
  1494. margin-right: 32px;
  1495. }
  1496. .tox[dir=rtl] .tox-image-tools__toolbar > .tox-slider + .tox-button {
  1497. margin-right: 32px;
  1498. }
  1499. .tox .tox-insert-table-picker {
  1500. display: flex;
  1501. flex-wrap: wrap;
  1502. width: 169px;
  1503. }
  1504. .tox .tox-insert-table-picker > div {
  1505. border-color: #cccccc;
  1506. border-style: solid;
  1507. border-width: 0 1px 1px 0;
  1508. box-sizing: content-box;
  1509. height: 16px;
  1510. width: 16px;
  1511. }
  1512. .tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
  1513. margin: -4px 0;
  1514. }
  1515. .tox .tox-insert-table-picker .tox-insert-table-picker__selected {
  1516. background-color: rgba(32, 122, 183, 0.5);
  1517. border-color: rgba(32, 122, 183, 0.5);
  1518. }
  1519. .tox .tox-insert-table-picker__label {
  1520. color: rgba(34, 47, 62, 0.7);
  1521. display: block;
  1522. font-size: 14px;
  1523. padding: 4px;
  1524. text-align: center;
  1525. width: 100%;
  1526. }
  1527. .tox:not([dir=rtl]) {
  1528. /* stylelint-disable-next-line no-descending-specificity */
  1529. }
  1530. .tox:not([dir=rtl]) .tox-insert-table-picker > div:nth-child(10n) {
  1531. border-right: 0;
  1532. }
  1533. .tox[dir=rtl] {
  1534. /* stylelint-disable-next-line no-descending-specificity */
  1535. }
  1536. .tox[dir=rtl] .tox-insert-table-picker > div:nth-child(10n+1) {
  1537. border-right: 0;
  1538. }
  1539. .tox {
  1540. /* stylelint-disable */
  1541. /* stylelint-enable */
  1542. }
  1543. .tox .tox-menu {
  1544. background-color: #fff;
  1545. border: 1px solid #cccccc;
  1546. border-radius: 3px;
  1547. box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  1548. display: inline-block;
  1549. overflow: hidden;
  1550. vertical-align: top;
  1551. z-index: 1;
  1552. }
  1553. .tox .tox-menu.tox-collection.tox-collection--list {
  1554. padding: 0;
  1555. }
  1556. .tox .tox-menu.tox-collection.tox-collection--toolbar {
  1557. padding: 4px;
  1558. }
  1559. .tox .tox-menu.tox-collection.tox-collection--grid {
  1560. padding: 4px;
  1561. }
  1562. .tox .tox-menu__label h1,
  1563. .tox .tox-menu__label h2,
  1564. .tox .tox-menu__label h3,
  1565. .tox .tox-menu__label h4,
  1566. .tox .tox-menu__label h5,
  1567. .tox .tox-menu__label h6,
  1568. .tox .tox-menu__label p,
  1569. .tox .tox-menu__label blockquote,
  1570. .tox .tox-menu__label code {
  1571. margin: 0;
  1572. }
  1573. .tox .tox-menubar {
  1574. background: url("data:image/svg+xml;charset=utf8,%3Csvg height='43px' viewBox='0 0 40 43px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='42px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff;
  1575. background-color: #fff;
  1576. display: flex;
  1577. flex: 0 0 auto;
  1578. flex-shrink: 0;
  1579. flex-wrap: wrap;
  1580. margin-bottom: -1px;
  1581. padding: 0 4px;
  1582. }
  1583. .tox .tox-mbtn {
  1584. align-items: center;
  1585. background: none;
  1586. border: 0;
  1587. border-radius: 3px;
  1588. box-shadow: none;
  1589. color: #222f3e;
  1590. display: flex;
  1591. flex: 0 0 auto;
  1592. font-size: 14px;
  1593. font-style: normal;
  1594. font-weight: normal;
  1595. height: 34px;
  1596. justify-content: center;
  1597. margin: 2px 0 3px 0;
  1598. outline: none;
  1599. overflow: hidden;
  1600. padding: 0 4px;
  1601. text-transform: normal;
  1602. width: auto;
  1603. }
  1604. .tox .tox-mbtn[disabled] {
  1605. background-color: none;
  1606. border-color: none;
  1607. box-shadow: none;
  1608. color: rgba(34, 47, 62, 0.5);
  1609. cursor: not-allowed;
  1610. }
  1611. .tox .tox-mbtn:hover:not(:disabled) {
  1612. background: #dee0e2;
  1613. box-shadow: none;
  1614. color: #222f3e;
  1615. }
  1616. .tox .tox-mbtn:focus:not(:disabled) {
  1617. background: #dee0e2;
  1618. box-shadow: none;
  1619. color: #222f3e;
  1620. }
  1621. .tox .tox-mbtn--active {
  1622. background: #c8cbcf;
  1623. box-shadow: none;
  1624. color: #222f3e;
  1625. }
  1626. .tox .tox-mbtn__select-label {
  1627. cursor: default;
  1628. font-weight: normal;
  1629. margin: 0 4px;
  1630. }
  1631. .tox .tox-mbtn[disabled] .tox-mbtn__select-label {
  1632. cursor: not-allowed;
  1633. }
  1634. .tox .tox-mbtn__select-chevron {
  1635. align-items: center;
  1636. display: flex;
  1637. justify-content: center;
  1638. width: 16px;
  1639. display: none;
  1640. }
  1641. .tox .tox-notification {
  1642. background-color: #fffaea;
  1643. border-color: #ffe89d;
  1644. border-style: solid;
  1645. border-width: 1px;
  1646. box-sizing: border-box;
  1647. display: grid;
  1648. grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  1649. margin-top: 5px;
  1650. opacity: 0;
  1651. padding: 5px;
  1652. transition: transform 100ms ease-in, opacity 150ms ease-in;
  1653. }
  1654. .tox .tox-notification--in {
  1655. opacity: 1;
  1656. }
  1657. .tox .tox-notification--success {
  1658. background-color: #dff0d8;
  1659. border-color: #d6e9c6;
  1660. }
  1661. .tox .tox-notification--error {
  1662. background-color: #f2dede;
  1663. border-color: #ebccd1;
  1664. }
  1665. .tox .tox-notification--warn {
  1666. background-color: #fcf8e3;
  1667. border-color: #faebcc;
  1668. }
  1669. .tox .tox-notification--info {
  1670. background-color: #d9edf7;
  1671. border-color: #779ecb;
  1672. }
  1673. .tox .tox-notification__body {
  1674. align-self: center;
  1675. color: #222f3e;
  1676. font-size: 14px;
  1677. grid-column-end: 3;
  1678. -ms-grid-column-span: 1;
  1679. grid-column-start: 2;
  1680. grid-row-end: 2;
  1681. grid-row-start: 1;
  1682. text-align: center;
  1683. white-space: normal;
  1684. word-break: break-all;
  1685. word-break: break-word;
  1686. }
  1687. .tox .tox-notification__body > * {
  1688. margin: 0;
  1689. }
  1690. .tox .tox-notification__body > * + * {
  1691. margin-top: 1rem;
  1692. }
  1693. .tox .tox-notification__icon {
  1694. align-self: center;
  1695. -ms-grid-column-align: end;
  1696. grid-column-end: 2;
  1697. -ms-grid-column-span: 1;
  1698. grid-column-start: 1;
  1699. grid-row-end: 2;
  1700. grid-row-start: 1;
  1701. justify-self: end;
  1702. }
  1703. .tox .tox-notification__icon svg {
  1704. display: block;
  1705. }
  1706. .tox .tox-notification__dismiss {
  1707. align-self: start;
  1708. -ms-grid-column-align: end;
  1709. grid-column-end: 4;
  1710. -ms-grid-column-span: 1;
  1711. grid-column-start: 3;
  1712. grid-row-end: 2;
  1713. grid-row-start: 1;
  1714. justify-self: end;
  1715. }
  1716. .tox .tox-notification .tox-progress-bar {
  1717. -ms-grid-column-align: center;
  1718. grid-column-end: 4;
  1719. -ms-grid-column-span: 3;
  1720. grid-column-start: 1;
  1721. grid-row-end: 3;
  1722. -ms-grid-row-span: 1;
  1723. grid-row-start: 2;
  1724. justify-self: center;
  1725. }
  1726. .tox .tox-pop {
  1727. display: inline-block;
  1728. position: relative;
  1729. }
  1730. .tox .tox-pop--resizing {
  1731. transition: width 0.1s ease;
  1732. }
  1733. .tox .tox-pop--resizing .tox-toolbar {
  1734. flex-wrap: nowrap;
  1735. }
  1736. .tox .tox-pop__dialog {
  1737. background-color: #fff;
  1738. border: 1px solid #cccccc;
  1739. border-radius: 3px;
  1740. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  1741. min-width: 0;
  1742. overflow: hidden;
  1743. }
  1744. .tox .tox-pop__dialog > *:not(.tox-toolbar) {
  1745. margin: 4px 4px 4px 8px;
  1746. }
  1747. .tox .tox-pop__dialog .tox-toolbar {
  1748. background-color: transparent;
  1749. }
  1750. .tox .tox-pop::before,
  1751. .tox .tox-pop::after {
  1752. border-style: solid;
  1753. content: '';
  1754. display: block;
  1755. height: 0;
  1756. position: absolute;
  1757. width: 0;
  1758. }
  1759. .tox .tox-pop.tox-pop--bottom::before,
  1760. .tox .tox-pop.tox-pop--bottom::after {
  1761. left: 50%;
  1762. top: 100%;
  1763. }
  1764. .tox .tox-pop.tox-pop--bottom::after {
  1765. border-color: #fff transparent transparent transparent;
  1766. border-width: 8px;
  1767. margin-left: -8px;
  1768. margin-top: -1px;
  1769. }
  1770. .tox .tox-pop.tox-pop--bottom::before {
  1771. border-color: #cccccc transparent transparent transparent;
  1772. border-width: 9px;
  1773. margin-left: -9px;
  1774. }
  1775. .tox .tox-pop.tox-pop--top::before,
  1776. .tox .tox-pop.tox-pop--top::after {
  1777. left: 50%;
  1778. top: 0;
  1779. transform: translateY(-100%);
  1780. }
  1781. .tox .tox-pop.tox-pop--top::after {
  1782. border-color: transparent transparent #fff transparent;
  1783. border-width: 8px;
  1784. margin-left: -8px;
  1785. margin-top: 1px;
  1786. }
  1787. .tox .tox-pop.tox-pop--top::before {
  1788. border-color: transparent transparent #cccccc transparent;
  1789. border-width: 9px;
  1790. margin-left: -9px;
  1791. }
  1792. .tox .tox-pop.tox-pop--left::before,
  1793. .tox .tox-pop.tox-pop--left::after {
  1794. left: 0;
  1795. top: calc(50% - 1px);
  1796. transform: translateY(-50%);
  1797. }
  1798. .tox .tox-pop.tox-pop--left::after {
  1799. border-color: transparent #fff transparent transparent;
  1800. border-width: 8px;
  1801. margin-left: -15px;
  1802. }
  1803. .tox .tox-pop.tox-pop--left::before {
  1804. border-color: transparent #cccccc transparent transparent;
  1805. border-width: 10px;
  1806. margin-left: -19px;
  1807. }
  1808. .tox .tox-pop.tox-pop--right::before,
  1809. .tox .tox-pop.tox-pop--right::after {
  1810. left: 100%;
  1811. top: calc(50% + 1px);
  1812. transform: translateY(-50%);
  1813. }
  1814. .tox .tox-pop.tox-pop--right::after {
  1815. border-color: transparent transparent transparent #fff;
  1816. border-width: 8px;
  1817. margin-left: -1px;
  1818. }
  1819. .tox .tox-pop.tox-pop--right::before {
  1820. border-color: transparent transparent transparent #cccccc;
  1821. border-width: 10px;
  1822. margin-left: -1px;
  1823. }
  1824. .tox .tox-pop.tox-pop--align-left::before,
  1825. .tox .tox-pop.tox-pop--align-left::after {
  1826. left: 20px;
  1827. }
  1828. .tox .tox-pop.tox-pop--align-right::before,
  1829. .tox .tox-pop.tox-pop--align-right::after {
  1830. left: calc(100% - 20px);
  1831. }
  1832. .tox .tox-sidebar-wrap {
  1833. display: flex;
  1834. flex-direction: row;
  1835. flex-grow: 1;
  1836. min-height: 0;
  1837. }
  1838. .tox .tox-sidebar {
  1839. display: flex;
  1840. flex-direction: row;
  1841. justify-content: flex-end;
  1842. }
  1843. .tox .tox-sidebar__slider {
  1844. display: flex;
  1845. overflow: hidden;
  1846. }
  1847. .tox .tox-sidebar__pane-container {
  1848. display: flex;
  1849. }
  1850. .tox .tox-sidebar__pane {
  1851. display: flex;
  1852. }
  1853. .tox .tox-sidebar--sliding-closed {
  1854. opacity: 0;
  1855. }
  1856. .tox .tox-sidebar--sliding-open {
  1857. opacity: 1;
  1858. }
  1859. .tox .tox-sidebar--sliding-growing,
  1860. .tox .tox-sidebar--sliding-shrinking {
  1861. transition: width 0.5s ease, opacity 0.5s ease;
  1862. }
  1863. .tox .tox-slider {
  1864. align-items: center;
  1865. display: flex;
  1866. flex: 1;
  1867. -ms-flex-preferred-size: auto;
  1868. height: 24px;
  1869. justify-content: center;
  1870. position: relative;
  1871. }
  1872. .tox .tox-slider__rail {
  1873. background-color: transparent;
  1874. border: 1px solid #cccccc;
  1875. border-radius: 3px;
  1876. height: 10px;
  1877. min-width: 120px;
  1878. width: 100%;
  1879. }
  1880. .tox .tox-slider__handle {
  1881. background-color: #207ab7;
  1882. border: 2px solid #185d8c;
  1883. border-radius: 3px;
  1884. box-shadow: none;
  1885. height: 24px;
  1886. left: 50%;
  1887. position: absolute;
  1888. top: 50%;
  1889. transform: translateX(-50%) translateY(-50%);
  1890. width: 14px;
  1891. }
  1892. .tox .tox-source-code {
  1893. overflow: auto;
  1894. }
  1895. .tox .tox-spinner {
  1896. display: flex;
  1897. }
  1898. .tox .tox-spinner > div {
  1899. animation: tam-bouncing-dots 1.5s ease-in-out 0s infinite both;
  1900. background-color: rgba(34, 47, 62, 0.7);
  1901. border-radius: 100%;
  1902. height: 8px;
  1903. width: 8px;
  1904. }
  1905. .tox .tox-spinner > div:nth-child(1) {
  1906. animation-delay: -0.32s;
  1907. }
  1908. .tox .tox-spinner > div:nth-child(2) {
  1909. animation-delay: -0.16s;
  1910. }
  1911. @keyframes tam-bouncing-dots {
  1912. 0%,
  1913. 80%,
  1914. 100% {
  1915. transform: scale(0);
  1916. }
  1917. 40% {
  1918. transform: scale(1);
  1919. }
  1920. }
  1921. .tox:not([dir=rtl]) .tox-spinner > div:not(:first-child) {
  1922. margin-left: 4px;
  1923. }
  1924. .tox[dir=rtl] .tox-spinner > div:not(:first-child) {
  1925. margin-right: 4px;
  1926. }
  1927. .tox .tox-statusbar {
  1928. align-items: center;
  1929. background-color: #fff;
  1930. border-top: 1px solid #cccccc;
  1931. color: rgba(34, 47, 62, 0.7);
  1932. display: flex;
  1933. flex: 0 0 auto;
  1934. font-size: 12px;
  1935. height: 18px;
  1936. overflow: hidden;
  1937. padding: 0 8px;
  1938. position: relative;
  1939. text-transform: uppercase;
  1940. }
  1941. .tox .tox-statusbar a {
  1942. color: rgba(34, 47, 62, 0.7);
  1943. text-decoration: none;
  1944. }
  1945. .tox .tox-statusbar a:hover {
  1946. text-decoration: underline;
  1947. }
  1948. .tox .tox-statusbar__text-container {
  1949. display: flex;
  1950. flex: 1 1 auto;
  1951. justify-content: flex-end;
  1952. overflow: hidden;
  1953. }
  1954. .tox .tox-statusbar__path {
  1955. display: flex;
  1956. flex: 1 1 auto;
  1957. margin-right: auto;
  1958. overflow: hidden;
  1959. text-overflow: ellipsis;
  1960. white-space: nowrap;
  1961. }
  1962. .tox .tox-statusbar__path > * {
  1963. display: inline;
  1964. white-space: nowrap;
  1965. }
  1966. .tox .tox-statusbar__wordcount {
  1967. flex: 0 0 auto;
  1968. margin-left: 1ch;
  1969. }
  1970. .tox .tox-statusbar__resize-handle {
  1971. align-items: flex-end;
  1972. align-self: stretch;
  1973. cursor: nwse-resize;
  1974. display: flex;
  1975. flex: 0 0 auto;
  1976. justify-content: flex-end;
  1977. margin-left: auto;
  1978. margin-right: -8px;
  1979. padding-left: 1ch;
  1980. }
  1981. .tox .tox-statusbar__resize-handle svg {
  1982. display: block;
  1983. fill: rgba(34, 47, 62, 0.7);
  1984. }
  1985. .tox:not([dir=rtl]) .tox-statusbar__path > * {
  1986. margin-right: 4px;
  1987. }
  1988. .tox:not([dir=rtl]) .tox-statusbar__branding {
  1989. margin-left: 1ch;
  1990. }
  1991. .tox[dir=rtl] .tox-statusbar {
  1992. flex-direction: row-reverse;
  1993. }
  1994. .tox[dir=rtl] .tox-statusbar__path > * {
  1995. margin-left: 4px;
  1996. }
  1997. .tox .tox-throbber {
  1998. z-index: 1400;
  1999. }
  2000. .tox .tox-throbber__busy-spinner {
  2001. align-items: center;
  2002. background-color: rgba(255, 255, 255, 0.6);
  2003. bottom: 0;
  2004. display: flex;
  2005. justify-content: center;
  2006. left: 0;
  2007. position: absolute;
  2008. right: 0;
  2009. top: 0;
  2010. }
  2011. .tox .tox-tbtn {
  2012. align-items: center;
  2013. background: none;
  2014. border: 0;
  2015. border-radius: 3px;
  2016. box-shadow: none;
  2017. color: #222f3e;
  2018. display: flex;
  2019. flex: 0 0 auto;
  2020. font-size: 14px;
  2021. font-style: normal;
  2022. font-weight: normal;
  2023. height: 34px;
  2024. justify-content: center;
  2025. margin: 2px 0 3px 0;
  2026. outline: none;
  2027. overflow: hidden;
  2028. padding: 0;
  2029. text-transform: normal;
  2030. width: 34px;
  2031. }
  2032. .tox .tox-tbtn svg {
  2033. display: block;
  2034. fill: #222f3e;
  2035. }
  2036. .tox .tox-tbtn.tox-tbtn-more {
  2037. padding-left: 5px;
  2038. padding-right: 5px;
  2039. width: inherit;
  2040. }
  2041. .tox .tox-tbtn--enabled {
  2042. background: #c8cbcf;
  2043. box-shadow: none;
  2044. color: #222f3e;
  2045. }
  2046. .tox .tox-tbtn--enabled > * {
  2047. transform: none;
  2048. }
  2049. .tox .tox-tbtn--enabled svg {
  2050. fill: #222f3e;
  2051. }
  2052. .tox .tox-tbtn:hover {
  2053. background: #dee0e2;
  2054. box-shadow: none;
  2055. color: #222f3e;
  2056. }
  2057. .tox .tox-tbtn:hover svg {
  2058. fill: #222f3e;
  2059. }
  2060. .tox .tox-tbtn:focus {
  2061. background: #dee0e2;
  2062. box-shadow: none;
  2063. color: #222f3e;
  2064. }
  2065. .tox .tox-tbtn:focus svg {
  2066. fill: #222f3e;
  2067. }
  2068. .tox .tox-tbtn:active {
  2069. background: #c8cbcf;
  2070. box-shadow: none;
  2071. color: #222f3e;
  2072. }
  2073. .tox .tox-tbtn:active svg {
  2074. fill: #222f3e;
  2075. }
  2076. .tox .tox-tbtn--disabled,
  2077. .tox .tox-tbtn--disabled:hover,
  2078. .tox .tox-tbtn:disabled,
  2079. .tox .tox-tbtn:disabled:hover {
  2080. background: none;
  2081. box-shadow: none;
  2082. color: rgba(34, 47, 62, 0.5);
  2083. cursor: not-allowed;
  2084. }
  2085. .tox .tox-tbtn--disabled svg,
  2086. .tox .tox-tbtn--disabled:hover svg,
  2087. .tox .tox-tbtn:disabled svg,
  2088. .tox .tox-tbtn:disabled:hover svg {
  2089. /* stylelint-disable-line no-descending-specificity */
  2090. fill: rgba(34, 47, 62, 0.5);
  2091. }
  2092. .tox .tox-tbtn:active > * {
  2093. transform: none;
  2094. }
  2095. .tox .tox-tbtn--md {
  2096. height: 51px;
  2097. width: 51px;
  2098. }
  2099. .tox .tox-tbtn--lg {
  2100. flex-direction: column;
  2101. height: 68px;
  2102. width: 68px;
  2103. }
  2104. .tox .tox-tbtn--return {
  2105. align-self: stretch;
  2106. height: unset;
  2107. width: 16px;
  2108. }
  2109. .tox .tox-tbtn--labeled {
  2110. padding: 0 4px;
  2111. width: unset;
  2112. }
  2113. .tox .tox-tbtn__vlabel {
  2114. display: block;
  2115. font-size: 10px;
  2116. font-weight: normal;
  2117. letter-spacing: -0.025em;
  2118. margin-bottom: 4px;
  2119. white-space: nowrap;
  2120. }
  2121. .tox .tox-tbtn--select {
  2122. margin: 2px 0 3px 0;
  2123. padding: 0 4px;
  2124. width: auto;
  2125. }
  2126. .tox .tox-tbtn__select-label {
  2127. cursor: default;
  2128. font-weight: normal;
  2129. margin: 0 4px;
  2130. }
  2131. .tox .tox-tbtn__select-chevron {
  2132. align-items: center;
  2133. display: flex;
  2134. justify-content: center;
  2135. width: 16px;
  2136. }
  2137. .tox .tox-tbtn__select-chevron svg {
  2138. fill: rgba(34, 47, 62, 0.7);
  2139. }
  2140. .tox .tox-tbtn--bespoke .tox-tbtn__select-label {
  2141. overflow: hidden;
  2142. text-overflow: ellipsis;
  2143. white-space: nowrap;
  2144. width: 7em;
  2145. }
  2146. .tox .tox-split-button {
  2147. border: 0;
  2148. border-radius: 3px;
  2149. box-sizing: border-box;
  2150. display: flex;
  2151. margin: 2px 0 3px 0;
  2152. overflow: hidden;
  2153. }
  2154. .tox .tox-split-button:hover {
  2155. box-shadow: 0 0 0 1px #dee0e2 inset;
  2156. }
  2157. .tox .tox-split-button:focus {
  2158. background: #dee0e2;
  2159. box-shadow: none;
  2160. color: #222f3e;
  2161. }
  2162. .tox .tox-split-button > * {
  2163. border-radius: 0;
  2164. }
  2165. .tox .tox-split-button__chevron {
  2166. width: 16px;
  2167. }
  2168. .tox .tox-split-button__chevron svg {
  2169. fill: rgba(34, 47, 62, 0.7);
  2170. }
  2171. .tox .tox-pop .tox-split-button__chevron svg {
  2172. transform: rotate(-90deg);
  2173. }
  2174. .tox .tox-split-button .tox-tbtn {
  2175. margin: 0;
  2176. }
  2177. .tox .tox-split-button.tox-tbtn--disabled:hover,
  2178. .tox .tox-split-button.tox-tbtn--disabled:focus,
  2179. .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,
  2180. .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus {
  2181. background: none;
  2182. box-shadow: none;
  2183. color: rgba(34, 47, 62, 0.5);
  2184. }
  2185. .tox .tox-toolbar,
  2186. .tox .tox-toolbar__primary,
  2187. .tox .tox-toolbar__overflow {
  2188. background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff;
  2189. background-color: #fff;
  2190. border-top: 1px solid #cccccc;
  2191. display: flex;
  2192. flex: 0 0 auto;
  2193. flex-shrink: 0;
  2194. flex-wrap: wrap;
  2195. margin-bottom: -1px;
  2196. padding: 0 0;
  2197. }
  2198. .tox .tox-toolbar__overflow.tox-toolbar__overflow--closed {
  2199. height: 0;
  2200. opacity: 0;
  2201. visibility: hidden;
  2202. }
  2203. .tox .tox-toolbar__overflow--growing {
  2204. transition: height 0.3s ease, opacity 0.2s linear 0.1s;
  2205. }
  2206. .tox .tox-toolbar__overflow--shrinking {
  2207. transition: opacity 0.3s ease, height 0.2s linear 0.1s, visibility 0s linear 0.3s;
  2208. }
  2209. .tox .tox-pop .tox-toolbar {
  2210. border-width: 0;
  2211. }
  2212. .tox .tox-toolbar--no-divider {
  2213. background-image: none;
  2214. }
  2215. .tox.tox-tinymce-aux .tox-toolbar__overflow {
  2216. background-color: #fff;
  2217. border: 1px solid #cccccc;
  2218. border-radius: 3px;
  2219. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  2220. }
  2221. .tox.tox-tinymce-aux:not([dir=rtl]) .tox-toolbar__overflow {
  2222. margin-left: 4px;
  2223. }
  2224. .tox[dir=rtl] .tox-tbtn__icon-rtl svg {
  2225. transform: rotateY(180deg);
  2226. }
  2227. .tox[dir=rtl].tox-tinymce-aux .tox-toolbar__overflow {
  2228. margin-right: 4px;
  2229. }
  2230. .tox .tox-toolbar__group {
  2231. align-items: center;
  2232. display: flex;
  2233. flex-wrap: wrap;
  2234. margin: 0 0;
  2235. padding: 0 4px;
  2236. }
  2237. .tox .tox-toolbar__group--pull-right {
  2238. margin-left: auto;
  2239. }
  2240. .tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
  2241. border-right: 1px solid #cccccc;
  2242. }
  2243. .tox[dir=rtl] .tox-toolbar__group:not(:last-of-type) {
  2244. border-left: 1px solid #cccccc;
  2245. }
  2246. .tox .tox-tooltip {
  2247. display: inline-block;
  2248. padding: 8px;
  2249. position: relative;
  2250. }
  2251. .tox .tox-tooltip__body {
  2252. background-color: #222f3e;
  2253. border-radius: 3px;
  2254. box-shadow: 0 2px 4px rgba(34, 47, 62, 0.3);
  2255. color: rgba(255, 255, 255, 0.75);
  2256. font-size: 14px;
  2257. font-style: normal;
  2258. font-weight: normal;
  2259. padding: 4px 8px;
  2260. text-transform: normal;
  2261. }
  2262. .tox .tox-tooltip__arrow {
  2263. position: absolute;
  2264. }
  2265. .tox .tox-tooltip--down .tox-tooltip__arrow {
  2266. border-left: 8px solid transparent;
  2267. border-right: 8px solid transparent;
  2268. border-top: 8px solid #222f3e;
  2269. bottom: 0;
  2270. left: 50%;
  2271. position: absolute;
  2272. transform: translateX(-50%);
  2273. }
  2274. .tox .tox-tooltip--up .tox-tooltip__arrow {
  2275. border-bottom: 8px solid #222f3e;
  2276. border-left: 8px solid transparent;
  2277. border-right: 8px solid transparent;
  2278. left: 50%;
  2279. position: absolute;
  2280. top: 0;
  2281. transform: translateX(-50%);
  2282. }
  2283. .tox .tox-tooltip--right .tox-tooltip__arrow {
  2284. border-bottom: 8px solid transparent;
  2285. border-left: 8px solid #222f3e;
  2286. border-top: 8px solid transparent;
  2287. position: absolute;
  2288. right: 0;
  2289. top: 50%;
  2290. transform: translateY(-50%);
  2291. }
  2292. .tox .tox-tooltip--left .tox-tooltip__arrow {
  2293. border-bottom: 8px solid transparent;
  2294. border-right: 8px solid #222f3e;
  2295. border-top: 8px solid transparent;
  2296. left: 0;
  2297. position: absolute;
  2298. top: 50%;
  2299. transform: translateY(-50%);
  2300. }
  2301. .tox .tox-well {
  2302. border: 1px solid #cccccc;
  2303. border-radius: 3px;
  2304. padding: 8px;
  2305. width: 100%;
  2306. }
  2307. .tox .tox-well > *:first-child {
  2308. margin-top: 0;
  2309. }
  2310. .tox .tox-well > *:last-child {
  2311. margin-bottom: 0;
  2312. }
  2313. .tox .tox-well > *:only-child {
  2314. margin: 0;
  2315. }
  2316. .tox .tox-custom-editor {
  2317. border: 1px solid #cccccc;
  2318. border-radius: 3px;
  2319. display: flex;
  2320. height: 525px;
  2321. }
  2322. /* stylelint-disable */
  2323. .tox {
  2324. /* stylelint-enable */
  2325. }
  2326. .tox .tox-dialog-loading::before {
  2327. background-color: rgba(0, 0, 0, 0.5);
  2328. content: "";
  2329. height: 100%;
  2330. position: absolute;
  2331. width: 100%;
  2332. z-index: 1000;
  2333. }
  2334. .tox .tox-tab {
  2335. cursor: pointer;
  2336. }
  2337. .tox .tox-dialog__content-js {
  2338. display: flex;
  2339. flex: 1;
  2340. -ms-flex-preferred-size: auto;
  2341. }
  2342. .tox .tox-dialog__body-content .tox-collection {
  2343. display: flex;
  2344. flex: 1;
  2345. -ms-flex-preferred-size: auto;
  2346. }
  2347. .tox ul {
  2348. display: block;
  2349. list-style-type: disc;
  2350. -webkit-margin-before: 1em;
  2351. margin-block-start: 1em;
  2352. -webkit-margin-after: 1em;
  2353. margin-block-end: 1em;
  2354. -webkit-margin-start: 0px;
  2355. margin-inline-start: 0px;
  2356. -webkit-margin-end: 0px;
  2357. margin-inline-end: 0px;
  2358. -webkit-padding-start: 40px;
  2359. padding-inline-start: 40px;
  2360. }
  2361. .tox a {
  2362. cursor: pointer;
  2363. color: #2276d2;
  2364. }
  2365. .tox .tox-image-tools-edit-panel {
  2366. height: 60px;
  2367. }
  2368. .tox .tox-image-tools__sidebar {
  2369. height: 60px;
  2370. }