skin.css 71 KB

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