skin.css 54 KB

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