skin.css 71 KB

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