skin.css 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669
  1. .tox {
  2. box-shadow: none;
  3. box-sizing: content-box;
  4. color: #2A3746;
  5. cursor: auto;
  6. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  7. font-size: 16px;
  8. font-style: normal;
  9. font-weight: normal;
  10. line-height: normal;
  11. -webkit-tap-highlight-color: transparent;
  12. text-decoration: none;
  13. text-shadow: none;
  14. text-transform: none;
  15. vertical-align: initial;
  16. white-space: normal;
  17. }
  18. .tox *:not(svg):not(rect) {
  19. box-sizing: inherit;
  20. color: inherit;
  21. cursor: inherit;
  22. direction: inherit;
  23. font-family: inherit;
  24. font-size: inherit;
  25. font-style: inherit;
  26. font-weight: inherit;
  27. line-height: inherit;
  28. -webkit-tap-highlight-color: inherit;
  29. text-align: inherit;
  30. text-decoration: inherit;
  31. text-shadow: inherit;
  32. text-transform: inherit;
  33. vertical-align: inherit;
  34. white-space: inherit;
  35. }
  36. .tox *:not(svg):not(rect) {
  37. /* stylelint-disable-line no-duplicate-selectors */
  38. background: transparent;
  39. border: 0;
  40. box-shadow: none;
  41. float: none;
  42. height: auto;
  43. margin: 0;
  44. max-width: none;
  45. outline: 0;
  46. padding: 0;
  47. position: static;
  48. width: auto;
  49. }
  50. .tox:not([dir=rtl]) {
  51. direction: ltr;
  52. text-align: left;
  53. }
  54. .tox[dir=rtl] {
  55. direction: rtl;
  56. text-align: right;
  57. }
  58. .tox-tinymce {
  59. border: 1px solid #000000;
  60. border-radius: 0;
  61. box-shadow: none;
  62. box-sizing: border-box;
  63. display: flex;
  64. flex-direction: column;
  65. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  66. overflow: hidden;
  67. position: relative;
  68. visibility: inherit !important;
  69. }
  70. .tox.tox-tinymce-inline {
  71. border: none;
  72. box-shadow: none;
  73. overflow: initial;
  74. }
  75. .tox.tox-tinymce-inline .tox-editor-container {
  76. overflow: initial;
  77. }
  78. .tox.tox-tinymce-inline .tox-editor-header {
  79. background-color: #222f3e;
  80. border: 1px solid #000000;
  81. border-radius: 0;
  82. box-shadow: none;
  83. overflow: hidden;
  84. }
  85. .tox-tinymce-aux {
  86. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  87. z-index: 1300;
  88. }
  89. .tox-tinymce *:focus,
  90. .tox-tinymce-aux *:focus {
  91. outline: none;
  92. }
  93. button::-moz-focus-inner {
  94. border: 0;
  95. }
  96. .tox[dir=rtl] .tox-icon--flip svg {
  97. transform: rotateY(180deg);
  98. }
  99. .tox .accessibility-issue__header {
  100. align-items: center;
  101. display: flex;
  102. margin-bottom: 4px;
  103. }
  104. .tox .accessibility-issue__description {
  105. align-items: stretch;
  106. border-radius: 3px;
  107. display: flex;
  108. justify-content: space-between;
  109. }
  110. .tox .accessibility-issue__description > div {
  111. padding-bottom: 4px;
  112. }
  113. .tox .accessibility-issue__description > div > div {
  114. align-items: center;
  115. display: flex;
  116. margin-bottom: 4px;
  117. }
  118. .tox .accessibility-issue__description > div > div .tox-icon svg {
  119. display: block;
  120. }
  121. .tox .accessibility-issue__repair {
  122. margin-top: 16px;
  123. }
  124. .tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description {
  125. background-color: rgba(30, 113, 170, 0.4);
  126. color: #fff;
  127. }
  128. .tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2 {
  129. color: #fff;
  130. }
  131. .tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg {
  132. fill: #fff;
  133. }
  134. .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon {
  135. background-color: #207ab7;
  136. color: #fff;
  137. }
  138. .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover,
  139. .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus {
  140. background-color: #1c6ca1;
  141. }
  142. .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active {
  143. background-color: #185d8c;
  144. }
  145. .tox .tox-dialog__body-content .accessibility-issue--warn {
  146. /* stylelint-disable-next-line no-descending-specificity */
  147. }
  148. .tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description {
  149. background-color: rgba(255, 165, 0, 0.5);
  150. color: #fff;
  151. }
  152. .tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2 {
  153. color: #fff;
  154. }
  155. .tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg {
  156. fill: #fff;
  157. }
  158. .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon {
  159. background-color: #FFE89D;
  160. color: #2A3746;
  161. }
  162. .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover,
  163. .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus {
  164. background-color: #F2D574;
  165. color: #2A3746;
  166. }
  167. .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active {
  168. background-color: #E8C657;
  169. color: #2A3746;
  170. }
  171. .tox .tox-dialog__body-content .accessibility-issue--error {
  172. /* stylelint-disable-next-line no-descending-specificity */
  173. }
  174. .tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description {
  175. background-color: rgba(204, 0, 0, 0.5);
  176. color: #fff;
  177. }
  178. .tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2 {
  179. color: #fff;
  180. }
  181. .tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg {
  182. fill: #fff;
  183. }
  184. .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon {
  185. background-color: #F2BFBF;
  186. color: #2A3746;
  187. }
  188. .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover,
  189. .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus {
  190. background-color: #E9A4A4;
  191. color: #2A3746;
  192. }
  193. .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active {
  194. background-color: #EE9494;
  195. color: #2A3746;
  196. }
  197. .tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description {
  198. background-color: rgba(120, 171, 70, 0.5);
  199. color: #fff;
  200. }
  201. .tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description > *:last-child {
  202. display: none;
  203. }
  204. .tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2 {
  205. color: #fff;
  206. }
  207. .tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg {
  208. fill: #fff;
  209. }
  210. .tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,
  211. .tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2 {
  212. font-size: 14px;
  213. margin-top: 0;
  214. }
  215. .tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button {
  216. margin-left: 4px;
  217. }
  218. .tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header > *:nth-last-child(2) {
  219. margin-left: auto;
  220. }
  221. .tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description {
  222. padding: 4px 4px 4px 8px;
  223. }
  224. .tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button {
  225. margin-right: 4px;
  226. }
  227. .tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header > *:nth-last-child(2) {
  228. margin-right: auto;
  229. }
  230. .tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description {
  231. padding: 4px 8px 4px 4px;
  232. }
  233. .tox .tox-advtemplate .tox-form__grid {
  234. flex: 1;
  235. }
  236. .tox .tox-advtemplate .tox-form__grid > div:first-child {
  237. display: flex;
  238. flex-direction: column;
  239. width: 30%;
  240. }
  241. .tox .tox-advtemplate .tox-form__grid > div:first-child > div:nth-child(2) {
  242. flex-basis: 0;
  243. flex-grow: 1;
  244. overflow: auto;
  245. }
  246. @media only screen and (max-width: 767px ) {
  247. body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid > div:first-child {
  248. width: 100%;
  249. }
  250. }
  251. .tox .tox-advtemplate iframe {
  252. border-color: #000000;
  253. border-radius: 0;
  254. border-style: solid;
  255. border-width: 1px;
  256. margin: 0 10px;
  257. }
  258. .tox .tox-anchorbar {
  259. display: flex;
  260. flex: 0 0 auto;
  261. }
  262. .tox .tox-bar {
  263. display: flex;
  264. flex: 0 0 auto;
  265. }
  266. .tox .tox-button {
  267. background-color: #207ab7;
  268. background-image: none;
  269. background-position: 0 0;
  270. background-repeat: repeat;
  271. border-color: #207ab7;
  272. border-radius: 3px;
  273. border-style: solid;
  274. border-width: 1px;
  275. box-shadow: none;
  276. box-sizing: border-box;
  277. color: #fff;
  278. cursor: pointer;
  279. display: inline-block;
  280. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  281. font-size: 14px;
  282. font-style: normal;
  283. font-weight: bold;
  284. letter-spacing: normal;
  285. line-height: 24px;
  286. margin: 0;
  287. outline: none;
  288. padding: 4px 16px;
  289. position: relative;
  290. text-align: center;
  291. text-decoration: none;
  292. text-transform: none;
  293. white-space: nowrap;
  294. }
  295. .tox .tox-button::before {
  296. border-radius: 3px;
  297. bottom: -1px;
  298. box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px #207ab7, 0 0 0 3px rgba(32, 122, 183, 0.25);
  299. content: '';
  300. left: -1px;
  301. opacity: 0;
  302. pointer-events: none;
  303. position: absolute;
  304. right: -1px;
  305. top: -1px;
  306. }
  307. .tox .tox-button[disabled] {
  308. background-color: #207ab7;
  309. background-image: none;
  310. border-color: #207ab7;
  311. box-shadow: none;
  312. color: rgba(255, 255, 255, 0.5);
  313. cursor: not-allowed;
  314. }
  315. .tox .tox-button:focus:not(:disabled) {
  316. background-color: #1c6ca1;
  317. background-image: none;
  318. border-color: #1c6ca1;
  319. box-shadow: none;
  320. color: #fff;
  321. }
  322. .tox .tox-button:focus-visible:not(:disabled)::before {
  323. opacity: 1;
  324. }
  325. .tox .tox-button:hover:not(:disabled) {
  326. background-color: #1c6ca1;
  327. background-image: none;
  328. border-color: #1c6ca1;
  329. box-shadow: none;
  330. color: #fff;
  331. }
  332. .tox .tox-button:active:not(:disabled) {
  333. background-color: #185d8c;
  334. background-image: none;
  335. border-color: #185d8c;
  336. box-shadow: none;
  337. color: #fff;
  338. }
  339. .tox .tox-button.tox-button--enabled,
  340. .tox .tox-button.tox-button--enabled:hover {
  341. background: #757d87;
  342. border-width: 1px;
  343. box-shadow: none;
  344. color: #fff;
  345. }
  346. .tox .tox-button.tox-button--enabled > *,
  347. .tox .tox-button.tox-button--enabled:hover > * {
  348. transform: none;
  349. }
  350. .tox .tox-button.tox-button--enabled svg,
  351. .tox .tox-button.tox-button--enabled:hover svg {
  352. /* stylelint-disable-line no-descending-specificity */
  353. fill: #fff;
  354. }
  355. .tox .tox-button--icon-and-text,
  356. .tox .tox-button.tox-button--icon-and-text,
  357. .tox .tox-button.tox-button--secondary.tox-button--icon-and-text {
  358. display: flex;
  359. padding: 5px 4px;
  360. }
  361. .tox .tox-button--icon-and-text .tox-icon svg,
  362. .tox .tox-button.tox-button--icon-and-text .tox-icon svg,
  363. .tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg {
  364. display: block;
  365. fill: currentColor;
  366. }
  367. .tox .tox-button--secondary {
  368. background-color: #3d546f;
  369. background-image: none;
  370. background-position: 0 0;
  371. background-repeat: repeat;
  372. border-color: #3d546f;
  373. border-radius: 3px;
  374. border-style: solid;
  375. border-width: 1px;
  376. box-shadow: none;
  377. color: #fff;
  378. font-size: 14px;
  379. font-style: normal;
  380. font-weight: bold;
  381. letter-spacing: normal;
  382. outline: none;
  383. padding: 4px 16px;
  384. text-decoration: none;
  385. text-transform: none;
  386. }
  387. .tox .tox-button--secondary[disabled] {
  388. background-color: #3d546f;
  389. background-image: none;
  390. border-color: #3d546f;
  391. box-shadow: none;
  392. color: rgba(255, 255, 255, 0.5);
  393. }
  394. .tox .tox-button--secondary:focus:not(:disabled) {
  395. background-color: #34485f;
  396. background-image: none;
  397. border-color: #34485f;
  398. box-shadow: none;
  399. color: #fff;
  400. }
  401. .tox .tox-button--secondary:hover:not(:disabled) {
  402. background-color: #34485f;
  403. background-image: none;
  404. border-color: #34485f;
  405. box-shadow: none;
  406. color: #fff;
  407. }
  408. .tox .tox-button--secondary:active:not(:disabled) {
  409. background-color: #2b3b4e;
  410. background-image: none;
  411. border-color: #2b3b4e;
  412. box-shadow: none;
  413. color: #fff;
  414. }
  415. .tox .tox-button--icon,
  416. .tox .tox-button.tox-button--icon,
  417. .tox .tox-button.tox-button--secondary.tox-button--icon {
  418. padding: 4px;
  419. }
  420. .tox .tox-button--icon .tox-icon svg,
  421. .tox .tox-button.tox-button--icon .tox-icon svg,
  422. .tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg {
  423. display: block;
  424. fill: currentColor;
  425. }
  426. .tox .tox-button-link {
  427. background: 0;
  428. border: none;
  429. box-sizing: border-box;
  430. cursor: pointer;
  431. display: inline-block;
  432. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  433. font-size: 16px;
  434. font-weight: normal;
  435. line-height: 1.3;
  436. margin: 0;
  437. padding: 0;
  438. white-space: nowrap;
  439. }
  440. .tox .tox-button-link--sm {
  441. font-size: 14px;
  442. }
  443. .tox .tox-button--naked {
  444. background-color: transparent;
  445. border-color: transparent;
  446. box-shadow: unset;
  447. color: #fff;
  448. }
  449. .tox .tox-button--naked[disabled] {
  450. background-color: #3d546f;
  451. border-color: #3d546f;
  452. box-shadow: none;
  453. color: rgba(255, 255, 255, 0.5);
  454. }
  455. .tox .tox-button--naked:hover:not(:disabled) {
  456. background-color: #34485f;
  457. border-color: #34485f;
  458. box-shadow: none;
  459. color: #fff;
  460. }
  461. .tox .tox-button--naked:focus:not(:disabled) {
  462. background-color: #34485f;
  463. border-color: #34485f;
  464. box-shadow: none;
  465. color: #fff;
  466. }
  467. .tox .tox-button--naked:active:not(:disabled) {
  468. background-color: #2b3b4e;
  469. border-color: #2b3b4e;
  470. box-shadow: none;
  471. color: #fff;
  472. }
  473. .tox .tox-button--naked .tox-icon svg {
  474. fill: currentColor;
  475. }
  476. .tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
  477. color: #fff;
  478. }
  479. .tox .tox-checkbox {
  480. align-items: center;
  481. border-radius: 3px;
  482. cursor: pointer;
  483. display: flex;
  484. height: 36px;
  485. min-width: 36px;
  486. }
  487. .tox .tox-checkbox__input {
  488. /* Hide from view but visible to screen readers */
  489. height: 1px;
  490. overflow: hidden;
  491. position: absolute;
  492. top: auto;
  493. width: 1px;
  494. }
  495. .tox .tox-checkbox__icons {
  496. align-items: center;
  497. border-radius: 3px;
  498. box-shadow: 0 0 0 2px transparent;
  499. box-sizing: content-box;
  500. display: flex;
  501. height: 24px;
  502. justify-content: center;
  503. padding: calc(4px - 1px);
  504. width: 24px;
  505. }
  506. .tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  507. display: block;
  508. fill: rgba(255, 255, 255, 0.2);
  509. }
  510. .tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  511. display: none;
  512. fill: #207ab7;
  513. }
  514. .tox .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  515. display: none;
  516. fill: #207ab7;
  517. }
  518. .tox .tox-checkbox--disabled {
  519. color: rgba(255, 255, 255, 0.5);
  520. cursor: not-allowed;
  521. }
  522. .tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  523. fill: rgba(255, 255, 255, 0.5);
  524. }
  525. .tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  526. fill: rgba(255, 255, 255, 0.5);
  527. }
  528. .tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  529. fill: rgba(255, 255, 255, 0.5);
  530. }
  531. .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  532. display: none;
  533. }
  534. .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  535. display: block;
  536. }
  537. .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  538. display: none;
  539. }
  540. .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  541. display: block;
  542. }
  543. .tox input.tox-checkbox__input:focus + .tox-checkbox__icons {
  544. border-radius: 3px;
  545. box-shadow: inset 0 0 0 1px #207ab7;
  546. padding: calc(4px - 1px);
  547. }
  548. .tox:not([dir=rtl]) .tox-checkbox__label {
  549. margin-left: 4px;
  550. }
  551. .tox:not([dir=rtl]) .tox-checkbox__input {
  552. left: -10000px;
  553. }
  554. .tox:not([dir=rtl]) .tox-bar .tox-checkbox {
  555. margin-left: 4px;
  556. }
  557. .tox[dir=rtl] .tox-checkbox__label {
  558. margin-right: 4px;
  559. }
  560. .tox[dir=rtl] .tox-checkbox__input {
  561. right: -10000px;
  562. }
  563. .tox[dir=rtl] .tox-bar .tox-checkbox {
  564. margin-right: 4px;
  565. }
  566. .tox {
  567. /* stylelint-disable-next-line no-descending-specificity */
  568. }
  569. .tox .tox-collection--toolbar .tox-collection__group {
  570. display: flex;
  571. padding: 0;
  572. }
  573. .tox .tox-collection--grid .tox-collection__group {
  574. display: flex;
  575. flex-wrap: wrap;
  576. max-height: 208px;
  577. overflow-x: hidden;
  578. overflow-y: auto;
  579. padding: 0;
  580. }
  581. .tox .tox-collection--list .tox-collection__group {
  582. border-bottom-width: 0;
  583. border-color: #1a1a1a;
  584. border-left-width: 0;
  585. border-right-width: 0;
  586. border-style: solid;
  587. border-top-width: 1px;
  588. padding: 4px 0;
  589. }
  590. .tox .tox-collection--list .tox-collection__group:first-child {
  591. border-top-width: 0;
  592. }
  593. .tox .tox-collection__group-heading {
  594. background-color: #333333;
  595. color: #fff;
  596. cursor: default;
  597. font-size: 12px;
  598. font-style: normal;
  599. font-weight: normal;
  600. margin-bottom: 4px;
  601. margin-top: -4px;
  602. padding: 4px 8px;
  603. text-transform: none;
  604. -webkit-touch-callout: none;
  605. -webkit-user-select: none;
  606. -moz-user-select: none;
  607. user-select: none;
  608. }
  609. .tox .tox-collection__item {
  610. align-items: center;
  611. border-radius: 3px;
  612. color: #fff;
  613. display: flex;
  614. -webkit-touch-callout: none;
  615. -webkit-user-select: none;
  616. -moz-user-select: none;
  617. user-select: none;
  618. }
  619. .tox .tox-collection--list .tox-collection__item {
  620. padding: 4px 8px;
  621. }
  622. .tox .tox-collection--toolbar .tox-collection__item {
  623. border-radius: 3px;
  624. padding: 4px;
  625. }
  626. .tox .tox-collection--grid .tox-collection__item {
  627. border-radius: 3px;
  628. padding: 4px;
  629. }
  630. .tox .tox-collection--list .tox-collection__item--enabled {
  631. background-color: #2b3b4e;
  632. color: #fff;
  633. }
  634. .tox .tox-collection--list .tox-collection__item--active {
  635. background-color: #4a5562;
  636. }
  637. .tox .tox-collection--toolbar .tox-collection__item--enabled {
  638. background-color: #757d87;
  639. color: #fff;
  640. }
  641. .tox .tox-collection--toolbar .tox-collection__item--active {
  642. background-color: #4a5562;
  643. }
  644. .tox .tox-collection--grid .tox-collection__item--enabled {
  645. background-color: #757d87;
  646. color: #fff;
  647. }
  648. .tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  649. background-color: #4a5562;
  650. color: #fff;
  651. }
  652. .tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  653. color: #fff;
  654. }
  655. .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  656. color: #fff;
  657. }
  658. .tox .tox-collection__item-icon,
  659. .tox .tox-collection__item-checkmark {
  660. align-items: center;
  661. display: flex;
  662. height: 24px;
  663. justify-content: center;
  664. width: 24px;
  665. }
  666. .tox .tox-collection__item-icon svg,
  667. .tox .tox-collection__item-checkmark svg {
  668. fill: currentColor;
  669. }
  670. .tox .tox-collection--toolbar-lg .tox-collection__item-icon {
  671. height: 48px;
  672. width: 48px;
  673. }
  674. .tox .tox-collection__item-label {
  675. color: currentColor;
  676. display: inline-block;
  677. flex: 1;
  678. font-size: 14px;
  679. font-style: normal;
  680. font-weight: normal;
  681. line-height: 24px;
  682. text-transform: none;
  683. word-break: break-all;
  684. }
  685. .tox .tox-collection__item-accessory {
  686. color: rgba(255, 255, 255, 0.5);
  687. display: inline-block;
  688. font-size: 14px;
  689. height: 24px;
  690. line-height: 24px;
  691. text-transform: none;
  692. }
  693. .tox .tox-collection__item-caret {
  694. align-items: center;
  695. display: flex;
  696. min-height: 24px;
  697. }
  698. .tox .tox-collection__item-caret::after {
  699. content: '';
  700. font-size: 0;
  701. min-height: inherit;
  702. }
  703. .tox .tox-collection__item-caret svg {
  704. fill: #fff;
  705. }
  706. .tox .tox-collection__item--state-disabled {
  707. background-color: transparent;
  708. color: rgba(255, 255, 255, 0.5);
  709. cursor: not-allowed;
  710. }
  711. .tox .tox-collection__item--state-disabled .tox-collection__item-caret svg {
  712. fill: rgba(255, 255, 255, 0.5);
  713. }
  714. .tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg {
  715. display: none;
  716. }
  717. .tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory + .tox-collection__item-checkmark {
  718. display: none;
  719. }
  720. .tox .tox-collection--horizontal {
  721. background-color: #2b3b4e;
  722. border: 1px solid #1a1a1a;
  723. border-radius: 3px;
  724. box-shadow: 0 0 2px 0 rgba(42, 55, 70, 0.2), 0 4px 8px 0 rgba(42, 55, 70, 0.15);
  725. display: flex;
  726. flex: 0 0 auto;
  727. flex-shrink: 0;
  728. flex-wrap: nowrap;
  729. margin-bottom: 0;
  730. overflow-x: auto;
  731. padding: 0;
  732. }
  733. .tox .tox-collection--horizontal .tox-collection__group {
  734. align-items: center;
  735. display: flex;
  736. flex-wrap: nowrap;
  737. margin: 0;
  738. padding: 0 4px;
  739. }
  740. .tox .tox-collection--horizontal .tox-collection__item {
  741. height: 34px;
  742. margin: 3px 0 2px 0;
  743. padding: 0 4px;
  744. }
  745. .tox .tox-collection--horizontal .tox-collection__item-label {
  746. white-space: nowrap;
  747. }
  748. .tox .tox-collection--horizontal .tox-collection__item-caret {
  749. margin-left: 4px;
  750. }
  751. .tox .tox-collection__item-container {
  752. display: flex;
  753. }
  754. .tox .tox-collection__item-container--row {
  755. align-items: center;
  756. flex: 1 1 auto;
  757. flex-direction: row;
  758. }
  759. .tox .tox-collection__item-container--row.tox-collection__item-container--align-left {
  760. margin-right: auto;
  761. }
  762. .tox .tox-collection__item-container--row.tox-collection__item-container--align-right {
  763. justify-content: flex-end;
  764. margin-left: auto;
  765. }
  766. .tox .tox-collection__item-container--row.tox-collection__item-container--valign-top {
  767. align-items: flex-start;
  768. margin-bottom: auto;
  769. }
  770. .tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle {
  771. align-items: center;
  772. }
  773. .tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom {
  774. align-items: flex-end;
  775. margin-top: auto;
  776. }
  777. .tox .tox-collection__item-container--column {
  778. align-self: center;
  779. flex: 1 1 auto;
  780. flex-direction: column;
  781. }
  782. .tox .tox-collection__item-container--column.tox-collection__item-container--align-left {
  783. align-items: flex-start;
  784. }
  785. .tox .tox-collection__item-container--column.tox-collection__item-container--align-right {
  786. align-items: flex-end;
  787. }
  788. .tox .tox-collection__item-container--column.tox-collection__item-container--valign-top {
  789. align-self: flex-start;
  790. }
  791. .tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle {
  792. align-self: center;
  793. }
  794. .tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom {
  795. align-self: flex-end;
  796. }
  797. .tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
  798. border-right: 1px solid #000000;
  799. }
  800. .tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > *:not(:first-child) {
  801. margin-left: 8px;
  802. }
  803. .tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
  804. margin-left: 4px;
  805. }
  806. .tox:not([dir=rtl]) .tox-collection__item-accessory {
  807. margin-left: 16px;
  808. text-align: right;
  809. }
  810. .tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret {
  811. margin-left: 16px;
  812. }
  813. .tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
  814. border-left: 1px solid #000000;
  815. }
  816. .tox[dir=rtl] .tox-collection--list .tox-collection__item > *:not(:first-child) {
  817. margin-right: 8px;
  818. }
  819. .tox[dir=rtl] .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
  820. margin-right: 4px;
  821. }
  822. .tox[dir=rtl] .tox-collection__item-accessory {
  823. margin-right: 16px;
  824. text-align: left;
  825. }
  826. .tox[dir=rtl] .tox-collection .tox-collection__item-caret {
  827. margin-right: 16px;
  828. transform: rotateY(180deg);
  829. }
  830. .tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret {
  831. margin-right: 4px;
  832. }
  833. .tox .tox-color-picker-container {
  834. display: flex;
  835. flex-direction: row;
  836. height: 225px;
  837. margin: 0;
  838. }
  839. .tox .tox-sv-palette {
  840. box-sizing: border-box;
  841. display: flex;
  842. height: 100%;
  843. }
  844. .tox .tox-sv-palette-spectrum {
  845. height: 100%;
  846. }
  847. .tox .tox-sv-palette,
  848. .tox .tox-sv-palette-spectrum {
  849. width: 225px;
  850. }
  851. .tox .tox-sv-palette-thumb {
  852. background: none;
  853. border: 1px solid black;
  854. border-radius: 50%;
  855. box-sizing: content-box;
  856. height: 12px;
  857. position: absolute;
  858. width: 12px;
  859. }
  860. .tox .tox-sv-palette-inner-thumb {
  861. border: 1px solid white;
  862. border-radius: 50%;
  863. height: 10px;
  864. position: absolute;
  865. width: 10px;
  866. }
  867. .tox .tox-hue-slider {
  868. box-sizing: border-box;
  869. height: 100%;
  870. width: 25px;
  871. }
  872. .tox .tox-hue-slider-spectrum {
  873. background: linear-gradient(to bottom, #f00, #ff0080, #f0f, #8000ff, #00f, #0080ff, #0ff, #00ff80, #0f0, #80ff00, #ff0, #ff8000, #f00);
  874. height: 100%;
  875. width: 100%;
  876. }
  877. .tox .tox-hue-slider,
  878. .tox .tox-hue-slider-spectrum {
  879. width: 20px;
  880. }
  881. .tox .tox-hue-slider-thumb {
  882. background: white;
  883. border: 1px solid black;
  884. box-sizing: content-box;
  885. height: 4px;
  886. width: 100%;
  887. }
  888. .tox .tox-rgb-form {
  889. display: flex;
  890. flex-direction: column;
  891. justify-content: space-between;
  892. }
  893. .tox .tox-rgb-form div {
  894. align-items: center;
  895. display: flex;
  896. justify-content: space-between;
  897. margin-bottom: 5px;
  898. width: inherit;
  899. }
  900. .tox .tox-rgb-form input {
  901. width: 6em;
  902. }
  903. .tox .tox-rgb-form input.tox-invalid {
  904. /* Need !important to override Chrome's focus styling unfortunately */
  905. border: 1px solid red !important;
  906. }
  907. .tox .tox-rgb-form .tox-rgba-preview {
  908. border: 1px solid black;
  909. flex-grow: 2;
  910. margin-bottom: 0;
  911. }
  912. .tox:not([dir=rtl]) .tox-sv-palette {
  913. margin-right: 15px;
  914. }
  915. .tox:not([dir=rtl]) .tox-hue-slider {
  916. margin-right: 15px;
  917. }
  918. .tox:not([dir=rtl]) .tox-hue-slider-thumb {
  919. margin-left: -1px;
  920. }
  921. .tox:not([dir=rtl]) .tox-rgb-form label {
  922. margin-right: 0.5em;
  923. }
  924. .tox[dir=rtl] .tox-sv-palette {
  925. margin-left: 15px;
  926. }
  927. .tox[dir=rtl] .tox-hue-slider {
  928. margin-left: 15px;
  929. }
  930. .tox[dir=rtl] .tox-hue-slider-thumb {
  931. margin-right: -1px;
  932. }
  933. .tox[dir=rtl] .tox-rgb-form label {
  934. margin-left: 0.5em;
  935. }
  936. .tox .tox-toolbar .tox-swatches,
  937. .tox .tox-toolbar__primary .tox-swatches,
  938. .tox .tox-toolbar__overflow .tox-swatches {
  939. margin: 2px 0 3px 4px;
  940. }
  941. .tox .tox-collection--list .tox-collection__group .tox-swatches-menu {
  942. border: 0;
  943. margin: -4px 0;
  944. }
  945. .tox .tox-swatches__row {
  946. display: flex;
  947. }
  948. .tox .tox-swatch {
  949. height: 30px;
  950. transition: transform 0.15s, box-shadow 0.15s;
  951. width: 30px;
  952. }
  953. .tox .tox-swatch:hover,
  954. .tox .tox-swatch:focus {
  955. box-shadow: 0 0 0 1px rgba(127, 127, 127, 0.3) inset;
  956. transform: scale(0.8);
  957. }
  958. .tox .tox-swatch--remove {
  959. align-items: center;
  960. display: flex;
  961. justify-content: center;
  962. }
  963. .tox .tox-swatch--remove svg path {
  964. stroke: #e74c3c;
  965. }
  966. .tox .tox-swatches__picker-btn {
  967. align-items: center;
  968. background-color: transparent;
  969. border: 0;
  970. cursor: pointer;
  971. display: flex;
  972. height: 30px;
  973. justify-content: center;
  974. outline: none;
  975. padding: 0;
  976. width: 30px;
  977. }
  978. .tox .tox-swatches__picker-btn svg {
  979. fill: #fff;
  980. height: 24px;
  981. width: 24px;
  982. }
  983. .tox .tox-swatches__picker-btn:hover {
  984. background: #4a5562;
  985. }
  986. .tox div.tox-swatch:not(.tox-swatch--remove) svg {
  987. display: none;
  988. fill: #fff;
  989. height: 24px;
  990. margin: calc((30px - 24px) / 2) calc((30px - 24px) / 2);
  991. width: 24px;
  992. }
  993. .tox div.tox-swatch:not(.tox-swatch--remove) svg path {
  994. fill: #fff;
  995. paint-order: stroke;
  996. stroke: #222f3e;
  997. stroke-width: 2px;
  998. }
  999. .tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg {
  1000. display: block;
  1001. }
  1002. .tox:not([dir=rtl]) .tox-swatches__picker-btn {
  1003. margin-left: auto;
  1004. }
  1005. .tox[dir=rtl] .tox-swatches__picker-btn {
  1006. margin-right: auto;
  1007. }
  1008. .tox .tox-comment-thread {
  1009. background: #2b3b4e;
  1010. position: relative;
  1011. }
  1012. .tox .tox-comment-thread > *:not(:first-child) {
  1013. margin-top: 8px;
  1014. }
  1015. .tox .tox-comment {
  1016. background: #2b3b4e;
  1017. border: 1px solid #000000;
  1018. border-radius: 3px;
  1019. box-shadow: 0 4px 8px 0 rgba(42, 55, 70, 0.1);
  1020. padding: 8px 8px 16px 8px;
  1021. position: relative;
  1022. }
  1023. .tox .tox-comment__header {
  1024. align-items: center;
  1025. color: #fff;
  1026. display: flex;
  1027. justify-content: space-between;
  1028. }
  1029. .tox .tox-comment__date {
  1030. color: #fff;
  1031. font-size: 12px;
  1032. line-height: 18px;
  1033. }
  1034. .tox .tox-comment__body {
  1035. color: #fff;
  1036. font-size: 14px;
  1037. font-style: normal;
  1038. font-weight: normal;
  1039. line-height: 1.3;
  1040. margin-top: 8px;
  1041. position: relative;
  1042. text-transform: initial;
  1043. }
  1044. .tox .tox-comment__body textarea {
  1045. resize: none;
  1046. white-space: normal;
  1047. width: 100%;
  1048. }
  1049. .tox .tox-comment__expander {
  1050. padding-top: 8px;
  1051. }
  1052. .tox .tox-comment__expander p {
  1053. color: rgba(255, 255, 255, 0.5);
  1054. font-size: 14px;
  1055. font-style: normal;
  1056. }
  1057. .tox .tox-comment__body p {
  1058. margin: 0;
  1059. }
  1060. .tox .tox-comment__buttonspacing {
  1061. padding-top: 16px;
  1062. text-align: center;
  1063. }
  1064. .tox .tox-comment-thread__overlay::after {
  1065. background: #2b3b4e;
  1066. bottom: 0;
  1067. content: "";
  1068. display: flex;
  1069. left: 0;
  1070. opacity: 0.9;
  1071. position: absolute;
  1072. right: 0;
  1073. top: 0;
  1074. z-index: 5;
  1075. }
  1076. .tox .tox-comment__reply {
  1077. display: flex;
  1078. flex-shrink: 0;
  1079. flex-wrap: wrap;
  1080. justify-content: flex-end;
  1081. margin-top: 8px;
  1082. }
  1083. .tox .tox-comment__reply > *:first-child {
  1084. margin-bottom: 8px;
  1085. width: 100%;
  1086. }
  1087. .tox .tox-comment__edit {
  1088. display: flex;
  1089. flex-wrap: wrap;
  1090. justify-content: flex-end;
  1091. margin-top: 16px;
  1092. }
  1093. .tox .tox-comment__gradient::after {
  1094. background: linear-gradient(rgba(43, 59, 78, 0), #2b3b4e);
  1095. bottom: 0;
  1096. content: "";
  1097. display: block;
  1098. height: 5em;
  1099. margin-top: -40px;
  1100. position: absolute;
  1101. width: 100%;
  1102. }
  1103. .tox .tox-comment__overlay {
  1104. background: #2b3b4e;
  1105. bottom: 0;
  1106. display: flex;
  1107. flex-direction: column;
  1108. flex-grow: 1;
  1109. left: 0;
  1110. opacity: 0.9;
  1111. position: absolute;
  1112. right: 0;
  1113. text-align: center;
  1114. top: 0;
  1115. z-index: 5;
  1116. }
  1117. .tox .tox-comment__loading-text {
  1118. align-items: center;
  1119. color: #fff;
  1120. display: flex;
  1121. flex-direction: column;
  1122. position: relative;
  1123. }
  1124. .tox .tox-comment__loading-text > div {
  1125. padding-bottom: 16px;
  1126. }
  1127. .tox .tox-comment__overlaytext {
  1128. bottom: 0;
  1129. flex-direction: column;
  1130. font-size: 14px;
  1131. left: 0;
  1132. padding: 1em;
  1133. position: absolute;
  1134. right: 0;
  1135. top: 0;
  1136. z-index: 10;
  1137. }
  1138. .tox .tox-comment__overlaytext p {
  1139. background-color: #2b3b4e;
  1140. box-shadow: 0 0 8px 8px #2b3b4e;
  1141. color: #fff;
  1142. text-align: center;
  1143. }
  1144. .tox .tox-comment__overlaytext div:nth-of-type(2) {
  1145. font-size: 0.8em;
  1146. }
  1147. .tox .tox-comment__busy-spinner {
  1148. align-items: center;
  1149. background-color: #2b3b4e;
  1150. bottom: 0;
  1151. display: flex;
  1152. justify-content: center;
  1153. left: 0;
  1154. position: absolute;
  1155. right: 0;
  1156. top: 0;
  1157. z-index: 20;
  1158. }
  1159. .tox .tox-comment__scroll {
  1160. display: flex;
  1161. flex-direction: column;
  1162. flex-shrink: 1;
  1163. overflow: auto;
  1164. }
  1165. .tox .tox-conversations {
  1166. margin: 8px;
  1167. }
  1168. .tox:not([dir=rtl]) .tox-comment__edit {
  1169. margin-left: 8px;
  1170. }
  1171. .tox:not([dir=rtl]) .tox-comment__buttonspacing > *:last-child,
  1172. .tox:not([dir=rtl]) .tox-comment__edit > *:last-child,
  1173. .tox:not([dir=rtl]) .tox-comment__reply > *:last-child {
  1174. margin-left: 8px;
  1175. }
  1176. .tox[dir=rtl] .tox-comment__edit {
  1177. margin-right: 8px;
  1178. }
  1179. .tox[dir=rtl] .tox-comment__buttonspacing > *:last-child,
  1180. .tox[dir=rtl] .tox-comment__edit > *:last-child,
  1181. .tox[dir=rtl] .tox-comment__reply > *:last-child {
  1182. margin-right: 8px;
  1183. }
  1184. .tox .tox-user {
  1185. align-items: center;
  1186. display: flex;
  1187. }
  1188. .tox .tox-user__avatar svg {
  1189. fill: rgba(255, 255, 255, 0.5);
  1190. }
  1191. .tox .tox-user__avatar img {
  1192. border-radius: 50%;
  1193. height: 36px;
  1194. object-fit: cover;
  1195. vertical-align: middle;
  1196. width: 36px;
  1197. }
  1198. .tox .tox-user__name {
  1199. color: #fff;
  1200. font-size: 14px;
  1201. font-style: normal;
  1202. font-weight: bold;
  1203. line-height: 18px;
  1204. text-transform: none;
  1205. }
  1206. .tox:not([dir=rtl]) .tox-user__avatar svg,
  1207. .tox:not([dir=rtl]) .tox-user__avatar img {
  1208. margin-right: 8px;
  1209. }
  1210. .tox:not([dir=rtl]) .tox-user__avatar + .tox-user__name {
  1211. margin-left: 8px;
  1212. }
  1213. .tox[dir=rtl] .tox-user__avatar svg,
  1214. .tox[dir=rtl] .tox-user__avatar img {
  1215. margin-left: 8px;
  1216. }
  1217. .tox[dir=rtl] .tox-user__avatar + .tox-user__name {
  1218. margin-right: 8px;
  1219. }
  1220. .tox .tox-dialog-wrap {
  1221. align-items: center;
  1222. bottom: 0;
  1223. display: flex;
  1224. justify-content: center;
  1225. left: 0;
  1226. position: fixed;
  1227. right: 0;
  1228. top: 0;
  1229. z-index: 1100;
  1230. }
  1231. .tox .tox-dialog-wrap__backdrop {
  1232. background-color: rgba(34, 47, 62, 0.75);
  1233. bottom: 0;
  1234. left: 0;
  1235. position: absolute;
  1236. right: 0;
  1237. top: 0;
  1238. z-index: 1;
  1239. }
  1240. .tox .tox-dialog-wrap__backdrop--opaque {
  1241. background-color: #222f3e;
  1242. }
  1243. .tox .tox-dialog {
  1244. background-color: #2b3b4e;
  1245. border-color: #000000;
  1246. border-radius: 3px;
  1247. border-style: solid;
  1248. border-width: 1px;
  1249. box-shadow: 0 16px 16px -10px rgba(42, 55, 70, 0.15), 0 0 40px 1px rgba(42, 55, 70, 0.15);
  1250. display: flex;
  1251. flex-direction: column;
  1252. max-height: 100%;
  1253. max-width: 480px;
  1254. overflow: hidden;
  1255. position: relative;
  1256. width: 95vw;
  1257. z-index: 2;
  1258. }
  1259. @media only screen and (max-width: 767px ) {
  1260. body:not(.tox-force-desktop) .tox .tox-dialog {
  1261. align-self: flex-start;
  1262. margin: 8px auto;
  1263. max-height: calc(100vh - 8px * 2);
  1264. width: calc(100vw - 16px);
  1265. }
  1266. }
  1267. .tox .tox-dialog-inline {
  1268. z-index: 1100;
  1269. }
  1270. .tox .tox-dialog__header {
  1271. align-items: center;
  1272. background-color: #2b3b4e;
  1273. border-bottom: none;
  1274. color: #fff;
  1275. display: flex;
  1276. font-size: 16px;
  1277. justify-content: space-between;
  1278. padding: 8px 16px 0 16px;
  1279. position: relative;
  1280. }
  1281. .tox .tox-dialog__header .tox-button {
  1282. z-index: 1;
  1283. }
  1284. .tox .tox-dialog__draghandle {
  1285. cursor: grab;
  1286. height: 100%;
  1287. left: 0;
  1288. position: absolute;
  1289. top: 0;
  1290. width: 100%;
  1291. }
  1292. .tox .tox-dialog__draghandle:active {
  1293. cursor: grabbing;
  1294. }
  1295. .tox .tox-dialog__dismiss {
  1296. margin-left: auto;
  1297. }
  1298. .tox .tox-dialog__title {
  1299. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  1300. font-size: 20px;
  1301. font-style: normal;
  1302. font-weight: normal;
  1303. line-height: 1.3;
  1304. margin: 0;
  1305. text-transform: none;
  1306. }
  1307. .tox .tox-dialog__body {
  1308. color: #fff;
  1309. display: flex;
  1310. flex: 1;
  1311. font-size: 16px;
  1312. font-style: normal;
  1313. font-weight: normal;
  1314. line-height: 1.3;
  1315. min-width: 0;
  1316. text-align: left;
  1317. text-transform: none;
  1318. }
  1319. @media only screen and (max-width: 767px ) {
  1320. body:not(.tox-force-desktop) .tox .tox-dialog__body {
  1321. flex-direction: column;
  1322. }
  1323. }
  1324. .tox .tox-dialog__body-nav {
  1325. align-items: flex-start;
  1326. display: flex;
  1327. flex-direction: column;
  1328. padding: 16px 16px;
  1329. }
  1330. @media only screen and (max-width: 767px ) {
  1331. body:not(.tox-force-desktop) .tox .tox-dialog__body-nav {
  1332. flex-direction: row;
  1333. -webkit-overflow-scrolling: touch;
  1334. overflow-x: auto;
  1335. padding-bottom: 0;
  1336. }
  1337. }
  1338. .tox .tox-dialog__body-nav-item {
  1339. border-bottom: 2px solid transparent;
  1340. color: rgba(255, 255, 255, 0.5);
  1341. display: inline-block;
  1342. font-size: 14px;
  1343. line-height: 1.3;
  1344. margin-bottom: 8px;
  1345. text-decoration: none;
  1346. white-space: nowrap;
  1347. }
  1348. .tox .tox-dialog__body-nav-item:focus {
  1349. background-color: rgba(32, 122, 183, 0.1);
  1350. }
  1351. .tox .tox-dialog__body-nav-item--active {
  1352. border-bottom: 2px solid #207ab7;
  1353. color: #207ab7;
  1354. }
  1355. .tox .tox-dialog__body-content {
  1356. box-sizing: border-box;
  1357. display: flex;
  1358. flex: 1;
  1359. flex-direction: column;
  1360. max-height: 650px;
  1361. overflow: auto;
  1362. -webkit-overflow-scrolling: touch;
  1363. padding: 16px 16px;
  1364. }
  1365. .tox .tox-dialog__body-content > * {
  1366. margin-bottom: 0;
  1367. margin-top: 16px;
  1368. }
  1369. .tox .tox-dialog__body-content > *:first-child {
  1370. margin-top: 0;
  1371. }
  1372. .tox .tox-dialog__body-content > *:last-child {
  1373. margin-bottom: 0;
  1374. }
  1375. .tox .tox-dialog__body-content > *:only-child {
  1376. margin-bottom: 0;
  1377. margin-top: 0;
  1378. }
  1379. .tox .tox-dialog__body-content a {
  1380. color: #207ab7;
  1381. cursor: pointer;
  1382. text-decoration: none;
  1383. }
  1384. .tox .tox-dialog__body-content a:hover,
  1385. .tox .tox-dialog__body-content a:focus {
  1386. color: #185d8c;
  1387. text-decoration: none;
  1388. }
  1389. .tox .tox-dialog__body-content a:active {
  1390. color: #185d8c;
  1391. text-decoration: none;
  1392. }
  1393. .tox .tox-dialog__body-content svg {
  1394. fill: #fff;
  1395. }
  1396. .tox .tox-dialog__body-content ul {
  1397. display: block;
  1398. list-style-type: disc;
  1399. margin-bottom: 16px;
  1400. margin-inline-end: 0;
  1401. margin-inline-start: 0;
  1402. padding-inline-start: 2.5rem;
  1403. }
  1404. .tox .tox-dialog__body-content .tox-form__group h1 {
  1405. color: #fff;
  1406. font-size: 20px;
  1407. font-style: normal;
  1408. font-weight: bold;
  1409. letter-spacing: normal;
  1410. margin-bottom: 16px;
  1411. margin-top: 2rem;
  1412. text-transform: none;
  1413. }
  1414. .tox .tox-dialog__body-content .tox-form__group h2 {
  1415. color: #fff;
  1416. font-size: 16px;
  1417. font-style: normal;
  1418. font-weight: bold;
  1419. letter-spacing: normal;
  1420. margin-bottom: 16px;
  1421. margin-top: 2rem;
  1422. text-transform: none;
  1423. }
  1424. .tox .tox-dialog__body-content .tox-form__group p {
  1425. margin-bottom: 16px;
  1426. }
  1427. .tox .tox-dialog__body-content .tox-form__group h1:first-child,
  1428. .tox .tox-dialog__body-content .tox-form__group h2:first-child,
  1429. .tox .tox-dialog__body-content .tox-form__group p:first-child {
  1430. margin-top: 0;
  1431. }
  1432. .tox .tox-dialog__body-content .tox-form__group h1:last-child,
  1433. .tox .tox-dialog__body-content .tox-form__group h2:last-child,
  1434. .tox .tox-dialog__body-content .tox-form__group p:last-child {
  1435. margin-bottom: 0;
  1436. }
  1437. .tox .tox-dialog__body-content .tox-form__group h1:only-child,
  1438. .tox .tox-dialog__body-content .tox-form__group h2:only-child,
  1439. .tox .tox-dialog__body-content .tox-form__group p:only-child {
  1440. margin-bottom: 0;
  1441. margin-top: 0;
  1442. }
  1443. .tox .tox-dialog--width-lg {
  1444. height: 650px;
  1445. max-width: 1200px;
  1446. }
  1447. .tox .tox-dialog--fullscreen {
  1448. height: 100%;
  1449. max-width: 100%;
  1450. }
  1451. .tox .tox-dialog--fullscreen .tox-dialog__body-content {
  1452. max-height: 100%;
  1453. }
  1454. .tox .tox-dialog--width-md {
  1455. max-width: 800px;
  1456. }
  1457. .tox .tox-dialog--width-md .tox-dialog__body-content {
  1458. overflow: auto;
  1459. }
  1460. .tox .tox-dialog__body-content--centered {
  1461. text-align: center;
  1462. }
  1463. .tox .tox-dialog__footer {
  1464. align-items: center;
  1465. background-color: #2b3b4e;
  1466. border-top: 1px solid #000000;
  1467. display: flex;
  1468. justify-content: space-between;
  1469. padding: 8px 16px;
  1470. }
  1471. .tox .tox-dialog__footer-start,
  1472. .tox .tox-dialog__footer-end {
  1473. display: flex;
  1474. }
  1475. .tox .tox-dialog__busy-spinner {
  1476. align-items: center;
  1477. background-color: rgba(34, 47, 62, 0.75);
  1478. bottom: 0;
  1479. display: flex;
  1480. justify-content: center;
  1481. left: 0;
  1482. position: absolute;
  1483. right: 0;
  1484. top: 0;
  1485. z-index: 3;
  1486. }
  1487. .tox .tox-dialog__table {
  1488. border-collapse: collapse;
  1489. width: 100%;
  1490. }
  1491. .tox .tox-dialog__table thead th {
  1492. font-weight: bold;
  1493. padding-bottom: 8px;
  1494. }
  1495. .tox .tox-dialog__table thead th:first-child {
  1496. padding-right: 8px;
  1497. }
  1498. .tox .tox-dialog__table tbody tr {
  1499. border-bottom: 1px solid #000000;
  1500. }
  1501. .tox .tox-dialog__table tbody tr:last-child {
  1502. border-bottom: none;
  1503. }
  1504. .tox .tox-dialog__table td {
  1505. padding-bottom: 8px;
  1506. padding-top: 8px;
  1507. }
  1508. .tox .tox-dialog__table td:first-child {
  1509. padding-right: 8px;
  1510. }
  1511. .tox .tox-dialog__iframe.tox-dialog__iframe--opaque {
  1512. background: #fff;
  1513. }
  1514. .tox .tox-dialog__popups {
  1515. position: absolute;
  1516. width: 100%;
  1517. z-index: 1100;
  1518. }
  1519. .tox .tox-dialog__body-iframe {
  1520. display: flex;
  1521. flex: 1;
  1522. flex-direction: column;
  1523. }
  1524. .tox .tox-dialog__body-iframe .tox-navobj {
  1525. display: flex;
  1526. flex: 1;
  1527. }
  1528. .tox .tox-dialog__body-iframe .tox-navobj :nth-child(2) {
  1529. flex: 1;
  1530. height: 100%;
  1531. }
  1532. .tox .tox-dialog-dock-fadeout {
  1533. opacity: 0;
  1534. visibility: hidden;
  1535. }
  1536. .tox .tox-dialog-dock-fadein {
  1537. opacity: 1;
  1538. visibility: visible;
  1539. }
  1540. .tox .tox-dialog-dock-transition {
  1541. transition: visibility 0s linear 0.3s, opacity 0.3s ease;
  1542. }
  1543. .tox .tox-dialog-dock-transition.tox-dialog-dock-fadein {
  1544. transition-delay: 0s;
  1545. }
  1546. @media only screen and (max-width: 767px ) {
  1547. body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav {
  1548. margin-right: 0;
  1549. }
  1550. }
  1551. @media only screen and (max-width: 767px ) {
  1552. body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child) {
  1553. margin-left: 8px;
  1554. }
  1555. }
  1556. .tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start > *,
  1557. .tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end > * {
  1558. margin-left: 8px;
  1559. }
  1560. .tox[dir=rtl] .tox-dialog__body {
  1561. text-align: right;
  1562. }
  1563. @media only screen and (max-width: 767px ) {
  1564. body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav {
  1565. margin-left: 0;
  1566. }
  1567. }
  1568. @media only screen and (max-width: 767px ) {
  1569. body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child) {
  1570. margin-right: 8px;
  1571. }
  1572. }
  1573. .tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start > *,
  1574. .tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end > * {
  1575. margin-right: 8px;
  1576. }
  1577. body.tox-dialog__disable-scroll {
  1578. overflow: hidden;
  1579. }
  1580. .tox .tox-dropzone-container {
  1581. display: flex;
  1582. flex: 1;
  1583. }
  1584. .tox .tox-dropzone {
  1585. align-items: center;
  1586. background: #fff;
  1587. border: 2px dashed #000000;
  1588. box-sizing: border-box;
  1589. display: flex;
  1590. flex-direction: column;
  1591. flex-grow: 1;
  1592. justify-content: center;
  1593. min-height: 100px;
  1594. padding: 10px;
  1595. }
  1596. .tox .tox-dropzone p {
  1597. color: rgba(255, 255, 255, 0.5);
  1598. margin: 0 0 16px 0;
  1599. }
  1600. .tox .tox-edit-area {
  1601. display: flex;
  1602. flex: 1;
  1603. overflow: hidden;
  1604. position: relative;
  1605. }
  1606. .tox .tox-edit-area::before {
  1607. border: 2px solid #2D6ADF;
  1608. border-radius: 4px;
  1609. content: '';
  1610. inset: 0;
  1611. opacity: 0;
  1612. pointer-events: none;
  1613. position: absolute;
  1614. transition: opacity 0.15s;
  1615. z-index: 1;
  1616. }
  1617. .tox .tox-edit-area__iframe {
  1618. background-color: #fff;
  1619. border: 0;
  1620. box-sizing: border-box;
  1621. flex: 1;
  1622. height: 100%;
  1623. position: absolute;
  1624. width: 100%;
  1625. }
  1626. .tox.tox-edit-focus .tox-edit-area::before {
  1627. opacity: 1;
  1628. }
  1629. .tox.tox-inline-edit-area {
  1630. border: 1px dotted #000000;
  1631. }
  1632. .tox .tox-editor-container {
  1633. display: flex;
  1634. flex: 1 1 auto;
  1635. flex-direction: column;
  1636. overflow: hidden;
  1637. }
  1638. .tox .tox-editor-header {
  1639. display: grid;
  1640. grid-template-columns: 1fr min-content;
  1641. z-index: 2;
  1642. }
  1643. .tox:not(.tox-tinymce-inline) .tox-editor-header {
  1644. background-color: #222f3e;
  1645. border-bottom: none;
  1646. box-shadow: none;
  1647. padding: 4px 0;
  1648. }
  1649. .tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition) {
  1650. transition: box-shadow 0.5s;
  1651. }
  1652. .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header {
  1653. border-top: 1px solid #000000;
  1654. box-shadow: none;
  1655. }
  1656. .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header {
  1657. background-color: #222f3e;
  1658. box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
  1659. padding: 4px 0;
  1660. }
  1661. .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header {
  1662. box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
  1663. }
  1664. .tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty {
  1665. background: none;
  1666. border: none;
  1667. box-shadow: none;
  1668. padding: 0;
  1669. }
  1670. .tox-editor-dock-fadeout {
  1671. opacity: 0;
  1672. visibility: hidden;
  1673. }
  1674. .tox-editor-dock-fadein {
  1675. opacity: 1;
  1676. visibility: visible;
  1677. }
  1678. .tox-editor-dock-transition {
  1679. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  1680. }
  1681. .tox-editor-dock-transition.tox-editor-dock-fadein {
  1682. transition-delay: 0s;
  1683. }
  1684. .tox .tox-control-wrap {
  1685. flex: 1;
  1686. position: relative;
  1687. }
  1688. .tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,
  1689. .tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,
  1690. .tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid {
  1691. display: none;
  1692. }
  1693. .tox .tox-control-wrap svg {
  1694. display: block;
  1695. }
  1696. .tox .tox-control-wrap__status-icon-wrap {
  1697. position: absolute;
  1698. top: 50%;
  1699. transform: translateY(-50%);
  1700. }
  1701. .tox .tox-control-wrap__status-icon-invalid svg {
  1702. fill: #c00;
  1703. }
  1704. .tox .tox-control-wrap__status-icon-unknown svg {
  1705. fill: orange;
  1706. }
  1707. .tox .tox-control-wrap__status-icon-valid svg {
  1708. fill: green;
  1709. }
  1710. .tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,
  1711. .tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,
  1712. .tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield {
  1713. padding-right: 32px;
  1714. }
  1715. .tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap {
  1716. right: 4px;
  1717. }
  1718. .tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,
  1719. .tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,
  1720. .tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield {
  1721. padding-left: 32px;
  1722. }
  1723. .tox[dir=rtl] .tox-control-wrap__status-icon-wrap {
  1724. left: 4px;
  1725. }
  1726. .tox .tox-autocompleter {
  1727. max-width: 25em;
  1728. }
  1729. .tox .tox-autocompleter .tox-menu {
  1730. box-sizing: border-box;
  1731. max-width: 25em;
  1732. }
  1733. .tox .tox-autocompleter .tox-autocompleter-highlight {
  1734. font-weight: bold;
  1735. }
  1736. .tox .tox-color-input {
  1737. display: flex;
  1738. position: relative;
  1739. z-index: 1;
  1740. }
  1741. .tox .tox-color-input .tox-textfield {
  1742. z-index: -1;
  1743. }
  1744. .tox .tox-color-input span {
  1745. border-color: rgba(42, 55, 70, 0.2);
  1746. border-radius: 3px;
  1747. border-style: solid;
  1748. border-width: 1px;
  1749. box-shadow: none;
  1750. box-sizing: border-box;
  1751. height: 24px;
  1752. position: absolute;
  1753. top: 6px;
  1754. width: 24px;
  1755. }
  1756. .tox .tox-color-input span:hover:not([aria-disabled=true]),
  1757. .tox .tox-color-input span:focus:not([aria-disabled=true]) {
  1758. border-color: #207ab7;
  1759. cursor: pointer;
  1760. }
  1761. .tox .tox-color-input span::before {
  1762. 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%);
  1763. background-position: 0 0, 0 6px, 6px -6px, -6px 0;
  1764. background-size: 12px 12px;
  1765. border: 1px solid #2b3b4e;
  1766. border-radius: 3px;
  1767. box-sizing: border-box;
  1768. content: '';
  1769. height: 24px;
  1770. left: -1px;
  1771. position: absolute;
  1772. top: -1px;
  1773. width: 24px;
  1774. z-index: -1;
  1775. }
  1776. .tox .tox-color-input span[aria-disabled=true] {
  1777. cursor: not-allowed;
  1778. }
  1779. .tox:not([dir=rtl]) .tox-color-input {
  1780. /* stylelint-disable-next-line no-descending-specificity */
  1781. }
  1782. .tox:not([dir=rtl]) .tox-color-input .tox-textfield {
  1783. padding-left: 36px;
  1784. }
  1785. .tox:not([dir=rtl]) .tox-color-input span {
  1786. left: 6px;
  1787. }
  1788. .tox[dir="rtl"] .tox-color-input {
  1789. /* stylelint-disable-next-line no-descending-specificity */
  1790. }
  1791. .tox[dir="rtl"] .tox-color-input .tox-textfield {
  1792. padding-right: 36px;
  1793. }
  1794. .tox[dir="rtl"] .tox-color-input span {
  1795. right: 6px;
  1796. }
  1797. .tox .tox-label,
  1798. .tox .tox-toolbar-label {
  1799. color: rgba(255, 255, 255, 0.5);
  1800. display: block;
  1801. font-size: 14px;
  1802. font-style: normal;
  1803. font-weight: normal;
  1804. line-height: 1.3;
  1805. padding: 0 8px 0 0;
  1806. text-transform: none;
  1807. white-space: nowrap;
  1808. }
  1809. .tox .tox-toolbar-label {
  1810. padding: 0 8px;
  1811. }
  1812. .tox[dir=rtl] .tox-label {
  1813. padding: 0 0 0 8px;
  1814. }
  1815. .tox .tox-form {
  1816. display: flex;
  1817. flex: 1;
  1818. flex-direction: column;
  1819. }
  1820. .tox .tox-form__group {
  1821. box-sizing: border-box;
  1822. margin-bottom: 4px;
  1823. }
  1824. .tox .tox-form-group--maximize {
  1825. flex: 1;
  1826. }
  1827. .tox .tox-form__group--error {
  1828. color: #c00;
  1829. }
  1830. .tox .tox-form__group--collection {
  1831. display: flex;
  1832. }
  1833. .tox .tox-form__grid {
  1834. display: flex;
  1835. flex-direction: row;
  1836. flex-wrap: wrap;
  1837. justify-content: space-between;
  1838. }
  1839. .tox .tox-form__grid--2col > .tox-form__group {
  1840. width: calc(50% - (8px / 2));
  1841. }
  1842. .tox .tox-form__grid--3col > .tox-form__group {
  1843. width: calc(100% / 3 - (8px / 2));
  1844. }
  1845. .tox .tox-form__grid--4col > .tox-form__group {
  1846. width: calc(25% - (8px / 2));
  1847. }
  1848. .tox .tox-form__controls-h-stack {
  1849. align-items: center;
  1850. display: flex;
  1851. }
  1852. .tox .tox-form__group--inline {
  1853. align-items: center;
  1854. display: flex;
  1855. }
  1856. .tox .tox-form__group--stretched {
  1857. display: flex;
  1858. flex: 1;
  1859. flex-direction: column;
  1860. }
  1861. .tox .tox-form__group--stretched .tox-textarea {
  1862. flex: 1;
  1863. }
  1864. .tox .tox-form__group--stretched .tox-navobj {
  1865. display: flex;
  1866. flex: 1;
  1867. }
  1868. .tox .tox-form__group--stretched .tox-navobj :nth-child(2) {
  1869. flex: 1;
  1870. height: 100%;
  1871. }
  1872. .tox:not([dir=rtl]) .tox-form__controls-h-stack > *:not(:first-child) {
  1873. margin-left: 4px;
  1874. }
  1875. .tox[dir=rtl] .tox-form__controls-h-stack > *:not(:first-child) {
  1876. margin-right: 4px;
  1877. }
  1878. .tox .tox-lock.tox-locked .tox-lock-icon__unlock,
  1879. .tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock {
  1880. display: none;
  1881. }
  1882. .tox .tox-textfield,
  1883. .tox .tox-toolbar-textfield,
  1884. .tox .tox-listboxfield .tox-listbox--select,
  1885. .tox .tox-textarea,
  1886. .tox .tox-textarea-wrap .tox-textarea:focus {
  1887. -webkit-appearance: none;
  1888. -moz-appearance: none;
  1889. appearance: none;
  1890. background-color: #2b3b4e;
  1891. border-color: #000000;
  1892. border-radius: 3px;
  1893. border-style: solid;
  1894. border-width: 1px;
  1895. box-shadow: none;
  1896. box-sizing: border-box;
  1897. color: #fff;
  1898. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  1899. font-size: 16px;
  1900. line-height: 24px;
  1901. margin: 0;
  1902. min-height: 34px;
  1903. outline: none;
  1904. padding: 5px 4.75px;
  1905. resize: none;
  1906. width: 100%;
  1907. }
  1908. .tox .tox-textfield[disabled],
  1909. .tox .tox-textarea[disabled] {
  1910. background-color: #222f3e;
  1911. color: rgba(255, 255, 255, 0.85);
  1912. cursor: not-allowed;
  1913. }
  1914. .tox .tox-textfield:focus,
  1915. .tox .tox-listboxfield .tox-listbox--select:focus,
  1916. .tox .tox-textarea-wrap:focus-within,
  1917. .tox .tox-textarea:focus,
  1918. .tox .tox-custom-editor:focus-within {
  1919. background-color: #2b3b4e;
  1920. border-color: #207ab7;
  1921. box-shadow: none;
  1922. outline: 2px solid rgba(32, 122, 183, 0.25);
  1923. }
  1924. .tox .tox-toolbar-textfield {
  1925. border-width: 0;
  1926. margin-bottom: 3px;
  1927. margin-top: 2px;
  1928. max-width: 250px;
  1929. }
  1930. .tox .tox-naked-btn {
  1931. background-color: transparent;
  1932. border: 0;
  1933. border-color: transparent;
  1934. box-shadow: unset;
  1935. color: #207ab7;
  1936. cursor: pointer;
  1937. display: block;
  1938. margin: 0;
  1939. padding: 0;
  1940. }
  1941. .tox .tox-naked-btn svg {
  1942. display: block;
  1943. fill: #fff;
  1944. }
  1945. .tox:not([dir=rtl]) .tox-toolbar-textfield + * {
  1946. margin-left: 4px;
  1947. }
  1948. .tox[dir=rtl] .tox-toolbar-textfield + * {
  1949. margin-right: 4px;
  1950. }
  1951. .tox .tox-listboxfield {
  1952. cursor: pointer;
  1953. position: relative;
  1954. }
  1955. .tox .tox-listboxfield .tox-listbox--select[disabled] {
  1956. background-color: #19232e;
  1957. color: rgba(255, 255, 255, 0.85);
  1958. cursor: not-allowed;
  1959. }
  1960. .tox .tox-listbox__select-label {
  1961. cursor: default;
  1962. flex: 1;
  1963. margin: 0 4px;
  1964. }
  1965. .tox .tox-listbox__select-chevron {
  1966. align-items: center;
  1967. display: flex;
  1968. justify-content: center;
  1969. width: 16px;
  1970. }
  1971. .tox .tox-listbox__select-chevron svg {
  1972. fill: #fff;
  1973. }
  1974. .tox .tox-listboxfield .tox-listbox--select {
  1975. align-items: center;
  1976. display: flex;
  1977. }
  1978. .tox:not([dir=rtl]) .tox-listboxfield svg {
  1979. right: 8px;
  1980. }
  1981. .tox[dir=rtl] .tox-listboxfield svg {
  1982. left: 8px;
  1983. }
  1984. .tox .tox-selectfield {
  1985. cursor: pointer;
  1986. position: relative;
  1987. }
  1988. .tox .tox-selectfield select {
  1989. -webkit-appearance: none;
  1990. -moz-appearance: none;
  1991. appearance: none;
  1992. background-color: #2b3b4e;
  1993. border-color: #000000;
  1994. border-radius: 3px;
  1995. border-style: solid;
  1996. border-width: 1px;
  1997. box-shadow: none;
  1998. box-sizing: border-box;
  1999. color: #fff;
  2000. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2001. font-size: 16px;
  2002. line-height: 24px;
  2003. margin: 0;
  2004. min-height: 34px;
  2005. outline: none;
  2006. padding: 5px 4.75px;
  2007. resize: none;
  2008. width: 100%;
  2009. }
  2010. .tox .tox-selectfield select[disabled] {
  2011. background-color: #19232e;
  2012. color: rgba(255, 255, 255, 0.85);
  2013. cursor: not-allowed;
  2014. }
  2015. .tox .tox-selectfield select::-ms-expand {
  2016. display: none;
  2017. }
  2018. .tox .tox-selectfield select:focus {
  2019. background-color: #2b3b4e;
  2020. border-color: #207ab7;
  2021. box-shadow: none;
  2022. outline: 2px solid rgba(32, 122, 183, 0.25);
  2023. }
  2024. .tox .tox-selectfield svg {
  2025. pointer-events: none;
  2026. position: absolute;
  2027. top: 50%;
  2028. transform: translateY(-50%);
  2029. }
  2030. .tox:not([dir=rtl]) .tox-selectfield select[size="0"],
  2031. .tox:not([dir=rtl]) .tox-selectfield select[size="1"] {
  2032. padding-right: 24px;
  2033. }
  2034. .tox:not([dir=rtl]) .tox-selectfield svg {
  2035. right: 8px;
  2036. }
  2037. .tox[dir=rtl] .tox-selectfield select[size="0"],
  2038. .tox[dir=rtl] .tox-selectfield select[size="1"] {
  2039. padding-left: 24px;
  2040. }
  2041. .tox[dir=rtl] .tox-selectfield svg {
  2042. left: 8px;
  2043. }
  2044. .tox .tox-textarea-wrap {
  2045. border-color: #000000;
  2046. border-radius: 3px;
  2047. border-style: solid;
  2048. border-width: 1px;
  2049. display: flex;
  2050. flex: 1;
  2051. overflow: hidden;
  2052. }
  2053. .tox .tox-textarea {
  2054. -webkit-appearance: textarea;
  2055. -moz-appearance: textarea;
  2056. appearance: textarea;
  2057. white-space: pre-wrap;
  2058. }
  2059. .tox .tox-textarea-wrap .tox-textarea {
  2060. border: none;
  2061. }
  2062. .tox .tox-textarea-wrap .tox-textarea:focus {
  2063. border: none;
  2064. }
  2065. .tox-fullscreen {
  2066. border: 0;
  2067. height: 100%;
  2068. margin: 0;
  2069. overflow: hidden;
  2070. overscroll-behavior: none;
  2071. padding: 0;
  2072. touch-action: pinch-zoom;
  2073. width: 100%;
  2074. }
  2075. .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle {
  2076. display: none;
  2077. }
  2078. .tox.tox-tinymce.tox-fullscreen,
  2079. .tox-shadowhost.tox-fullscreen {
  2080. left: 0;
  2081. position: fixed;
  2082. top: 0;
  2083. z-index: 1200;
  2084. }
  2085. .tox.tox-tinymce.tox-fullscreen {
  2086. background-color: transparent;
  2087. }
  2088. .tox-fullscreen .tox.tox-tinymce-aux,
  2089. .tox-fullscreen ~ .tox.tox-tinymce-aux {
  2090. z-index: 1201;
  2091. }
  2092. .tox .tox-help__more-link {
  2093. list-style: none;
  2094. margin-top: 1em;
  2095. }
  2096. .tox .tox-imagepreview {
  2097. background-color: #666;
  2098. height: 380px;
  2099. overflow: hidden;
  2100. position: relative;
  2101. width: 100%;
  2102. }
  2103. .tox .tox-imagepreview.tox-imagepreview__loaded {
  2104. overflow: auto;
  2105. }
  2106. .tox .tox-imagepreview__container {
  2107. display: flex;
  2108. left: 100vw;
  2109. position: absolute;
  2110. top: 100vw;
  2111. }
  2112. .tox .tox-imagepreview__image {
  2113. background: url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==);
  2114. }
  2115. .tox .tox-image-tools .tox-spacer {
  2116. flex: 1;
  2117. }
  2118. .tox .tox-image-tools .tox-bar {
  2119. align-items: center;
  2120. display: flex;
  2121. height: 60px;
  2122. justify-content: center;
  2123. }
  2124. .tox .tox-image-tools .tox-imagepreview,
  2125. .tox .tox-image-tools .tox-imagepreview + .tox-bar {
  2126. margin-top: 8px;
  2127. }
  2128. .tox .tox-image-tools .tox-croprect-block {
  2129. background: black;
  2130. filter: alpha(opacity=50);
  2131. opacity: 0.5;
  2132. position: absolute;
  2133. zoom: 1;
  2134. }
  2135. .tox .tox-image-tools .tox-croprect-handle {
  2136. border: 2px solid white;
  2137. height: 20px;
  2138. left: 0;
  2139. position: absolute;
  2140. top: 0;
  2141. width: 20px;
  2142. }
  2143. .tox .tox-image-tools .tox-croprect-handle-move {
  2144. border: 0;
  2145. cursor: move;
  2146. position: absolute;
  2147. }
  2148. .tox .tox-image-tools .tox-croprect-handle-nw {
  2149. border-width: 2px 0 0 2px;
  2150. cursor: nw-resize;
  2151. left: 100px;
  2152. margin: -2px 0 0 -2px;
  2153. top: 100px;
  2154. }
  2155. .tox .tox-image-tools .tox-croprect-handle-ne {
  2156. border-width: 2px 2px 0 0;
  2157. cursor: ne-resize;
  2158. left: 200px;
  2159. margin: -2px 0 0 -20px;
  2160. top: 100px;
  2161. }
  2162. .tox .tox-image-tools .tox-croprect-handle-sw {
  2163. border-width: 0 0 2px 2px;
  2164. cursor: sw-resize;
  2165. left: 100px;
  2166. margin: -20px 2px 0 -2px;
  2167. top: 200px;
  2168. }
  2169. .tox .tox-image-tools .tox-croprect-handle-se {
  2170. border-width: 0 2px 2px 0;
  2171. cursor: se-resize;
  2172. left: 200px;
  2173. margin: -20px 0 0 -20px;
  2174. top: 200px;
  2175. }
  2176. .tox .tox-insert-table-picker {
  2177. display: flex;
  2178. flex-wrap: wrap;
  2179. width: 170px;
  2180. }
  2181. .tox .tox-insert-table-picker > div {
  2182. border-color: #000000;
  2183. border-style: solid;
  2184. border-width: 0 1px 1px 0;
  2185. box-sizing: border-box;
  2186. height: 17px;
  2187. width: 17px;
  2188. }
  2189. .tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
  2190. margin: 0 -4px;
  2191. }
  2192. .tox .tox-insert-table-picker .tox-insert-table-picker__selected {
  2193. background-color: rgba(32, 122, 183, 0.5);
  2194. border-color: rgba(32, 122, 183, 0.5);
  2195. }
  2196. .tox .tox-insert-table-picker__label {
  2197. color: #fff;
  2198. display: block;
  2199. font-size: 14px;
  2200. padding: 4px;
  2201. text-align: center;
  2202. width: 100%;
  2203. }
  2204. .tox:not([dir=rtl]) {
  2205. /* stylelint-disable-next-line no-descending-specificity */
  2206. }
  2207. .tox:not([dir=rtl]) .tox-insert-table-picker > div:nth-child(10n) {
  2208. border-right: 0;
  2209. }
  2210. .tox[dir=rtl] {
  2211. /* stylelint-disable-next-line no-descending-specificity */
  2212. }
  2213. .tox[dir=rtl] .tox-insert-table-picker > div:nth-child(10n+1) {
  2214. border-right: 0;
  2215. }
  2216. .tox {
  2217. /* stylelint-disable */
  2218. /* stylelint-enable */
  2219. }
  2220. .tox .tox-menu {
  2221. background-color: #2b3b4e;
  2222. border: 1px solid #000000;
  2223. border-radius: 3px;
  2224. box-shadow: 0 4px 8px 0 rgba(42, 55, 70, 0.1);
  2225. display: inline-block;
  2226. overflow: hidden;
  2227. vertical-align: top;
  2228. z-index: 1150;
  2229. }
  2230. .tox .tox-menu.tox-collection.tox-collection--list {
  2231. padding: 0 0;
  2232. }
  2233. .tox .tox-menu.tox-collection.tox-collection--toolbar {
  2234. padding: 4px;
  2235. }
  2236. .tox .tox-menu.tox-collection.tox-collection--grid {
  2237. padding: 4px;
  2238. }
  2239. @media only screen and (min-width: 768px ) {
  2240. .tox .tox-menu .tox-collection__item-label {
  2241. overflow-wrap: break-word;
  2242. word-break: normal;
  2243. }
  2244. }
  2245. .tox .tox-menu__label h1,
  2246. .tox .tox-menu__label h2,
  2247. .tox .tox-menu__label h3,
  2248. .tox .tox-menu__label h4,
  2249. .tox .tox-menu__label h5,
  2250. .tox .tox-menu__label h6,
  2251. .tox .tox-menu__label p,
  2252. .tox .tox-menu__label blockquote,
  2253. .tox .tox-menu__label code {
  2254. margin: 0;
  2255. }
  2256. .tox .tox-menubar {
  2257. 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;
  2258. background-color: #222f3e;
  2259. display: flex;
  2260. flex: 0 0 auto;
  2261. flex-shrink: 0;
  2262. flex-wrap: wrap;
  2263. grid-column: 1 / -1;
  2264. grid-row: 1;
  2265. padding: 0 4px 0 4px;
  2266. }
  2267. .tox .tox-promotion + .tox-menubar {
  2268. grid-column: 1;
  2269. }
  2270. .tox .tox-promotion {
  2271. 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;
  2272. background-color: #222f3e;
  2273. grid-column: 2;
  2274. grid-row: 1;
  2275. padding-inline-end: 8px;
  2276. padding-inline-start: 4px;
  2277. padding-top: 5px;
  2278. }
  2279. .tox .tox-promotion-link {
  2280. align-items: unsafe center;
  2281. background-color: #E8F1F8;
  2282. border-radius: 5px;
  2283. color: #086BE6;
  2284. cursor: pointer;
  2285. display: flex;
  2286. font-size: 14px;
  2287. height: 26.6px;
  2288. padding: 4px 8px;
  2289. white-space: nowrap;
  2290. }
  2291. .tox .tox-promotion-link:hover {
  2292. background-color: #B4D7FF;
  2293. }
  2294. .tox .tox-promotion-link:focus {
  2295. background-color: #D9EDF7;
  2296. }
  2297. /* Deprecated. Remove in next major release */
  2298. .tox .tox-mbtn {
  2299. align-items: center;
  2300. background: transparent;
  2301. border: 0;
  2302. border-radius: 3px;
  2303. box-shadow: none;
  2304. color: #fff;
  2305. display: flex;
  2306. flex: 0 0 auto;
  2307. font-size: 14px;
  2308. font-style: normal;
  2309. font-weight: normal;
  2310. height: 34px;
  2311. justify-content: center;
  2312. margin: 2px 0 3px 0;
  2313. outline: none;
  2314. overflow: hidden;
  2315. padding: 0 4px;
  2316. text-transform: none;
  2317. width: auto;
  2318. }
  2319. .tox .tox-mbtn[disabled] {
  2320. background-color: transparent;
  2321. border: 0;
  2322. box-shadow: none;
  2323. color: rgba(255, 255, 255, 0.5);
  2324. cursor: not-allowed;
  2325. }
  2326. .tox .tox-mbtn:focus:not(:disabled) {
  2327. background: #4a5562;
  2328. border: 0;
  2329. box-shadow: none;
  2330. color: #fff;
  2331. }
  2332. .tox .tox-mbtn--active {
  2333. background: #757d87;
  2334. border: 0;
  2335. box-shadow: none;
  2336. color: #fff;
  2337. }
  2338. .tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
  2339. background: #4a5562;
  2340. border: 0;
  2341. box-shadow: none;
  2342. color: #fff;
  2343. }
  2344. .tox .tox-mbtn__select-label {
  2345. cursor: default;
  2346. font-weight: normal;
  2347. margin: 0 4px;
  2348. }
  2349. .tox .tox-mbtn[disabled] .tox-mbtn__select-label {
  2350. cursor: not-allowed;
  2351. }
  2352. .tox .tox-mbtn__select-chevron {
  2353. align-items: center;
  2354. display: flex;
  2355. justify-content: center;
  2356. width: 16px;
  2357. display: none;
  2358. }
  2359. .tox .tox-notification {
  2360. border-radius: 3px;
  2361. border-style: solid;
  2362. border-width: 1px;
  2363. box-shadow: none;
  2364. box-sizing: border-box;
  2365. display: grid;
  2366. font-size: 14px;
  2367. font-weight: normal;
  2368. grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  2369. margin-top: 4px;
  2370. opacity: 0;
  2371. padding: 4px;
  2372. transition: transform 100ms ease-in, opacity 150ms ease-in;
  2373. }
  2374. .tox .tox-notification p {
  2375. font-size: 14px;
  2376. font-weight: normal;
  2377. }
  2378. .tox .tox-notification a {
  2379. cursor: pointer;
  2380. text-decoration: underline;
  2381. }
  2382. .tox .tox-notification--in {
  2383. opacity: 1;
  2384. }
  2385. .tox .tox-notification--success {
  2386. background-color: #334840;
  2387. border-color: #3c5440;
  2388. color: #fff;
  2389. }
  2390. .tox .tox-notification--success p {
  2391. color: #fff;
  2392. }
  2393. .tox .tox-notification--success a {
  2394. color: #b5d199;
  2395. }
  2396. .tox .tox-notification--success svg {
  2397. fill: #fff;
  2398. }
  2399. .tox .tox-notification--error {
  2400. background-color: #442632;
  2401. border-color: #55212b;
  2402. color: #fff;
  2403. }
  2404. .tox .tox-notification--error p {
  2405. color: #fff;
  2406. }
  2407. .tox .tox-notification--error a {
  2408. color: #e68080;
  2409. }
  2410. .tox .tox-notification--error svg {
  2411. fill: #fff;
  2412. }
  2413. .tox .tox-notification--warn,
  2414. .tox .tox-notification--warning {
  2415. background-color: #222f3e;
  2416. border-color: #000000;
  2417. color: #fff0b3;
  2418. }
  2419. .tox .tox-notification--warn p,
  2420. .tox .tox-notification--warning p {
  2421. color: #fff0b3;
  2422. }
  2423. .tox .tox-notification--warn a,
  2424. .tox .tox-notification--warning a {
  2425. color: #ffcc00;
  2426. }
  2427. .tox .tox-notification--warn svg,
  2428. .tox .tox-notification--warning svg {
  2429. fill: #fff0b3;
  2430. }
  2431. .tox .tox-notification--info {
  2432. background-color: #254161;
  2433. border-color: #264972;
  2434. color: #fff;
  2435. }
  2436. .tox .tox-notification--info p {
  2437. color: #fff;
  2438. }
  2439. .tox .tox-notification--info a {
  2440. color: #83b7f3;
  2441. }
  2442. .tox .tox-notification--info svg {
  2443. fill: #fff;
  2444. }
  2445. .tox .tox-notification__body {
  2446. align-self: center;
  2447. color: #fff;
  2448. font-size: 14px;
  2449. grid-column-end: 3;
  2450. grid-column-start: 2;
  2451. grid-row-end: 2;
  2452. grid-row-start: 1;
  2453. text-align: center;
  2454. white-space: normal;
  2455. word-break: break-all;
  2456. word-break: break-word;
  2457. }
  2458. .tox .tox-notification__body > * {
  2459. margin: 0;
  2460. }
  2461. .tox .tox-notification__body > * + * {
  2462. margin-top: 1rem;
  2463. }
  2464. .tox .tox-notification__icon {
  2465. align-self: center;
  2466. grid-column-end: 2;
  2467. grid-column-start: 1;
  2468. grid-row-end: 2;
  2469. grid-row-start: 1;
  2470. justify-self: end;
  2471. }
  2472. .tox .tox-notification__icon svg {
  2473. display: block;
  2474. }
  2475. .tox .tox-notification__dismiss {
  2476. align-self: start;
  2477. grid-column-end: 4;
  2478. grid-column-start: 3;
  2479. grid-row-end: 2;
  2480. grid-row-start: 1;
  2481. justify-self: end;
  2482. }
  2483. .tox .tox-notification .tox-progress-bar {
  2484. grid-column-end: 4;
  2485. grid-column-start: 1;
  2486. grid-row-end: 3;
  2487. grid-row-start: 2;
  2488. justify-self: center;
  2489. }
  2490. .tox .tox-pop {
  2491. display: inline-block;
  2492. position: relative;
  2493. }
  2494. .tox .tox-pop--resizing {
  2495. transition: width 0.1s ease;
  2496. }
  2497. .tox .tox-pop--resizing .tox-toolbar,
  2498. .tox .tox-pop--resizing .tox-toolbar__group {
  2499. flex-wrap: nowrap;
  2500. }
  2501. .tox .tox-pop--transition {
  2502. transition: 0.15s ease;
  2503. transition-property: left, right, top, bottom;
  2504. }
  2505. .tox .tox-pop--transition::before,
  2506. .tox .tox-pop--transition::after {
  2507. transition: all 0.15s, visibility 0s, opacity 0.075s ease 0.075s;
  2508. }
  2509. .tox .tox-pop__dialog {
  2510. background-color: #222f3e;
  2511. border: 1px solid #000000;
  2512. border-radius: 3px;
  2513. box-shadow: 0 0 2px 0 rgba(42, 55, 70, 0.2), 0 4px 8px 0 rgba(42, 55, 70, 0.15);
  2514. min-width: 0;
  2515. overflow: hidden;
  2516. }
  2517. .tox .tox-pop__dialog > *:not(.tox-toolbar) {
  2518. margin: 4px 4px 4px 8px;
  2519. }
  2520. .tox .tox-pop__dialog .tox-toolbar {
  2521. background-color: transparent;
  2522. margin-bottom: -1px;
  2523. }
  2524. .tox .tox-pop::before,
  2525. .tox .tox-pop::after {
  2526. border-style: solid;
  2527. content: '';
  2528. display: block;
  2529. height: 0;
  2530. opacity: 1;
  2531. position: absolute;
  2532. width: 0;
  2533. }
  2534. .tox .tox-pop.tox-pop--inset::before,
  2535. .tox .tox-pop.tox-pop--inset::after {
  2536. opacity: 0;
  2537. transition: all 0s 0.15s, visibility 0s, opacity 0.075s ease;
  2538. }
  2539. .tox .tox-pop.tox-pop--bottom::before,
  2540. .tox .tox-pop.tox-pop--bottom::after {
  2541. left: 50%;
  2542. top: 100%;
  2543. }
  2544. .tox .tox-pop.tox-pop--bottom::after {
  2545. border-color: #222f3e transparent transparent transparent;
  2546. border-width: 8px;
  2547. margin-left: -8px;
  2548. margin-top: -1px;
  2549. }
  2550. .tox .tox-pop.tox-pop--bottom::before {
  2551. border-color: #000000 transparent transparent transparent;
  2552. border-width: 9px;
  2553. margin-left: -9px;
  2554. }
  2555. .tox .tox-pop.tox-pop--top::before,
  2556. .tox .tox-pop.tox-pop--top::after {
  2557. left: 50%;
  2558. top: 0;
  2559. transform: translateY(-100%);
  2560. }
  2561. .tox .tox-pop.tox-pop--top::after {
  2562. border-color: transparent transparent #222f3e transparent;
  2563. border-width: 8px;
  2564. margin-left: -8px;
  2565. margin-top: 1px;
  2566. }
  2567. .tox .tox-pop.tox-pop--top::before {
  2568. border-color: transparent transparent #000000 transparent;
  2569. border-width: 9px;
  2570. margin-left: -9px;
  2571. }
  2572. .tox .tox-pop.tox-pop--left::before,
  2573. .tox .tox-pop.tox-pop--left::after {
  2574. left: 0;
  2575. top: calc(50% - 1px);
  2576. transform: translateY(-50%);
  2577. }
  2578. .tox .tox-pop.tox-pop--left::after {
  2579. border-color: transparent #222f3e transparent transparent;
  2580. border-width: 8px;
  2581. margin-left: -15px;
  2582. }
  2583. .tox .tox-pop.tox-pop--left::before {
  2584. border-color: transparent #000000 transparent transparent;
  2585. border-width: 10px;
  2586. margin-left: -19px;
  2587. }
  2588. .tox .tox-pop.tox-pop--right::before,
  2589. .tox .tox-pop.tox-pop--right::after {
  2590. left: 100%;
  2591. top: calc(50% + 1px);
  2592. transform: translateY(-50%);
  2593. }
  2594. .tox .tox-pop.tox-pop--right::after {
  2595. border-color: transparent transparent transparent #222f3e;
  2596. border-width: 8px;
  2597. margin-left: -1px;
  2598. }
  2599. .tox .tox-pop.tox-pop--right::before {
  2600. border-color: transparent transparent transparent #000000;
  2601. border-width: 10px;
  2602. margin-left: -1px;
  2603. }
  2604. .tox .tox-pop.tox-pop--align-left::before,
  2605. .tox .tox-pop.tox-pop--align-left::after {
  2606. left: 20px;
  2607. }
  2608. .tox .tox-pop.tox-pop--align-right::before,
  2609. .tox .tox-pop.tox-pop--align-right::after {
  2610. left: calc(100% - 20px);
  2611. }
  2612. .tox .tox-sidebar-wrap {
  2613. display: flex;
  2614. flex-direction: row;
  2615. flex-grow: 1;
  2616. min-height: 0;
  2617. }
  2618. .tox .tox-sidebar {
  2619. background-color: #222f3e;
  2620. display: flex;
  2621. flex-direction: row;
  2622. justify-content: flex-end;
  2623. }
  2624. .tox .tox-sidebar__slider {
  2625. display: flex;
  2626. overflow: hidden;
  2627. }
  2628. .tox .tox-sidebar__pane-container {
  2629. display: flex;
  2630. }
  2631. .tox .tox-sidebar__pane {
  2632. display: flex;
  2633. }
  2634. .tox .tox-sidebar--sliding-closed {
  2635. opacity: 0;
  2636. }
  2637. .tox .tox-sidebar--sliding-open {
  2638. opacity: 1;
  2639. }
  2640. .tox .tox-sidebar--sliding-growing,
  2641. .tox .tox-sidebar--sliding-shrinking {
  2642. transition: width 0.5s ease, opacity 0.5s ease;
  2643. }
  2644. .tox .tox-selector {
  2645. background-color: #4099ff;
  2646. border-color: #4099ff;
  2647. border-style: solid;
  2648. border-width: 1px;
  2649. box-sizing: border-box;
  2650. display: inline-block;
  2651. height: 10px;
  2652. position: absolute;
  2653. width: 10px;
  2654. }
  2655. .tox.tox-platform-touch .tox-selector {
  2656. height: 12px;
  2657. width: 12px;
  2658. }
  2659. .tox .tox-slider {
  2660. align-items: center;
  2661. display: flex;
  2662. flex: 1;
  2663. height: 24px;
  2664. justify-content: center;
  2665. position: relative;
  2666. }
  2667. .tox .tox-slider__rail {
  2668. background-color: transparent;
  2669. border: 1px solid #000000;
  2670. border-radius: 3px;
  2671. height: 10px;
  2672. min-width: 120px;
  2673. width: 100%;
  2674. }
  2675. .tox .tox-slider__handle {
  2676. background-color: #207ab7;
  2677. border: 2px solid #185d8c;
  2678. border-radius: 3px;
  2679. box-shadow: none;
  2680. height: 24px;
  2681. left: 50%;
  2682. position: absolute;
  2683. top: 50%;
  2684. transform: translateX(-50%) translateY(-50%);
  2685. width: 14px;
  2686. }
  2687. .tox .tox-form__controls-h-stack > .tox-slider:not(:first-of-type) {
  2688. margin-inline-start: 8px;
  2689. }
  2690. .tox .tox-form__controls-h-stack > .tox-form__group + .tox-slider {
  2691. margin-inline-start: 32px;
  2692. }
  2693. .tox .tox-form__controls-h-stack > .tox-slider + .tox-form__group {
  2694. margin-inline-start: 32px;
  2695. }
  2696. .tox .tox-source-code {
  2697. overflow: auto;
  2698. }
  2699. .tox .tox-spinner {
  2700. display: flex;
  2701. }
  2702. .tox .tox-spinner > div {
  2703. animation: tam-bouncing-dots 1.5s ease-in-out 0s infinite both;
  2704. background-color: rgba(255, 255, 255, 0.5);
  2705. border-radius: 100%;
  2706. height: 8px;
  2707. width: 8px;
  2708. }
  2709. .tox .tox-spinner > div:nth-child(1) {
  2710. animation-delay: -0.32s;
  2711. }
  2712. .tox .tox-spinner > div:nth-child(2) {
  2713. animation-delay: -0.16s;
  2714. }
  2715. @keyframes tam-bouncing-dots {
  2716. 0%,
  2717. 80%,
  2718. 100% {
  2719. transform: scale(0);
  2720. }
  2721. 40% {
  2722. transform: scale(1);
  2723. }
  2724. }
  2725. .tox:not([dir=rtl]) .tox-spinner > div:not(:first-child) {
  2726. margin-left: 4px;
  2727. }
  2728. .tox[dir=rtl] .tox-spinner > div:not(:first-child) {
  2729. margin-right: 4px;
  2730. }
  2731. .tox .tox-statusbar {
  2732. align-items: center;
  2733. background-color: #222f3e;
  2734. border-top: 1px solid #000000;
  2735. color: #fff;
  2736. display: flex;
  2737. flex: 0 0 auto;
  2738. font-size: 12px;
  2739. font-weight: normal;
  2740. height: 18px;
  2741. overflow: hidden;
  2742. padding: 0 8px;
  2743. position: relative;
  2744. text-transform: uppercase;
  2745. }
  2746. .tox .tox-statusbar__text-container {
  2747. display: flex;
  2748. flex: 1 1 auto;
  2749. justify-content: flex-end;
  2750. overflow: hidden;
  2751. }
  2752. .tox .tox-statusbar__path {
  2753. display: flex;
  2754. flex: 1 1 auto;
  2755. margin-right: auto;
  2756. overflow: hidden;
  2757. text-overflow: ellipsis;
  2758. white-space: nowrap;
  2759. }
  2760. .tox .tox-statusbar__path > * {
  2761. display: inline;
  2762. white-space: nowrap;
  2763. }
  2764. .tox .tox-statusbar__wordcount {
  2765. flex: 0 0 auto;
  2766. margin-left: 1ch;
  2767. }
  2768. .tox .tox-statusbar a,
  2769. .tox .tox-statusbar__path-item,
  2770. .tox .tox-statusbar__wordcount {
  2771. color: #fff;
  2772. text-decoration: none;
  2773. }
  2774. .tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),
  2775. .tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),
  2776. .tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),
  2777. .tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),
  2778. .tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),
  2779. .tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]) {
  2780. color: #fff;
  2781. cursor: pointer;
  2782. }
  2783. .tox .tox-statusbar__branding svg {
  2784. fill: rgba(255, 255, 255, 0.8);
  2785. height: 1.14em;
  2786. vertical-align: -0.28em;
  2787. width: 3.6em;
  2788. }
  2789. .tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg,
  2790. .tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg {
  2791. fill: #fff;
  2792. }
  2793. .tox .tox-statusbar__resize-handle {
  2794. align-items: flex-end;
  2795. align-self: stretch;
  2796. cursor: nwse-resize;
  2797. display: flex;
  2798. flex: 0 0 auto;
  2799. justify-content: flex-end;
  2800. margin-left: auto;
  2801. margin-right: -8px;
  2802. padding-bottom: 3px;
  2803. padding-left: 1ch;
  2804. padding-right: 3px;
  2805. }
  2806. .tox .tox-statusbar__resize-handle svg {
  2807. display: block;
  2808. fill: rgba(255, 255, 255, 0.5);
  2809. }
  2810. .tox .tox-statusbar__resize-handle:focus svg {
  2811. background-color: #4a5562;
  2812. border-radius: 1px 1px -4px 1px;
  2813. box-shadow: 0 0 0 2px #4a5562;
  2814. }
  2815. .tox:not([dir=rtl]) .tox-statusbar__path > * {
  2816. margin-right: 4px;
  2817. }
  2818. .tox:not([dir=rtl]) .tox-statusbar__branding {
  2819. margin-left: 2ch;
  2820. }
  2821. .tox[dir=rtl] .tox-statusbar {
  2822. flex-direction: row-reverse;
  2823. }
  2824. .tox[dir=rtl] .tox-statusbar__path > * {
  2825. margin-left: 4px;
  2826. }
  2827. .tox .tox-throbber {
  2828. z-index: 1299;
  2829. }
  2830. .tox .tox-throbber__busy-spinner {
  2831. align-items: center;
  2832. background-color: rgba(34, 47, 62, 0.6);
  2833. bottom: 0;
  2834. display: flex;
  2835. justify-content: center;
  2836. left: 0;
  2837. position: absolute;
  2838. right: 0;
  2839. top: 0;
  2840. }
  2841. .tox .tox-tbtn {
  2842. align-items: center;
  2843. background: transparent;
  2844. border: 0;
  2845. border-radius: 3px;
  2846. box-shadow: none;
  2847. color: #fff;
  2848. display: flex;
  2849. flex: 0 0 auto;
  2850. font-size: 14px;
  2851. font-style: normal;
  2852. font-weight: normal;
  2853. height: 34px;
  2854. justify-content: center;
  2855. margin: 3px 0 2px 0;
  2856. outline: none;
  2857. overflow: hidden;
  2858. padding: 0;
  2859. text-transform: none;
  2860. width: 34px;
  2861. }
  2862. .tox .tox-tbtn svg {
  2863. display: block;
  2864. fill: #fff;
  2865. }
  2866. .tox .tox-tbtn.tox-tbtn-more {
  2867. padding-left: 5px;
  2868. padding-right: 5px;
  2869. width: inherit;
  2870. }
  2871. .tox .tox-tbtn:focus {
  2872. background: #4a5562;
  2873. border: 0;
  2874. box-shadow: none;
  2875. }
  2876. .tox .tox-tbtn:hover {
  2877. background: #4a5562;
  2878. border: 0;
  2879. box-shadow: none;
  2880. color: #fff;
  2881. }
  2882. .tox .tox-tbtn:hover svg {
  2883. fill: #fff;
  2884. }
  2885. .tox .tox-tbtn:active {
  2886. background: #757d87;
  2887. border: 0;
  2888. box-shadow: none;
  2889. color: #fff;
  2890. }
  2891. .tox .tox-tbtn:active svg {
  2892. fill: #fff;
  2893. }
  2894. .tox .tox-tbtn--disabled,
  2895. .tox .tox-tbtn--disabled:hover,
  2896. .tox .tox-tbtn:disabled,
  2897. .tox .tox-tbtn:disabled:hover {
  2898. background: transparent;
  2899. border: 0;
  2900. box-shadow: none;
  2901. color: rgba(255, 255, 255, 0.5);
  2902. cursor: not-allowed;
  2903. }
  2904. .tox .tox-tbtn--disabled svg,
  2905. .tox .tox-tbtn--disabled:hover svg,
  2906. .tox .tox-tbtn:disabled svg,
  2907. .tox .tox-tbtn:disabled:hover svg {
  2908. /* stylelint-disable-line no-descending-specificity */
  2909. fill: rgba(255, 255, 255, 0.5);
  2910. }
  2911. .tox .tox-tbtn--enabled,
  2912. .tox .tox-tbtn--enabled:hover {
  2913. background: #757d87;
  2914. border: 0;
  2915. box-shadow: none;
  2916. color: #fff;
  2917. }
  2918. .tox .tox-tbtn--enabled > *,
  2919. .tox .tox-tbtn--enabled:hover > * {
  2920. transform: none;
  2921. }
  2922. .tox .tox-tbtn--enabled svg,
  2923. .tox .tox-tbtn--enabled:hover svg {
  2924. /* stylelint-disable-line no-descending-specificity */
  2925. fill: #fff;
  2926. }
  2927. .tox .tox-tbtn:focus:not(.tox-tbtn--disabled) {
  2928. color: #fff;
  2929. }
  2930. .tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg {
  2931. fill: #fff;
  2932. }
  2933. .tox .tox-tbtn:active > * {
  2934. transform: none;
  2935. }
  2936. .tox .tox-tbtn--md {
  2937. height: 51px;
  2938. width: 51px;
  2939. }
  2940. .tox .tox-tbtn--lg {
  2941. flex-direction: column;
  2942. height: 68px;
  2943. width: 68px;
  2944. }
  2945. .tox .tox-tbtn--return {
  2946. align-self: stretch;
  2947. height: unset;
  2948. width: 16px;
  2949. }
  2950. .tox .tox-tbtn--labeled {
  2951. padding: 0 4px;
  2952. width: unset;
  2953. }
  2954. .tox .tox-tbtn__vlabel {
  2955. display: block;
  2956. font-size: 10px;
  2957. font-weight: normal;
  2958. letter-spacing: -0.025em;
  2959. margin-bottom: 4px;
  2960. white-space: nowrap;
  2961. }
  2962. .tox .tox-number-input {
  2963. border-radius: 3px;
  2964. display: flex;
  2965. margin: 3px 0 2px 0;
  2966. padding: 0 4px;
  2967. width: auto;
  2968. }
  2969. .tox .tox-number-input .tox-input-wrapper {
  2970. background: transparent;
  2971. display: flex;
  2972. pointer-events: none;
  2973. text-align: center;
  2974. }
  2975. .tox .tox-number-input .tox-input-wrapper:focus {
  2976. background: #4a5562;
  2977. }
  2978. .tox .tox-number-input input {
  2979. border-radius: 3px;
  2980. color: #fff;
  2981. font-size: 14px;
  2982. margin: 2px 0;
  2983. pointer-events: all;
  2984. width: 60px;
  2985. }
  2986. .tox .tox-number-input input:hover {
  2987. background: #4a5562;
  2988. color: #fff;
  2989. }
  2990. .tox .tox-number-input input:focus {
  2991. background: #fff;
  2992. color: #2A3746;
  2993. }
  2994. .tox .tox-number-input button {
  2995. background: transparent;
  2996. color: #fff;
  2997. height: 34px;
  2998. text-align: center;
  2999. width: 24px;
  3000. }
  3001. .tox .tox-number-input button svg {
  3002. display: block;
  3003. fill: #fff;
  3004. margin: 0 auto;
  3005. transform: scale(0.67);
  3006. }
  3007. .tox .tox-number-input button:focus {
  3008. background: #4a5562;
  3009. }
  3010. .tox .tox-number-input button:hover {
  3011. background: #4a5562;
  3012. border: 0;
  3013. box-shadow: none;
  3014. color: #fff;
  3015. }
  3016. .tox .tox-number-input button:hover svg {
  3017. fill: #fff;
  3018. }
  3019. .tox .tox-number-input button:active {
  3020. background: #757d87;
  3021. border: 0;
  3022. box-shadow: none;
  3023. color: #fff;
  3024. }
  3025. .tox .tox-number-input button:active svg {
  3026. fill: #fff;
  3027. }
  3028. .tox .tox-number-input button.minus {
  3029. border-radius: 3px 0 0 3px;
  3030. }
  3031. .tox .tox-number-input button.plus {
  3032. border-radius: 0 3px 3px 0;
  3033. }
  3034. .tox .tox-number-input:focus:not(:active) > button,
  3035. .tox .tox-number-input:focus:not(:active) > .tox-input-wrapper {
  3036. background: #4a5562;
  3037. }
  3038. .tox .tox-tbtn--select {
  3039. margin: 3px 0 2px 0;
  3040. padding: 0 4px;
  3041. width: auto;
  3042. }
  3043. .tox .tox-tbtn__select-label {
  3044. cursor: default;
  3045. font-weight: normal;
  3046. height: initial;
  3047. margin: 0 4px;
  3048. overflow: hidden;
  3049. text-overflow: ellipsis;
  3050. white-space: nowrap;
  3051. }
  3052. .tox .tox-tbtn__select-chevron {
  3053. align-items: center;
  3054. display: flex;
  3055. justify-content: center;
  3056. width: 16px;
  3057. }
  3058. .tox .tox-tbtn__select-chevron svg {
  3059. fill: rgba(255, 255, 255, 0.5);
  3060. }
  3061. .tox .tox-tbtn--bespoke {
  3062. background: transparent;
  3063. }
  3064. .tox .tox-tbtn--bespoke + .tox-tbtn--bespoke {
  3065. margin-inline-start: 0;
  3066. }
  3067. .tox .tox-tbtn--bespoke .tox-tbtn__select-label {
  3068. overflow: hidden;
  3069. text-overflow: ellipsis;
  3070. white-space: nowrap;
  3071. width: 7em;
  3072. }
  3073. .tox .tox-split-button {
  3074. border: 0;
  3075. border-radius: 3px;
  3076. box-sizing: border-box;
  3077. display: flex;
  3078. margin: 3px 0 2px 0;
  3079. overflow: hidden;
  3080. }
  3081. .tox .tox-split-button:hover {
  3082. box-shadow: 0 0 0 1px #4a5562 inset;
  3083. }
  3084. .tox .tox-split-button:focus {
  3085. background: #4a5562;
  3086. box-shadow: none;
  3087. color: #fff;
  3088. }
  3089. .tox .tox-split-button > * {
  3090. border-radius: 0;
  3091. }
  3092. .tox .tox-split-button__chevron {
  3093. width: 16px;
  3094. }
  3095. .tox .tox-split-button__chevron svg {
  3096. fill: rgba(255, 255, 255, 0.5);
  3097. }
  3098. .tox .tox-split-button .tox-tbtn {
  3099. margin: 0;
  3100. }
  3101. .tox .tox-split-button.tox-tbtn--disabled:hover,
  3102. .tox .tox-split-button.tox-tbtn--disabled:focus,
  3103. .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,
  3104. .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus {
  3105. background: transparent;
  3106. box-shadow: none;
  3107. color: rgba(255, 255, 255, 0.5);
  3108. }
  3109. .tox.tox-platform-touch .tox-split-button .tox-tbtn--select {
  3110. padding: 0 0px;
  3111. }
  3112. .tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child {
  3113. width: 30px;
  3114. }
  3115. .tox.tox-platform-touch .tox-split-button__chevron {
  3116. width: 20px;
  3117. }
  3118. .tox .tox-toolbar-overlord {
  3119. background-color: #222f3e;
  3120. }
  3121. .tox .tox-toolbar,
  3122. .tox .tox-toolbar__primary,
  3123. .tox .tox-toolbar__overflow {
  3124. background-attachment: local;
  3125. background-color: #222f3e;
  3126. background-image: repeating-linear-gradient(#000000 0px 1px, transparent 1px 39px);
  3127. background-position: center top 39px;
  3128. background-repeat: no-repeat;
  3129. background-size: calc(100% - 4px * 2) calc(100% - 39px);
  3130. display: flex;
  3131. flex: 0 0 auto;
  3132. flex-shrink: 0;
  3133. flex-wrap: wrap;
  3134. padding: 0 0px;
  3135. transform: perspective(1px);
  3136. }
  3137. .tox .tox-toolbar-overlord > .tox-toolbar,
  3138. .tox .tox-toolbar-overlord > .tox-toolbar__primary,
  3139. .tox .tox-toolbar-overlord > .tox-toolbar__overflow {
  3140. background-position: center top 0px;
  3141. background-size: calc(100% - 4px * 2) calc(100% - 0px);
  3142. }
  3143. .tox .tox-toolbar__overflow.tox-toolbar__overflow--closed {
  3144. height: 0;
  3145. opacity: 0;
  3146. padding-bottom: 0;
  3147. padding-top: 0;
  3148. visibility: hidden;
  3149. }
  3150. .tox .tox-toolbar__overflow--growing {
  3151. transition: height 0.3s ease, opacity 0.2s linear 0.1s;
  3152. }
  3153. .tox .tox-toolbar__overflow--shrinking {
  3154. transition: opacity 0.3s ease, height 0.2s linear 0.1s, visibility 0s linear 0.3s;
  3155. }
  3156. .tox .tox-toolbar-overlord,
  3157. .tox .tox-anchorbar {
  3158. grid-column: 1 / -1;
  3159. }
  3160. .tox .tox-menubar + .tox-toolbar,
  3161. .tox .tox-menubar + .tox-toolbar-overlord {
  3162. border-top: 1px solid #000000;
  3163. margin-top: -1px;
  3164. padding-bottom: 0px;
  3165. padding-top: 0px;
  3166. }
  3167. .tox .tox-toolbar--scrolling {
  3168. flex-wrap: nowrap;
  3169. overflow-x: auto;
  3170. }
  3171. .tox .tox-pop .tox-toolbar {
  3172. border-width: 0;
  3173. }
  3174. .tox .tox-toolbar--no-divider {
  3175. background-image: none;
  3176. }
  3177. .tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,
  3178. .tox .tox-toolbar-overlord .tox-toolbar__primary {
  3179. background-position: center top 39px;
  3180. }
  3181. .tox .tox-editor-header > .tox-toolbar--scrolling,
  3182. .tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child {
  3183. background-image: none;
  3184. }
  3185. .tox.tox-tinymce-aux .tox-toolbar__overflow {
  3186. background-color: #222f3e;
  3187. background-position: center top 43px;
  3188. background-size: calc(100% - 8px * 2) calc(100% - 51px);
  3189. border: none;
  3190. border-radius: 3px;
  3191. box-shadow: 0 0 2px 0 rgba(42, 55, 70, 0.2), 0 4px 8px 0 rgba(42, 55, 70, 0.15);
  3192. overscroll-behavior: none;
  3193. padding: 4px 0;
  3194. }
  3195. .tox-pop .tox-pop__dialog {
  3196. /* stylelint-disable-next-line no-descending-specificity */
  3197. }
  3198. .tox-pop .tox-pop__dialog .tox-toolbar {
  3199. background-position: center top 43px;
  3200. background-size: calc(100% - 4px * 2) calc(100% - 51px);
  3201. padding: 4px 0;
  3202. }
  3203. .tox .tox-toolbar__group {
  3204. align-items: center;
  3205. display: flex;
  3206. flex-wrap: wrap;
  3207. margin: 0 0;
  3208. padding: 0 4px 0 4px;
  3209. }
  3210. .tox .tox-toolbar__group--pull-right {
  3211. margin-left: auto;
  3212. }
  3213. .tox .tox-toolbar--scrolling .tox-toolbar__group {
  3214. flex-shrink: 0;
  3215. flex-wrap: nowrap;
  3216. }
  3217. .tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
  3218. border-right: 1px solid #000000;
  3219. }
  3220. .tox[dir=rtl] .tox-toolbar__group:not(:last-of-type) {
  3221. border-left: 1px solid #000000;
  3222. }
  3223. .tox .tox-tooltip {
  3224. display: inline-block;
  3225. padding: 8px;
  3226. position: relative;
  3227. }
  3228. .tox .tox-tooltip__body {
  3229. background-color: #3d546f;
  3230. border-radius: 3px;
  3231. box-shadow: 0 2px 4px rgba(42, 55, 70, 0.3);
  3232. color: rgba(255, 255, 255, 0.75);
  3233. font-size: 14px;
  3234. font-style: normal;
  3235. font-weight: normal;
  3236. padding: 4px 8px;
  3237. text-transform: none;
  3238. }
  3239. .tox .tox-tooltip__arrow {
  3240. position: absolute;
  3241. }
  3242. .tox .tox-tooltip--down .tox-tooltip__arrow {
  3243. border-left: 8px solid transparent;
  3244. border-right: 8px solid transparent;
  3245. border-top: 8px solid #3d546f;
  3246. bottom: 0;
  3247. left: 50%;
  3248. position: absolute;
  3249. transform: translateX(-50%);
  3250. }
  3251. .tox .tox-tooltip--up .tox-tooltip__arrow {
  3252. border-bottom: 8px solid #3d546f;
  3253. border-left: 8px solid transparent;
  3254. border-right: 8px solid transparent;
  3255. left: 50%;
  3256. position: absolute;
  3257. top: 0;
  3258. transform: translateX(-50%);
  3259. }
  3260. .tox .tox-tooltip--right .tox-tooltip__arrow {
  3261. border-bottom: 8px solid transparent;
  3262. border-left: 8px solid #3d546f;
  3263. border-top: 8px solid transparent;
  3264. position: absolute;
  3265. right: 0;
  3266. top: 50%;
  3267. transform: translateY(-50%);
  3268. }
  3269. .tox .tox-tooltip--left .tox-tooltip__arrow {
  3270. border-bottom: 8px solid transparent;
  3271. border-right: 8px solid #3d546f;
  3272. border-top: 8px solid transparent;
  3273. left: 0;
  3274. position: absolute;
  3275. top: 50%;
  3276. transform: translateY(-50%);
  3277. }
  3278. .tox .tox-tree {
  3279. display: flex;
  3280. flex-direction: column;
  3281. }
  3282. .tox .tox-tree .tox-trbtn {
  3283. align-items: center;
  3284. background: transparent;
  3285. border: 0;
  3286. border-radius: 4px;
  3287. box-shadow: none;
  3288. color: #fff;
  3289. display: flex;
  3290. flex: 0 0 auto;
  3291. font-size: 14px;
  3292. font-style: normal;
  3293. font-weight: normal;
  3294. height: 28px;
  3295. margin-bottom: 4px;
  3296. margin-top: 4px;
  3297. outline: none;
  3298. overflow: hidden;
  3299. padding: 0;
  3300. padding-left: 8px;
  3301. text-transform: none;
  3302. }
  3303. .tox .tox-tree .tox-trbtn .tox-tree__label {
  3304. overflow: hidden;
  3305. text-overflow: ellipsis;
  3306. white-space: nowrap;
  3307. }
  3308. .tox .tox-tree .tox-trbtn svg {
  3309. display: block;
  3310. fill: #fff;
  3311. }
  3312. .tox .tox-tree .tox-trbtn:focus {
  3313. background: #4a5562;
  3314. border: 0;
  3315. box-shadow: none;
  3316. }
  3317. .tox .tox-tree .tox-trbtn:hover {
  3318. background: #4a5562;
  3319. border: 0;
  3320. box-shadow: none;
  3321. color: #fff;
  3322. }
  3323. .tox .tox-tree .tox-trbtn:hover svg {
  3324. fill: #fff;
  3325. }
  3326. .tox .tox-tree .tox-trbtn:active {
  3327. background: #6ea9d0;
  3328. border: 0;
  3329. box-shadow: none;
  3330. color: #fff;
  3331. }
  3332. .tox .tox-tree .tox-trbtn:active svg {
  3333. fill: #fff;
  3334. }
  3335. .tox .tox-tree .tox-trbtn--disabled,
  3336. .tox .tox-tree .tox-trbtn--disabled:hover,
  3337. .tox .tox-tree .tox-trbtn:disabled,
  3338. .tox .tox-tree .tox-trbtn:disabled:hover {
  3339. background: transparent;
  3340. border: 0;
  3341. box-shadow: none;
  3342. color: rgba(255, 255, 255, 0.5);
  3343. cursor: not-allowed;
  3344. }
  3345. .tox .tox-tree .tox-trbtn--disabled svg,
  3346. .tox .tox-tree .tox-trbtn--disabled:hover svg,
  3347. .tox .tox-tree .tox-trbtn:disabled svg,
  3348. .tox .tox-tree .tox-trbtn:disabled:hover svg {
  3349. /* stylelint-disable-line no-descending-specificity */
  3350. fill: rgba(255, 255, 255, 0.5);
  3351. }
  3352. .tox .tox-tree .tox-trbtn--enabled,
  3353. .tox .tox-tree .tox-trbtn--enabled:hover {
  3354. background: #6ea9d0;
  3355. border: 0;
  3356. box-shadow: none;
  3357. color: #fff;
  3358. }
  3359. .tox .tox-tree .tox-trbtn--enabled > *,
  3360. .tox .tox-tree .tox-trbtn--enabled:hover > * {
  3361. transform: none;
  3362. }
  3363. .tox .tox-tree .tox-trbtn--enabled svg,
  3364. .tox .tox-tree .tox-trbtn--enabled:hover svg {
  3365. /* stylelint-disable-line no-descending-specificity */
  3366. fill: #fff;
  3367. }
  3368. .tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) {
  3369. color: #fff;
  3370. }
  3371. .tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg {
  3372. fill: #fff;
  3373. }
  3374. .tox .tox-tree .tox-trbtn:active > * {
  3375. transform: none;
  3376. }
  3377. .tox .tox-tree .tox-trbtn--return {
  3378. align-self: stretch;
  3379. height: unset;
  3380. width: 16px;
  3381. }
  3382. .tox .tox-tree .tox-trbtn--labeled {
  3383. padding: 0 4px;
  3384. width: unset;
  3385. }
  3386. .tox .tox-tree .tox-trbtn__vlabel {
  3387. display: block;
  3388. font-size: 10px;
  3389. font-weight: normal;
  3390. letter-spacing: -0.025em;
  3391. margin-bottom: 4px;
  3392. white-space: nowrap;
  3393. }
  3394. .tox .tox-tree .tox-tree--directory {
  3395. display: flex;
  3396. flex-direction: column;
  3397. /* stylelint-disable no-descending-specificity */
  3398. }
  3399. .tox .tox-tree .tox-tree--directory.tox-tree--directory--expanded > .tox-tree--directory__label .tox-chevron {
  3400. transform: rotate(90deg);
  3401. }
  3402. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label {
  3403. font-weight: bold;
  3404. }
  3405. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn {
  3406. margin-left: auto;
  3407. }
  3408. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg {
  3409. fill: transparent;
  3410. }
  3411. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,
  3412. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg {
  3413. fill: #fff;
  3414. }
  3415. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg,
  3416. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg {
  3417. fill: #fff;
  3418. }
  3419. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) {
  3420. background-color: transparent;
  3421. color: #fff;
  3422. }
  3423. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg {
  3424. fill: #fff;
  3425. }
  3426. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron {
  3427. margin-right: 6px;
  3428. transition: transform 0.5s ease-in-out;
  3429. }
  3430. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label.tox-tree--directory__label--active .tox-chevron {
  3431. transform: rotate(90deg);
  3432. }
  3433. .tox .tox-tree .tox-tree--leaf__label {
  3434. font-weight: normal;
  3435. }
  3436. .tox .tox-tree .tox-tree--leaf__label .tox-mbtn {
  3437. margin-left: auto;
  3438. }
  3439. .tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg {
  3440. fill: transparent;
  3441. }
  3442. .tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,
  3443. .tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg {
  3444. fill: #fff;
  3445. }
  3446. .tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg {
  3447. fill: #fff;
  3448. }
  3449. .tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) {
  3450. background-color: transparent;
  3451. color: #fff;
  3452. }
  3453. .tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg {
  3454. fill: #fff;
  3455. }
  3456. .tox .tox-tree .tox-tree--directory__children {
  3457. overflow: hidden;
  3458. padding-left: 16px;
  3459. }
  3460. .tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,
  3461. .tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking {
  3462. transition: height 0.5s ease-in-out;
  3463. }
  3464. .tox .tox-tree .tox-trbtn.tox-tree--leaf__label {
  3465. display: flex;
  3466. justify-content: space-between;
  3467. }
  3468. .tox .tox-view-wrap,
  3469. .tox .tox-view-wrap__slot-container {
  3470. background-color: #222f3e;
  3471. display: flex;
  3472. flex: 1;
  3473. flex-direction: column;
  3474. }
  3475. .tox .tox-view {
  3476. display: flex;
  3477. flex: 1 1 auto;
  3478. flex-direction: column;
  3479. overflow: hidden;
  3480. }
  3481. .tox .tox-view__header {
  3482. align-items: center;
  3483. display: flex;
  3484. font-size: 16px;
  3485. justify-content: space-between;
  3486. padding: 8px 8px 0 8px;
  3487. position: relative;
  3488. }
  3489. .tox .tox-view--mobile.tox-view__header,
  3490. .tox .tox-view--mobile.tox-view__toolbar {
  3491. padding: 8px;
  3492. }
  3493. .tox .tox-view--scrolling {
  3494. flex-wrap: nowrap;
  3495. overflow-x: auto;
  3496. }
  3497. .tox .tox-view__toolbar {
  3498. display: flex;
  3499. flex-direction: row;
  3500. gap: 8px;
  3501. justify-content: space-between;
  3502. padding: 8px 8px 0 8px;
  3503. }
  3504. .tox .tox-view__toolbar__group {
  3505. display: flex;
  3506. flex-direction: row;
  3507. gap: 12px;
  3508. }
  3509. .tox .tox-view__header-start,
  3510. .tox .tox-view__header-end {
  3511. display: flex;
  3512. }
  3513. .tox .tox-view__pane {
  3514. height: 100%;
  3515. padding: 8px;
  3516. width: 100%;
  3517. }
  3518. .tox .tox-view__pane_panel {
  3519. border: 1px solid #000000;
  3520. border-radius: 3px;
  3521. }
  3522. .tox:not([dir=rtl]) .tox-view__header .tox-view__header-start > *,
  3523. .tox:not([dir=rtl]) .tox-view__header .tox-view__header-end > * {
  3524. margin-left: 8px;
  3525. }
  3526. .tox[dir=rtl] .tox-view__header .tox-view__header-start > *,
  3527. .tox[dir=rtl] .tox-view__header .tox-view__header-end > * {
  3528. margin-right: 8px;
  3529. }
  3530. .tox .tox-well {
  3531. border: 1px solid #000000;
  3532. border-radius: 3px;
  3533. padding: 8px;
  3534. width: 100%;
  3535. }
  3536. .tox .tox-well > *:first-child {
  3537. margin-top: 0;
  3538. }
  3539. .tox .tox-well > *:last-child {
  3540. margin-bottom: 0;
  3541. }
  3542. .tox .tox-well > *:only-child {
  3543. margin: 0;
  3544. }
  3545. .tox .tox-custom-editor {
  3546. border: 1px solid #000000;
  3547. border-radius: 3px;
  3548. display: flex;
  3549. flex: 1;
  3550. overflow: hidden;
  3551. position: relative;
  3552. }
  3553. /* stylelint-disable */
  3554. .tox {
  3555. /* stylelint-enable */
  3556. }
  3557. .tox .tox-dialog-loading::before {
  3558. background-color: rgba(0, 0, 0, 0.5);
  3559. content: "";
  3560. height: 100%;
  3561. position: absolute;
  3562. width: 100%;
  3563. z-index: 1000;
  3564. }
  3565. .tox .tox-tab {
  3566. cursor: pointer;
  3567. }
  3568. .tox .tox-dialog__content-js {
  3569. display: flex;
  3570. flex: 1;
  3571. }
  3572. .tox .tox-dialog__body-content .tox-collection {
  3573. display: flex;
  3574. flex: 1;
  3575. }
  3576. .tox:not(.tox-tinymce-inline) .tox-editor-header {
  3577. background-color: none;
  3578. padding: 0;
  3579. }
  3580. .tox.tox-tinymce--toolbar-bottom .tox-editor-header,
  3581. .tox.tox-tinymce-inline .tox-editor-header {
  3582. margin-bottom: -1px;
  3583. }
  3584. .tox.tox-tinymce-inline .tox-editor-container {
  3585. overflow: hidden;
  3586. }
  3587. .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header {
  3588. border-top: none;
  3589. box-shadow: none;
  3590. }
  3591. .tox.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header {
  3592. background-color: transparent;
  3593. box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
  3594. padding: 0;
  3595. }
  3596. .tox.tox.tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header {
  3597. box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
  3598. }
  3599. .tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
  3600. margin: -4px 0;
  3601. }
  3602. .tox .tox-menu.tox-collection.tox-collection--list {
  3603. padding: 0;
  3604. }
  3605. .tox .tox-pop {
  3606. box-shadow: none;
  3607. }
  3608. .tox .tox-tbtn,
  3609. .tox .tox-number-input,
  3610. .tox .tox-tbtn--select,
  3611. .tox .tox-split-button {
  3612. margin: 2px 0 3px 0;
  3613. }
  3614. .tox .tox-toolbar,
  3615. .tox .tox-toolbar__primary,
  3616. .tox .tox-toolbar__overflow {
  3617. 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 0px #222f3e !important;
  3618. }
  3619. .tox .tox-menubar + .tox-toolbar-overlord {
  3620. border-top: none;
  3621. }
  3622. .tox .tox-menubar + .tox-toolbar,
  3623. .tox .tox-menubar + .tox-toolbar-overlord .tox-toolbar__primary {
  3624. border-top: 1px solid #000000;
  3625. margin-top: -1px;
  3626. }
  3627. .tox.tox-tinymce-aux .tox-toolbar__overflow {
  3628. border: 1px solid #000000;
  3629. padding: 0;
  3630. }
  3631. .tox .tox-pop .tox-pop__dialog .tox-toolbar {
  3632. padding: 0;
  3633. }
  3634. .tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar {
  3635. border-top: 1px solid #000000;
  3636. }
  3637. .tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary,
  3638. .tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child {
  3639. border-top: 1px solid #000000;
  3640. }
  3641. .tox .tox-toolbar__group {
  3642. padding: 0 4px 0 4px;
  3643. }
  3644. .tox .tox-collection__item {
  3645. border-radius: 0;
  3646. cursor: pointer;
  3647. }
  3648. .tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),
  3649. .tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),
  3650. .tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),
  3651. .tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),
  3652. .tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),
  3653. .tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]) {
  3654. color: #fff;
  3655. text-decoration: underline;
  3656. }
  3657. .tox .tox-statusbar__branding svg {
  3658. vertical-align: -0.25em;
  3659. }
  3660. .tox:not([dir=rtl]) .tox-statusbar__branding {
  3661. margin-left: 1ch;
  3662. }
  3663. .tox .tox-statusbar__resize-handle {
  3664. padding-bottom: 0;
  3665. padding-right: 0;
  3666. }
  3667. .tox .tox-button::before {
  3668. display: none;
  3669. }