skin.scss 57 KB

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