skin.css 64 KB

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