skin.css 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773
  1. .tox {
  2. box-shadow: none;
  3. box-sizing: content-box;
  4. color: #222f3e;
  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. -webkit-text-decoration: none;
  13. text-decoration: none;
  14. text-shadow: none;
  15. text-transform: none;
  16. vertical-align: initial;
  17. white-space: normal;
  18. }
  19. .tox *:not(svg):not(rect) {
  20. box-sizing: inherit;
  21. color: inherit;
  22. cursor: inherit;
  23. direction: inherit;
  24. font-family: inherit;
  25. font-size: inherit;
  26. font-style: inherit;
  27. font-weight: inherit;
  28. line-height: inherit;
  29. -webkit-tap-highlight-color: inherit;
  30. text-align: inherit;
  31. text-decoration: inherit;
  32. text-shadow: inherit;
  33. text-transform: inherit;
  34. vertical-align: inherit;
  35. white-space: inherit;
  36. }
  37. .tox *:not(svg):not(rect) {
  38. /* stylelint-disable-line no-duplicate-selectors */
  39. background: transparent;
  40. border: 0;
  41. box-shadow: none;
  42. float: none;
  43. height: auto;
  44. margin: 0;
  45. max-width: none;
  46. outline: 0;
  47. padding: 0;
  48. position: static;
  49. width: auto;
  50. }
  51. .tox:not([dir=rtl]) {
  52. direction: ltr;
  53. text-align: left;
  54. }
  55. .tox[dir=rtl] {
  56. direction: rtl;
  57. text-align: right;
  58. }
  59. .tox-tinymce {
  60. border: 1px solid #cccccc;
  61. border-radius: 0;
  62. box-shadow: none;
  63. box-sizing: border-box;
  64. display: flex;
  65. flex-direction: column;
  66. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  67. overflow: hidden;
  68. position: relative;
  69. visibility: inherit !important;
  70. }
  71. .tox.tox-tinymce-inline {
  72. border: none;
  73. box-shadow: none;
  74. overflow: initial;
  75. }
  76. .tox.tox-tinymce-inline .tox-editor-container {
  77. overflow: initial;
  78. }
  79. .tox.tox-tinymce-inline .tox-editor-header {
  80. background-color: #fff;
  81. border: 1px solid #cccccc;
  82. border-radius: 0;
  83. box-shadow: none;
  84. overflow: hidden;
  85. }
  86. .tox-tinymce-aux {
  87. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  88. z-index: 1300;
  89. }
  90. .tox-tinymce *:focus,
  91. .tox-tinymce-aux *:focus {
  92. outline: none;
  93. }
  94. button::-moz-focus-inner {
  95. border: 0;
  96. }
  97. .tox[dir=rtl] .tox-icon--flip svg {
  98. transform: rotateY(180deg);
  99. }
  100. .tox .accessibility-issue__header {
  101. align-items: center;
  102. display: flex;
  103. margin-bottom: 4px;
  104. }
  105. .tox .accessibility-issue__description {
  106. align-items: stretch;
  107. border-radius: 3px;
  108. display: flex;
  109. justify-content: space-between;
  110. }
  111. .tox .accessibility-issue__description > div {
  112. padding-bottom: 4px;
  113. }
  114. .tox .accessibility-issue__description > div > div {
  115. align-items: center;
  116. display: flex;
  117. margin-bottom: 4px;
  118. }
  119. .tox .accessibility-issue__description > div > div .tox-icon svg {
  120. display: block;
  121. }
  122. .tox .accessibility-issue__repair {
  123. margin-top: 16px;
  124. }
  125. .tox .tox-dialog__body-content .accessibility-issue--info .accessibility-issue__description {
  126. background-color: rgba(30, 113, 170, 0.1);
  127. color: #222f3e;
  128. }
  129. .tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2 {
  130. color: #207ab7;
  131. }
  132. .tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg {
  133. fill: #207ab7;
  134. }
  135. .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon {
  136. background-color: #207ab7;
  137. color: #fff;
  138. }
  139. .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover,
  140. .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus {
  141. background-color: #1c6ca1;
  142. }
  143. .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active {
  144. background-color: #185d8c;
  145. }
  146. .tox .tox-dialog__body-content .accessibility-issue--warn {
  147. /* stylelint-disable-next-line no-descending-specificity */
  148. }
  149. .tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description {
  150. background-color: rgba(255, 165, 0, 0.08);
  151. color: #222f3e;
  152. }
  153. .tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2 {
  154. color: #8f5d00;
  155. }
  156. .tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg {
  157. fill: #8f5d00;
  158. }
  159. .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon {
  160. background-color: #FFE89D;
  161. color: #222f3e;
  162. }
  163. .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover,
  164. .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus {
  165. background-color: #F2D574;
  166. color: #222f3e;
  167. }
  168. .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active {
  169. background-color: #E8C657;
  170. color: #222f3e;
  171. }
  172. .tox .tox-dialog__body-content .accessibility-issue--error {
  173. /* stylelint-disable-next-line no-descending-specificity */
  174. }
  175. .tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description {
  176. background-color: rgba(204, 0, 0, 0.1);
  177. color: #222f3e;
  178. }
  179. .tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2 {
  180. color: #c00;
  181. }
  182. .tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg {
  183. fill: #c00;
  184. }
  185. .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon {
  186. background-color: #F2BFBF;
  187. color: #222f3e;
  188. }
  189. .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover,
  190. .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus {
  191. background-color: #E9A4A4;
  192. color: #222f3e;
  193. }
  194. .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active {
  195. background-color: #EE9494;
  196. color: #222f3e;
  197. }
  198. .tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description {
  199. background-color: rgba(120, 171, 70, 0.1);
  200. color: #222f3e;
  201. }
  202. .tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description > *:last-child {
  203. display: none;
  204. }
  205. .tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2 {
  206. color: #527530;
  207. }
  208. .tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg {
  209. fill: #527530;
  210. }
  211. .tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,
  212. .tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2 {
  213. font-size: 14px;
  214. margin-top: 0;
  215. }
  216. .tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button {
  217. margin-left: 4px;
  218. }
  219. .tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header > *:nth-last-child(2) {
  220. margin-left: auto;
  221. }
  222. .tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description {
  223. padding: 4px 4px 4px 8px;
  224. }
  225. .tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button {
  226. margin-right: 4px;
  227. }
  228. .tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header > *:nth-last-child(2) {
  229. margin-right: auto;
  230. }
  231. .tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description {
  232. padding: 4px 8px 4px 4px;
  233. }
  234. .tox .mce-codemirror {
  235. background: #fff;
  236. bottom: 0;
  237. font-size: 13px;
  238. left: 0;
  239. position: absolute;
  240. right: 0;
  241. top: 0;
  242. z-index: 1;
  243. }
  244. .tox .mce-codemirror.tox-inline-codemirror {
  245. margin: 8px;
  246. position: absolute;
  247. }
  248. .tox .tox-advtemplate .tox-form__grid {
  249. flex: 1;
  250. }
  251. .tox .tox-advtemplate .tox-form__grid > div:first-child {
  252. display: flex;
  253. flex-direction: column;
  254. width: 30%;
  255. }
  256. .tox .tox-advtemplate .tox-form__grid > div:first-child > div:nth-child(2) {
  257. flex-basis: 0;
  258. flex-grow: 1;
  259. overflow: auto;
  260. }
  261. @media only screen and (max-width: 767px ) {
  262. body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid > div:first-child {
  263. width: 100%;
  264. }
  265. }
  266. .tox .tox-advtemplate iframe {
  267. border-color: #cccccc;
  268. border-radius: 0;
  269. border-style: solid;
  270. border-width: 1px;
  271. margin: 0 10px;
  272. }
  273. .tox .tox-anchorbar {
  274. display: flex;
  275. flex: 0 0 auto;
  276. }
  277. .tox .tox-bottom-anchorbar {
  278. display: flex;
  279. flex: 0 0 auto;
  280. }
  281. .tox .tox-bar {
  282. display: flex;
  283. flex: 0 0 auto;
  284. }
  285. .tox .tox-button {
  286. background-color: #207ab7;
  287. background-image: none;
  288. background-position: 0 0;
  289. background-repeat: repeat;
  290. border-color: #207ab7;
  291. border-radius: 3px;
  292. border-style: solid;
  293. border-width: 1px;
  294. box-shadow: none;
  295. box-sizing: border-box;
  296. color: #fff;
  297. cursor: pointer;
  298. display: inline-block;
  299. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  300. font-size: 14px;
  301. font-style: normal;
  302. font-weight: bold;
  303. letter-spacing: normal;
  304. line-height: 24px;
  305. margin: 0;
  306. outline: none;
  307. padding: 4px 16px;
  308. position: relative;
  309. text-align: center;
  310. -webkit-text-decoration: none;
  311. text-decoration: none;
  312. text-transform: none;
  313. white-space: nowrap;
  314. }
  315. .tox .tox-button::before {
  316. border-radius: 3px;
  317. bottom: -1px;
  318. box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px #207ab7;
  319. content: '';
  320. left: -1px;
  321. opacity: 0;
  322. pointer-events: none;
  323. position: absolute;
  324. right: -1px;
  325. top: -1px;
  326. }
  327. .tox .tox-button[disabled] {
  328. background-color: #207ab7;
  329. background-image: none;
  330. border-color: #207ab7;
  331. box-shadow: none;
  332. color: rgba(255, 255, 255, 0.5);
  333. cursor: not-allowed;
  334. }
  335. .tox .tox-button:focus:not(:disabled) {
  336. background-color: #1c6ca1;
  337. background-image: none;
  338. border-color: #1c6ca1;
  339. box-shadow: none;
  340. color: #fff;
  341. }
  342. .tox .tox-button:focus:not(:disabled)::before {
  343. opacity: 1;
  344. }
  345. .tox .tox-button:hover:not(:disabled) {
  346. background-color: #1c6ca1;
  347. background-image: none;
  348. border-color: #1c6ca1;
  349. box-shadow: none;
  350. color: #fff;
  351. }
  352. .tox .tox-button:active:not(:disabled) {
  353. background-color: #185d8c;
  354. background-image: none;
  355. border-color: #185d8c;
  356. box-shadow: none;
  357. color: #fff;
  358. }
  359. .tox .tox-button.tox-button--enabled {
  360. background-color: #185d8c;
  361. background-image: none;
  362. border-color: #185d8c;
  363. box-shadow: none;
  364. color: #fff;
  365. }
  366. .tox .tox-button.tox-button--enabled[disabled] {
  367. background-color: #185d8c;
  368. background-image: none;
  369. border-color: #185d8c;
  370. box-shadow: none;
  371. color: rgba(255, 255, 255, 0.5);
  372. cursor: not-allowed;
  373. }
  374. .tox .tox-button.tox-button--enabled:focus:not(:disabled) {
  375. background-color: #154f76;
  376. background-image: none;
  377. border-color: #154f76;
  378. box-shadow: none;
  379. color: #fff;
  380. }
  381. .tox .tox-button.tox-button--enabled:hover:not(:disabled) {
  382. background-color: #154f76;
  383. background-image: none;
  384. border-color: #154f76;
  385. box-shadow: none;
  386. color: #fff;
  387. }
  388. .tox .tox-button.tox-button--enabled:active:not(:disabled) {
  389. background-color: #114060;
  390. background-image: none;
  391. border-color: #114060;
  392. box-shadow: none;
  393. color: #fff;
  394. }
  395. .tox .tox-button--icon-and-text,
  396. .tox .tox-button.tox-button--icon-and-text,
  397. .tox .tox-button.tox-button--secondary.tox-button--icon-and-text {
  398. display: flex;
  399. padding: 5px 4px;
  400. }
  401. .tox .tox-button--icon-and-text .tox-icon svg,
  402. .tox .tox-button.tox-button--icon-and-text .tox-icon svg,
  403. .tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg {
  404. display: block;
  405. fill: currentColor;
  406. }
  407. .tox .tox-button--secondary {
  408. background-color: #f0f0f0;
  409. background-image: none;
  410. background-position: 0 0;
  411. background-repeat: repeat;
  412. border-color: #f0f0f0;
  413. border-radius: 3px;
  414. border-style: solid;
  415. border-width: 1px;
  416. box-shadow: none;
  417. color: #222f3e;
  418. font-size: 14px;
  419. font-style: normal;
  420. font-weight: bold;
  421. letter-spacing: normal;
  422. outline: none;
  423. padding: 4px 16px;
  424. -webkit-text-decoration: none;
  425. text-decoration: none;
  426. text-transform: none;
  427. }
  428. .tox .tox-button--secondary[disabled] {
  429. background-color: #f0f0f0;
  430. background-image: none;
  431. border-color: #f0f0f0;
  432. box-shadow: none;
  433. color: rgba(34, 47, 62, 0.5);
  434. }
  435. .tox .tox-button--secondary:focus:not(:disabled) {
  436. background-color: #e3e3e3;
  437. background-image: none;
  438. border-color: #e3e3e3;
  439. box-shadow: none;
  440. color: #222f3e;
  441. }
  442. .tox .tox-button--secondary:hover:not(:disabled) {
  443. background-color: #e3e3e3;
  444. background-image: none;
  445. border-color: #e3e3e3;
  446. box-shadow: none;
  447. color: #222f3e;
  448. }
  449. .tox .tox-button--secondary:active:not(:disabled) {
  450. background-color: #d6d6d6;
  451. background-image: none;
  452. border-color: #d6d6d6;
  453. box-shadow: none;
  454. color: #222f3e;
  455. }
  456. .tox .tox-button--secondary.tox-button--enabled {
  457. background-color: #b1ccdf;
  458. background-image: none;
  459. border-color: #b1ccdf;
  460. box-shadow: none;
  461. color: #222f3e;
  462. }
  463. .tox .tox-button--secondary.tox-button--enabled[disabled] {
  464. background-color: #b1ccdf;
  465. background-image: none;
  466. border-color: #b1ccdf;
  467. box-shadow: none;
  468. color: rgba(34, 47, 62, 0.5);
  469. }
  470. .tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled) {
  471. background-color: #9fc1d7;
  472. background-image: none;
  473. border-color: #9fc1d7;
  474. box-shadow: none;
  475. color: #222f3e;
  476. }
  477. .tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled) {
  478. background-color: #9fc1d7;
  479. background-image: none;
  480. border-color: #9fc1d7;
  481. box-shadow: none;
  482. color: #222f3e;
  483. }
  484. .tox .tox-button--secondary.tox-button--enabled:active:not(:disabled) {
  485. background-color: #8db5d0;
  486. background-image: none;
  487. border-color: #8db5d0;
  488. box-shadow: none;
  489. color: #222f3e;
  490. }
  491. .tox .tox-button--icon,
  492. .tox .tox-button.tox-button--icon,
  493. .tox .tox-button.tox-button--secondary.tox-button--icon {
  494. padding: 4px;
  495. }
  496. .tox .tox-button--icon .tox-icon svg,
  497. .tox .tox-button.tox-button--icon .tox-icon svg,
  498. .tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg {
  499. display: block;
  500. fill: currentColor;
  501. }
  502. .tox .tox-button-link {
  503. background: 0;
  504. border: none;
  505. box-sizing: border-box;
  506. cursor: pointer;
  507. display: inline-block;
  508. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  509. font-size: 16px;
  510. font-weight: normal;
  511. line-height: 1.3;
  512. margin: 0;
  513. padding: 0;
  514. white-space: nowrap;
  515. }
  516. .tox .tox-button-link--sm {
  517. font-size: 14px;
  518. }
  519. .tox .tox-button--naked {
  520. background-color: transparent;
  521. border-color: transparent;
  522. box-shadow: unset;
  523. color: #222f3e;
  524. }
  525. .tox .tox-button--naked[disabled] {
  526. background-color: #f0f0f0;
  527. border-color: #f0f0f0;
  528. box-shadow: none;
  529. color: rgba(34, 47, 62, 0.5);
  530. }
  531. .tox .tox-button--naked:hover:not(:disabled) {
  532. background-color: #e3e3e3;
  533. border-color: #e3e3e3;
  534. box-shadow: none;
  535. color: #222f3e;
  536. }
  537. .tox .tox-button--naked:focus:not(:disabled) {
  538. background-color: #e3e3e3;
  539. border-color: #e3e3e3;
  540. box-shadow: none;
  541. color: #222f3e;
  542. }
  543. .tox .tox-button--naked:active:not(:disabled) {
  544. background-color: #d6d6d6;
  545. border-color: #d6d6d6;
  546. box-shadow: none;
  547. color: #222f3e;
  548. }
  549. .tox .tox-button--naked .tox-icon svg {
  550. fill: currentColor;
  551. }
  552. .tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
  553. color: #222f3e;
  554. }
  555. .tox .tox-checkbox {
  556. align-items: center;
  557. border-radius: 3px;
  558. cursor: pointer;
  559. display: flex;
  560. height: 36px;
  561. min-width: 36px;
  562. }
  563. .tox .tox-checkbox__input {
  564. /* Hide from view but visible to screen readers */
  565. height: 1px;
  566. overflow: hidden;
  567. position: absolute;
  568. top: auto;
  569. width: 1px;
  570. }
  571. .tox .tox-checkbox__icons {
  572. align-items: center;
  573. border-radius: 3px;
  574. box-shadow: 0 0 0 2px transparent;
  575. box-sizing: content-box;
  576. display: flex;
  577. height: 24px;
  578. justify-content: center;
  579. padding: calc(4px - 1px);
  580. width: 24px;
  581. }
  582. .tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  583. display: block;
  584. fill: rgba(34, 47, 62, 0.3);
  585. }
  586. @media (forced-colors: active) {
  587. .tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  588. fill: currentColor !important;
  589. }
  590. }
  591. .tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  592. display: none;
  593. fill: #207ab7;
  594. }
  595. .tox .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  596. display: none;
  597. fill: #207ab7;
  598. }
  599. .tox .tox-checkbox--disabled {
  600. color: rgba(34, 47, 62, 0.5);
  601. cursor: not-allowed;
  602. }
  603. .tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  604. fill: rgba(34, 47, 62, 0.5);
  605. }
  606. .tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  607. fill: rgba(34, 47, 62, 0.5);
  608. }
  609. .tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  610. fill: rgba(34, 47, 62, 0.5);
  611. }
  612. .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  613. display: none;
  614. }
  615. .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  616. display: block;
  617. }
  618. .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  619. display: none;
  620. }
  621. .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  622. display: block;
  623. }
  624. .tox input.tox-checkbox__input:focus + .tox-checkbox__icons {
  625. border-radius: 3px;
  626. box-shadow: inset 0 0 0 1px #207ab7;
  627. padding: calc(4px - 1px);
  628. }
  629. .tox:not([dir=rtl]) .tox-checkbox__label {
  630. margin-left: 4px;
  631. }
  632. .tox:not([dir=rtl]) .tox-checkbox__input {
  633. left: -10000px;
  634. }
  635. .tox:not([dir=rtl]) .tox-bar .tox-checkbox {
  636. margin-left: 4px;
  637. }
  638. .tox[dir=rtl] .tox-checkbox__label {
  639. margin-right: 4px;
  640. }
  641. .tox[dir=rtl] .tox-checkbox__input {
  642. right: -10000px;
  643. }
  644. .tox[dir=rtl] .tox-bar .tox-checkbox {
  645. margin-right: 4px;
  646. }
  647. .tox {
  648. /* stylelint-disable-next-line no-descending-specificity */
  649. }
  650. .tox .tox-collection--toolbar .tox-collection__group {
  651. display: flex;
  652. padding: 0;
  653. }
  654. .tox .tox-collection--grid .tox-collection__group {
  655. display: flex;
  656. flex-wrap: wrap;
  657. max-height: 208px;
  658. overflow-x: hidden;
  659. overflow-y: auto;
  660. padding: 0;
  661. }
  662. .tox .tox-collection--list .tox-collection__group {
  663. border-bottom-width: 0;
  664. border-color: #cccccc;
  665. border-left-width: 0;
  666. border-right-width: 0;
  667. border-style: solid;
  668. border-top-width: 1px;
  669. padding: 4px 0;
  670. }
  671. .tox .tox-collection--list .tox-collection__group:first-child {
  672. border-top-width: 0;
  673. }
  674. .tox .tox-collection__group-heading {
  675. background-color: #e6e6e6;
  676. color: rgba(34, 47, 62, 0.7);
  677. cursor: default;
  678. font-size: 12px;
  679. font-style: normal;
  680. font-weight: normal;
  681. margin-bottom: 4px;
  682. margin-top: -4px;
  683. padding: 4px 8px;
  684. text-transform: none;
  685. -webkit-touch-callout: none;
  686. -webkit-user-select: none;
  687. user-select: none;
  688. }
  689. .tox .tox-collection__item {
  690. align-items: center;
  691. border-radius: 3px;
  692. color: #222f3e;
  693. display: flex;
  694. -webkit-touch-callout: none;
  695. -webkit-user-select: none;
  696. user-select: none;
  697. }
  698. .tox .tox-collection--list .tox-collection__item {
  699. padding: 4px 8px;
  700. }
  701. .tox .tox-collection--toolbar .tox-collection__item {
  702. border-radius: 3px;
  703. padding: 4px;
  704. }
  705. .tox .tox-collection--grid .tox-collection__item {
  706. border-radius: 3px;
  707. padding: 4px;
  708. }
  709. .tox .tox-collection--list .tox-collection__item--enabled:not(.tox-collection__item--state-disabled) {
  710. background-color: #fff;
  711. color: #222f3e;
  712. }
  713. .tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  714. background-color: #dee0e2;
  715. color: #222f3e;
  716. }
  717. @media (forced-colors: active) {
  718. .tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  719. border: solid 1px;
  720. }
  721. }
  722. .tox .tox-collection--grid .tox-collection__item--enabled:not(.tox-collection__item--state-disabled) {
  723. background-color: #c8cbcf;
  724. color: #222f3e;
  725. }
  726. .tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  727. background-color: #dee0e2;
  728. color: #222f3e;
  729. position: relative;
  730. z-index: 1;
  731. }
  732. .tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after {
  733. border-radius: 3px;
  734. bottom: 0;
  735. box-shadow: 0 0 0 0 transparent inset;
  736. content: '';
  737. left: 0;
  738. position: absolute;
  739. right: 0;
  740. top: 0;
  741. }
  742. @media (forced-colors: active) {
  743. .tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after {
  744. border: 2px solid highlight;
  745. }
  746. }
  747. .tox .tox-collection--toolbar .tox-collection__item--enabled:not(.tox-collection__item--state-disabled) {
  748. background-color: #c8cbcf;
  749. color: #222f3e;
  750. }
  751. @media (forced-colors: active) {
  752. .tox .tox-collection--toolbar .tox-collection__item--enabled:not(.tox-collection__item--state-disabled) {
  753. border-radius: 3px;
  754. outline: solid 1px;
  755. }
  756. }
  757. .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
  758. color: #222f3e;
  759. background-color: #fff;
  760. position: relative;
  761. }
  762. .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):hover {
  763. background-color: #dee0e2;
  764. color: #222f3e;
  765. }
  766. .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus {
  767. background-color: #dee0e2;
  768. color: #222f3e;
  769. }
  770. .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after {
  771. border-radius: 3px;
  772. bottom: 0;
  773. box-shadow: 0 0 0 0 transparent ;
  774. content: '';
  775. left: 0;
  776. position: absolute;
  777. right: 0;
  778. top: 0;
  779. }
  780. @media (forced-colors: active) {
  781. .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):focus::after {
  782. border: 2px solid highlight;
  783. }
  784. }
  785. @media (forced-colors: active) {
  786. .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled):hover {
  787. border-radius: 3px;
  788. outline: solid 1px;
  789. }
  790. }
  791. .tox .tox-collection__item-icon,
  792. .tox .tox-collection__item-checkmark {
  793. align-items: center;
  794. display: flex;
  795. height: 24px;
  796. justify-content: center;
  797. width: 24px;
  798. }
  799. .tox .tox-collection__item-icon svg,
  800. .tox .tox-collection__item-checkmark svg {
  801. fill: currentColor;
  802. }
  803. .tox .tox-collection--toolbar-lg .tox-collection__item-icon {
  804. height: 48px;
  805. width: 48px;
  806. }
  807. .tox .tox-collection__item-label {
  808. color: currentColor;
  809. display: inline-block;
  810. flex: 1;
  811. font-size: 14px;
  812. font-style: normal;
  813. font-weight: normal;
  814. line-height: 24px;
  815. max-width: 100%;
  816. text-transform: none;
  817. word-break: break-all;
  818. }
  819. .tox .tox-collection__item-accessory {
  820. color: currentColor;
  821. display: inline-block;
  822. font-size: 14px;
  823. height: 24px;
  824. line-height: 24px;
  825. text-transform: none;
  826. }
  827. .tox .tox-collection__item-caret {
  828. align-items: center;
  829. display: flex;
  830. min-height: 24px;
  831. }
  832. .tox .tox-collection__item-caret::after {
  833. content: '';
  834. font-size: 0;
  835. min-height: inherit;
  836. }
  837. .tox .tox-collection__item-caret svg {
  838. fill: currentColor;
  839. }
  840. .tox .tox-collection__item--state-disabled {
  841. background-color: transparent;
  842. color: rgba(34, 47, 62, 0.5);
  843. cursor: not-allowed;
  844. }
  845. .tox .tox-collection__item--state-disabled .tox-collection__item-caret svg {
  846. fill: rgba(34, 47, 62, 0.5);
  847. }
  848. .tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg {
  849. display: none;
  850. }
  851. .tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory + .tox-collection__item-checkmark {
  852. display: none;
  853. }
  854. .tox .tox-collection--horizontal {
  855. background-color: #fff;
  856. border: 1px solid #cccccc;
  857. border-radius: 3px;
  858. box-shadow: 0 0 2px 0 rgba(34, 47, 62, 0.2), 0 4px 8px 0 rgba(34, 47, 62, 0.15);
  859. display: flex;
  860. flex: 0 0 auto;
  861. flex-shrink: 0;
  862. flex-wrap: nowrap;
  863. margin-bottom: 0;
  864. overflow-x: auto;
  865. padding: 0;
  866. }
  867. .tox .tox-collection--horizontal .tox-collection__group {
  868. align-items: center;
  869. display: flex;
  870. flex-wrap: nowrap;
  871. margin: 0;
  872. padding: 0 4px;
  873. }
  874. .tox .tox-collection--horizontal .tox-collection__item {
  875. height: 34px;
  876. margin: 3px 0 2px 0;
  877. padding: 0 4px;
  878. }
  879. .tox .tox-collection--horizontal .tox-collection__item-label {
  880. white-space: nowrap;
  881. }
  882. .tox .tox-collection--horizontal .tox-collection__item-caret {
  883. margin-left: 4px;
  884. }
  885. .tox .tox-collection__item-container {
  886. display: flex;
  887. }
  888. .tox .tox-collection__item-container--row {
  889. align-items: center;
  890. flex: 1 1 auto;
  891. flex-direction: row;
  892. }
  893. .tox .tox-collection__item-container--row.tox-collection__item-container--align-left {
  894. margin-right: auto;
  895. }
  896. .tox .tox-collection__item-container--row.tox-collection__item-container--align-right {
  897. justify-content: flex-end;
  898. margin-left: auto;
  899. }
  900. .tox .tox-collection__item-container--row.tox-collection__item-container--valign-top {
  901. align-items: flex-start;
  902. margin-bottom: auto;
  903. }
  904. .tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle {
  905. align-items: center;
  906. }
  907. .tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom {
  908. align-items: flex-end;
  909. margin-top: auto;
  910. }
  911. .tox .tox-collection__item-container--column {
  912. align-self: center;
  913. flex: 1 1 auto;
  914. flex-direction: column;
  915. }
  916. .tox .tox-collection__item-container--column.tox-collection__item-container--align-left {
  917. align-items: flex-start;
  918. }
  919. .tox .tox-collection__item-container--column.tox-collection__item-container--align-right {
  920. align-items: flex-end;
  921. }
  922. .tox .tox-collection__item-container--column.tox-collection__item-container--valign-top {
  923. align-self: flex-start;
  924. }
  925. .tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle {
  926. align-self: center;
  927. }
  928. .tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom {
  929. align-self: flex-end;
  930. }
  931. .tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
  932. border-right: 1px solid #cccccc;
  933. }
  934. .tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > *:not(:first-child) {
  935. margin-left: 8px;
  936. }
  937. .tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
  938. margin-left: 4px;
  939. }
  940. .tox:not([dir=rtl]) .tox-collection__item-accessory {
  941. margin-left: 16px;
  942. text-align: right;
  943. }
  944. .tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret {
  945. margin-left: 16px;
  946. }
  947. .tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
  948. border-left: 1px solid #cccccc;
  949. }
  950. .tox[dir=rtl] .tox-collection--list .tox-collection__item > *:not(:first-child) {
  951. margin-right: 8px;
  952. }
  953. .tox[dir=rtl] .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
  954. margin-right: 4px;
  955. }
  956. .tox[dir=rtl] .tox-collection__item-accessory {
  957. margin-right: 16px;
  958. text-align: left;
  959. }
  960. .tox[dir=rtl] .tox-collection .tox-collection__item-caret {
  961. margin-right: 16px;
  962. transform: rotateY(180deg);
  963. }
  964. .tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret {
  965. margin-right: 4px;
  966. }
  967. @media (forced-colors: active) {
  968. .tox .tox-hue-slider,
  969. .tox .tox-rgb-form .tox-rgba-preview {
  970. background-color: currentColor !important;
  971. border: 1px solid highlight !important;
  972. forced-color-adjust: none;
  973. }
  974. }
  975. .tox .tox-color-picker-container {
  976. display: flex;
  977. flex-direction: row;
  978. height: 225px;
  979. margin: 0;
  980. }
  981. .tox .tox-sv-palette {
  982. box-sizing: border-box;
  983. display: flex;
  984. height: 100%;
  985. }
  986. .tox .tox-sv-palette-spectrum {
  987. height: 100%;
  988. }
  989. .tox .tox-sv-palette,
  990. .tox .tox-sv-palette-spectrum {
  991. width: 225px;
  992. }
  993. .tox .tox-sv-palette-thumb {
  994. background: none;
  995. border: 1px solid black;
  996. border-radius: 50%;
  997. box-sizing: content-box;
  998. height: 12px;
  999. position: absolute;
  1000. width: 12px;
  1001. }
  1002. .tox .tox-sv-palette-inner-thumb {
  1003. border: 1px solid white;
  1004. border-radius: 50%;
  1005. height: 10px;
  1006. position: absolute;
  1007. width: 10px;
  1008. }
  1009. .tox .tox-hue-slider {
  1010. box-sizing: border-box;
  1011. height: 100%;
  1012. width: 25px;
  1013. }
  1014. .tox .tox-hue-slider-spectrum {
  1015. background: linear-gradient(to bottom, #f00, #ff0080, #f0f, #8000ff, #00f, #0080ff, #0ff, #00ff80, #0f0, #80ff00, #ff0, #ff8000, #f00);
  1016. height: 100%;
  1017. width: 100%;
  1018. }
  1019. .tox .tox-hue-slider,
  1020. .tox .tox-hue-slider-spectrum {
  1021. width: 20px;
  1022. }
  1023. .tox .tox-hue-slider-spectrum:focus,
  1024. .tox .tox-sv-palette-spectrum:focus {
  1025. outline: #08f solid;
  1026. }
  1027. .tox .tox-hue-slider-thumb {
  1028. background: white;
  1029. border: 1px solid black;
  1030. box-sizing: content-box;
  1031. height: 4px;
  1032. width: 100%;
  1033. }
  1034. .tox .tox-rgb-form {
  1035. display: flex;
  1036. flex-direction: column;
  1037. justify-content: space-between;
  1038. }
  1039. .tox .tox-rgb-form div {
  1040. align-items: center;
  1041. display: flex;
  1042. justify-content: space-between;
  1043. margin-bottom: 5px;
  1044. width: inherit;
  1045. }
  1046. .tox .tox-rgb-form input {
  1047. min-width: 6em;
  1048. }
  1049. .tox .tox-rgb-form input.tox-invalid {
  1050. /* Need !important to override Chrome's focus styling unfortunately */
  1051. border: 1px solid #f00 !important;
  1052. box-shadow: 0 0 0 1px #f00;
  1053. }
  1054. .tox .tox-rgb-container {
  1055. position: relative;
  1056. }
  1057. .tox .tox-rgb-form .tox-invalid-icon {
  1058. align-content: center;
  1059. align-items: center;
  1060. display: none;
  1061. height: 100%;
  1062. position: absolute;
  1063. right: 0;
  1064. top: 0;
  1065. }
  1066. .tox .tox-rgb-form .tox-invalid-icon .tox-control-wrap__status-icon-invalid {
  1067. margin: 0;
  1068. }
  1069. .tox .tox-rgb-warning-note {
  1070. background-color: #f5cccc;
  1071. border: 1px solid #f0b3b3;
  1072. border-radius: 3px;
  1073. color: #77181f;
  1074. padding: 3px;
  1075. }
  1076. .tox input.tox-invalid + .tox-invalid-icon {
  1077. display: flex;
  1078. }
  1079. .tox .tox-rgb-form .tox-rgba-preview {
  1080. border: 1px solid black;
  1081. flex-grow: 2;
  1082. margin-bottom: 0;
  1083. }
  1084. .tox:not([dir=rtl]) .tox-sv-palette {
  1085. margin-right: 15px;
  1086. }
  1087. .tox:not([dir=rtl]) .tox-hue-slider {
  1088. margin-right: 15px;
  1089. }
  1090. .tox:not([dir=rtl]) .tox-hue-slider-thumb {
  1091. margin-left: -1px;
  1092. }
  1093. .tox:not([dir=rtl]) .tox-rgb-form label {
  1094. margin-right: 0.5em;
  1095. }
  1096. .tox[dir=rtl] .tox-sv-palette {
  1097. margin-left: 15px;
  1098. }
  1099. .tox[dir=rtl] .tox-hue-slider {
  1100. margin-left: 15px;
  1101. }
  1102. .tox[dir=rtl] .tox-hue-slider-thumb {
  1103. margin-right: -1px;
  1104. }
  1105. .tox[dir=rtl] .tox-rgb-form label {
  1106. margin-left: 0.5em;
  1107. }
  1108. .tox .tox-toolbar .tox-swatches,
  1109. .tox .tox-toolbar__primary .tox-swatches,
  1110. .tox .tox-toolbar__overflow .tox-swatches {
  1111. margin: 2px 0 3px 4px;
  1112. }
  1113. .tox .tox-collection--list .tox-collection__group .tox-swatches-menu {
  1114. border: 0;
  1115. margin: -4px 0;
  1116. }
  1117. .tox .tox-swatches__row {
  1118. display: flex;
  1119. }
  1120. @media (forced-colors: active) {
  1121. .tox .tox-swatches__row {
  1122. forced-color-adjust: none;
  1123. }
  1124. }
  1125. .tox .tox-swatch {
  1126. height: 30px;
  1127. transition: transform 0.15s, box-shadow 0.15s;
  1128. width: 30px;
  1129. }
  1130. .tox .tox-swatch:hover,
  1131. .tox .tox-swatch:focus {
  1132. box-shadow: 0 0 0 1px rgba(127, 127, 127, 0.3) inset;
  1133. transform: scale(0.8);
  1134. }
  1135. .tox .tox-swatch--remove {
  1136. align-items: center;
  1137. display: flex;
  1138. justify-content: center;
  1139. }
  1140. .tox .tox-swatch--remove svg path {
  1141. stroke: #e74c3c;
  1142. }
  1143. .tox .tox-swatches__picker-btn {
  1144. align-items: center;
  1145. background-color: transparent;
  1146. border: 0;
  1147. cursor: pointer;
  1148. display: flex;
  1149. height: 30px;
  1150. justify-content: center;
  1151. outline: none;
  1152. padding: 0;
  1153. width: 30px;
  1154. }
  1155. .tox .tox-swatches__picker-btn svg {
  1156. fill: #222f3e;
  1157. height: 24px;
  1158. width: 24px;
  1159. }
  1160. .tox .tox-swatches__picker-btn:hover {
  1161. background: #dee0e2;
  1162. }
  1163. .tox div.tox-swatch:not(.tox-swatch--remove) svg {
  1164. display: none;
  1165. fill: #222f3e;
  1166. height: 24px;
  1167. margin: calc((30px - 24px) / 2) calc((30px - 24px) / 2);
  1168. width: 24px;
  1169. }
  1170. .tox div.tox-swatch:not(.tox-swatch--remove) svg path {
  1171. fill: #fff;
  1172. paint-order: stroke;
  1173. stroke: #222f3e;
  1174. stroke-width: 2px;
  1175. }
  1176. .tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg {
  1177. display: block;
  1178. }
  1179. .tox:not([dir=rtl]) .tox-swatches__picker-btn {
  1180. margin-left: auto;
  1181. }
  1182. .tox[dir=rtl] .tox-swatches__picker-btn {
  1183. margin-right: auto;
  1184. }
  1185. .tox {
  1186. /* Animation for deleting a comment */
  1187. /* A comment fades to 0 when it is being deleted, then is removed */
  1188. }
  1189. .tox .tox-conversations {
  1190. display: flex;
  1191. flex-direction: column;
  1192. position: relative;
  1193. height: 100%;
  1194. /* This is to give the sidebar a consistent width. Need a solution for this */
  1195. min-width: 300px;
  1196. max-width: 300px;
  1197. width: 300px;
  1198. }
  1199. .tox .tox-conversations__header {
  1200. align-items: center;
  1201. display: flex;
  1202. justify-content: space-between;
  1203. box-shadow: 0px 4px 8px 0px rgba(34, 47, 62, 0.1);
  1204. padding: 8px 12px;
  1205. background: #fff;
  1206. }
  1207. .tox .tox-conversations__title {
  1208. font-size: 20px;
  1209. font-weight: 400;
  1210. padding: 8px 0 8px 0;
  1211. color: #222f3e;
  1212. line-height: 28px;
  1213. }
  1214. .tox .tox-comment {
  1215. background: #fff;
  1216. border: 1px solid #cccccc;
  1217. border-radius: 3px;
  1218. padding: 8px 8px 16px 8px;
  1219. position: relative;
  1220. }
  1221. .tox .tox-comment:hover {
  1222. box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  1223. }
  1224. .tox .tox-comment.tox-comment--selected {
  1225. background-color: #fff2c9;
  1226. border: 1px solid #ffcf30;
  1227. box-shadow: 0px 4px 8px 0px rgba(34, 47, 62, 0.1);
  1228. }
  1229. .tox .tox-comment.tox-comment--selected:focus {
  1230. border: 2px solid transparent;
  1231. margin: -1px;
  1232. }
  1233. .tox .tox-comment.tox-comment--selected:focus:not(:first-child) {
  1234. margin-top: 7px;
  1235. }
  1236. .tox .tox-comment.tox-comment--selected .tox-comment__single {
  1237. margin-bottom: 12px;
  1238. }
  1239. .tox .tox-comment.tox-comment--selected .tox-comment__single:focus {
  1240. position: relative;
  1241. }
  1242. .tox .tox-comment.tox-comment--selected .tox-comment__single:focus::after {
  1243. top: -9px;
  1244. pointer-events: none;
  1245. position: absolute;
  1246. content: "";
  1247. display: block;
  1248. bottom: -9px;
  1249. left: -9px;
  1250. right: -9px;
  1251. border-radius: 6px;
  1252. border: 2px solid transparent;
  1253. }
  1254. .tox .tox-comment__header {
  1255. align-items: center;
  1256. color: #222f3e;
  1257. display: flex;
  1258. justify-content: space-between;
  1259. }
  1260. .tox .tox-comment__date {
  1261. color: #222f3e;
  1262. font-size: 12px;
  1263. line-height: 18px;
  1264. }
  1265. .tox .tox-comment__body {
  1266. color: #222f3e;
  1267. font-size: 14px;
  1268. font-style: normal;
  1269. font-weight: normal;
  1270. line-height: 1.3;
  1271. margin-top: 8px;
  1272. position: relative;
  1273. text-transform: initial;
  1274. transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  1275. white-space: pre-wrap;
  1276. /* We remove the transitions when wanting to measure and jump straight to collapsed or expanded */
  1277. }
  1278. .tox .tox-comment__body.tox-comment__body--expanded {
  1279. max-height: 100em;
  1280. transition: max-height 1s ease-in-out;
  1281. }
  1282. .tox .tox-comment__body.tox-comment__body--pending {
  1283. transition: max-height 0s;
  1284. }
  1285. .tox .tox-comment__body p {
  1286. margin: 0;
  1287. }
  1288. .tox .tox-comment__body textarea {
  1289. resize: none;
  1290. white-space: normal;
  1291. width: 100%;
  1292. }
  1293. .tox .tox-comment__loading-text {
  1294. align-items: center;
  1295. color: #222f3e;
  1296. display: flex;
  1297. flex-direction: column;
  1298. position: relative;
  1299. }
  1300. .tox .tox-comment__loading-text > div {
  1301. padding-bottom: 16px;
  1302. }
  1303. .tox .tox-comment__overlaytext {
  1304. bottom: 0;
  1305. flex-direction: column;
  1306. font-size: 14px;
  1307. left: 0;
  1308. padding: 1em;
  1309. position: absolute;
  1310. right: 0;
  1311. top: 0;
  1312. z-index: 10;
  1313. }
  1314. .tox .tox-comment__overlaytext p {
  1315. background-color: #fff;
  1316. box-shadow: 0 0 8px 8px #fff;
  1317. color: #222f3e;
  1318. text-align: center;
  1319. }
  1320. .tox .tox-comment__overlaytext div:nth-of-type(2) {
  1321. font-size: 0.8em;
  1322. }
  1323. .tox .tox-comment__expander {
  1324. padding-top: 8px;
  1325. }
  1326. .tox .tox-comment__expander p {
  1327. color: rgba(34, 47, 62, 0.7);
  1328. font-size: 14px;
  1329. font-style: normal;
  1330. /* Need a focus highlight on the show more/less button */
  1331. }
  1332. .tox .tox-comment__expander p:focus {
  1333. font-weight: bold;
  1334. }
  1335. .tox .tox-comment__buttonspacing {
  1336. padding-top: 16px;
  1337. text-align: center;
  1338. }
  1339. .tox .tox-tbtn.tox-comment__mention-btn {
  1340. display: flex;
  1341. width: 34px;
  1342. height: 34px;
  1343. padding: 5px;
  1344. justify-content: center;
  1345. align-items: center;
  1346. margin: 0;
  1347. background-color: transparent;
  1348. }
  1349. .tox .tox-comment-thread {
  1350. background: #fff;
  1351. position: relative;
  1352. border-radius: 6px;
  1353. background-color: transparent;
  1354. }
  1355. .tox .tox-comment-thread > *:not(:first-child) {
  1356. margin-top: 8px;
  1357. }
  1358. .tox .tox-comment-thread__overlay::after {
  1359. background: #fff;
  1360. bottom: 0;
  1361. content: "";
  1362. display: flex;
  1363. left: 0;
  1364. opacity: 0.9;
  1365. position: absolute;
  1366. right: 0;
  1367. top: 0;
  1368. z-index: 5;
  1369. }
  1370. .tox .tox-comment__reply {
  1371. display: flex;
  1372. flex-shrink: 0;
  1373. flex-wrap: wrap;
  1374. justify-content: flex-end;
  1375. margin-top: 8px;
  1376. }
  1377. .tox .tox-comment__reply > *:first-child {
  1378. margin-bottom: 8px;
  1379. width: 100%;
  1380. }
  1381. .tox .tox-comment__edit {
  1382. display: flex;
  1383. flex-wrap: wrap;
  1384. justify-content: flex-end;
  1385. margin-top: 8px;
  1386. }
  1387. .tox .tox-comment__gradient::after {
  1388. background: linear-gradient(rgba(255, 255, 255, 0), #fff);
  1389. bottom: 0;
  1390. content: "";
  1391. display: block;
  1392. height: 5em;
  1393. margin-top: -40px;
  1394. position: absolute;
  1395. width: 100%;
  1396. }
  1397. .tox .tox-comment__overlay {
  1398. background: #fff;
  1399. bottom: 0;
  1400. display: flex;
  1401. flex-direction: column;
  1402. flex-grow: 1;
  1403. left: 0;
  1404. opacity: 0.9;
  1405. position: absolute;
  1406. right: 0;
  1407. text-align: center;
  1408. top: 0;
  1409. z-index: 5;
  1410. }
  1411. .tox .tox-comment__busy-spinner {
  1412. align-items: center;
  1413. background-color: #fff;
  1414. bottom: 0;
  1415. display: flex;
  1416. justify-content: center;
  1417. left: 0;
  1418. position: absolute;
  1419. right: 0;
  1420. top: 0;
  1421. z-index: 20;
  1422. }
  1423. .tox .tox-comment__scroll {
  1424. display: flex;
  1425. flex-direction: column;
  1426. flex-shrink: 1;
  1427. overflow: auto;
  1428. padding: 12px;
  1429. scroll-behavior: smooth;
  1430. }
  1431. .tox .tox-comment--disappearing {
  1432. transition: opacity 0.5s ease;
  1433. }
  1434. .tox .tox-comment[data-transitioning-destination="deleting"] {
  1435. opacity: 0;
  1436. }
  1437. .tox .tox-skeleton .tox-skeleton__line {
  1438. height: 16px;
  1439. width: 100%;
  1440. background: linear-gradient(to right, rgba(240, 240, 240, 0.5) 8%, rgba(240, 240, 240, 0.7) 18%, rgba(240, 240, 240, 0.5) 33%);
  1441. animation: wave 2s infinite ease-out;
  1442. }
  1443. .tox .tox-skeleton .tox-skeleton__circle {
  1444. height: 36px;
  1445. width: 36px;
  1446. margin-right: 8px;
  1447. border-radius: 100%;
  1448. background: linear-gradient(to right, rgba(240, 240, 240, 0.5) 8%, rgba(240, 240, 240, 0.7) 18%, rgba(240, 240, 240, 0.5) 33%);
  1449. animation: wave 2s infinite ease-out;
  1450. }
  1451. @keyframes wave {
  1452. 0% {
  1453. background-position: -268px 0;
  1454. }
  1455. 100% {
  1456. background-position: 268px 0;
  1457. }
  1458. }
  1459. .tox .tox-ring-loader {
  1460. width: 10px;
  1461. height: 10px;
  1462. border: 1px solid #FFF;
  1463. border-bottom-color: transparent;
  1464. border-radius: 50%;
  1465. display: inline-block;
  1466. box-sizing: border-box;
  1467. animation: rotation 1s linear infinite;
  1468. }
  1469. @keyframes rotation {
  1470. 0% {
  1471. transform: rotate(0deg);
  1472. }
  1473. 100% {
  1474. transform: rotate(360deg);
  1475. }
  1476. }
  1477. .tox:not([dir=rtl]) .tox-comment__edit {
  1478. margin-left: 8px;
  1479. }
  1480. .tox:not([dir=rtl]) .tox-comment__buttonspacing > *:last-child,
  1481. .tox:not([dir=rtl]) .tox-comment__edit > *:last-child,
  1482. .tox:not([dir=rtl]) .tox-comment__reply > *:last-child {
  1483. margin-left: 8px;
  1484. }
  1485. .tox[dir=rtl] .tox-comment__edit {
  1486. margin-right: 8px;
  1487. }
  1488. .tox[dir=rtl] .tox-comment__buttonspacing > *:last-child,
  1489. .tox[dir=rtl] .tox-comment__edit > *:last-child,
  1490. .tox[dir=rtl] .tox-comment__reply > *:last-child {
  1491. margin-right: 8px;
  1492. }
  1493. .tox .tox-user {
  1494. align-items: center;
  1495. display: flex;
  1496. }
  1497. .tox .tox-user__avatar svg {
  1498. fill: rgba(34, 47, 62, 0.7);
  1499. }
  1500. .tox .tox-user__avatar img {
  1501. border-radius: 50%;
  1502. height: 36px;
  1503. object-fit: cover;
  1504. vertical-align: middle;
  1505. width: 36px;
  1506. }
  1507. .tox .tox-user__name {
  1508. color: #222f3e;
  1509. font-size: 14px;
  1510. font-style: normal;
  1511. font-weight: bold;
  1512. line-height: 18px;
  1513. text-transform: none;
  1514. }
  1515. .tox:not([dir=rtl]) .tox-user__avatar svg,
  1516. .tox:not([dir=rtl]) .tox-user__avatar img {
  1517. margin-right: 8px;
  1518. }
  1519. .tox:not([dir=rtl]) .tox-user__avatar + .tox-user__name {
  1520. margin-left: 8px;
  1521. }
  1522. .tox[dir=rtl] .tox-user__avatar svg,
  1523. .tox[dir=rtl] .tox-user__avatar img {
  1524. margin-left: 8px;
  1525. }
  1526. .tox[dir=rtl] .tox-user__avatar + .tox-user__name {
  1527. margin-right: 8px;
  1528. }
  1529. .tox {
  1530. /* .tox-dialog-blocker-wrap {
  1531. //
  1532. } */
  1533. }
  1534. .tox .tox-dialog-wrap {
  1535. align-items: center;
  1536. bottom: 0;
  1537. display: flex;
  1538. justify-content: center;
  1539. left: 0;
  1540. position: fixed;
  1541. right: 0;
  1542. top: 0;
  1543. z-index: 1100;
  1544. }
  1545. .tox .tox-dialog-wrap__backdrop {
  1546. background-color: rgba(255, 255, 255, 0.75);
  1547. bottom: 0;
  1548. left: 0;
  1549. position: absolute;
  1550. right: 0;
  1551. top: 0;
  1552. z-index: 1;
  1553. }
  1554. .tox .tox-dialog-wrap__backdrop--opaque {
  1555. background-color: #fff;
  1556. }
  1557. .tox .tox-dialog {
  1558. background-color: #fff;
  1559. border-color: #cccccc;
  1560. border-radius: 3px;
  1561. border-style: solid;
  1562. border-width: 1px;
  1563. box-shadow: 0 16px 16px -10px rgba(34, 47, 62, 0.15), 0 0 40px 1px rgba(34, 47, 62, 0.15);
  1564. display: flex;
  1565. flex-direction: column;
  1566. max-height: 100%;
  1567. max-width: 480px;
  1568. overflow: hidden;
  1569. position: relative;
  1570. width: 95vw;
  1571. z-index: 2;
  1572. }
  1573. @media only screen and (max-width: 767px ) {
  1574. body:not(.tox-force-desktop) .tox .tox-dialog {
  1575. align-self: flex-start;
  1576. margin: 8px auto;
  1577. max-height: calc(100vh - 8px * 2);
  1578. width: calc(100vw - 16px);
  1579. }
  1580. }
  1581. .tox .tox-dialog-inline {
  1582. z-index: 1100;
  1583. }
  1584. .tox .tox-dialog__header {
  1585. align-items: center;
  1586. background-color: #fff;
  1587. border-bottom: none;
  1588. color: #222f3e;
  1589. display: flex;
  1590. font-size: 16px;
  1591. justify-content: space-between;
  1592. padding: 8px 16px 0 16px;
  1593. position: relative;
  1594. }
  1595. .tox .tox-dialog__header .tox-button {
  1596. z-index: 1;
  1597. }
  1598. .tox .tox-dialog__draghandle {
  1599. cursor: grab;
  1600. height: 100%;
  1601. left: 0;
  1602. position: absolute;
  1603. top: 0;
  1604. width: 100%;
  1605. }
  1606. .tox .tox-dialog__draghandle:active {
  1607. cursor: grabbing;
  1608. }
  1609. .tox .tox-dialog__dismiss {
  1610. margin-left: auto;
  1611. }
  1612. .tox .tox-dialog__title {
  1613. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  1614. font-size: 20px;
  1615. font-style: normal;
  1616. font-weight: normal;
  1617. line-height: 1.3;
  1618. margin: 0;
  1619. text-transform: none;
  1620. }
  1621. .tox .tox-dialog__body {
  1622. color: #222f3e;
  1623. display: flex;
  1624. flex: 1;
  1625. font-size: 16px;
  1626. font-style: normal;
  1627. font-weight: normal;
  1628. line-height: 1.3;
  1629. min-width: 0;
  1630. text-align: left;
  1631. text-transform: none;
  1632. }
  1633. @media only screen and (max-width: 767px ) {
  1634. body:not(.tox-force-desktop) .tox .tox-dialog__body {
  1635. flex-direction: column;
  1636. }
  1637. }
  1638. .tox .tox-dialog__body-nav {
  1639. align-items: flex-start;
  1640. display: flex;
  1641. flex-direction: column;
  1642. flex-shrink: 0;
  1643. padding: 16px 16px;
  1644. }
  1645. @media only screen and (min-width: 768px ) {
  1646. .tox .tox-dialog__body-nav {
  1647. max-width: 11em;
  1648. }
  1649. }
  1650. @media only screen and (max-width: 767px ) {
  1651. body:not(.tox-force-desktop) .tox .tox-dialog__body-nav {
  1652. flex-direction: row;
  1653. -webkit-overflow-scrolling: touch;
  1654. overflow-x: auto;
  1655. padding-bottom: 0;
  1656. }
  1657. }
  1658. .tox .tox-dialog__body-nav-item {
  1659. border-bottom: 2px solid transparent;
  1660. color: rgba(34, 47, 62, 0.7);
  1661. display: inline-block;
  1662. flex-shrink: 0;
  1663. font-size: 14px;
  1664. line-height: 1.3;
  1665. margin-bottom: 8px;
  1666. max-width: 13em;
  1667. -webkit-text-decoration: none;
  1668. text-decoration: none;
  1669. }
  1670. .tox .tox-dialog__body-nav-item:focus {
  1671. background-color: rgba(32, 122, 183, 0.1);
  1672. }
  1673. .tox .tox-dialog__body-nav-item--active {
  1674. border-bottom: 2px solid #207ab7;
  1675. color: #207ab7;
  1676. }
  1677. @media (forced-colors: active) {
  1678. .tox .tox-dialog__body-nav-item--active {
  1679. border-bottom: 2px solid highlight;
  1680. color: highlight;
  1681. }
  1682. }
  1683. .tox .tox-dialog__body-content {
  1684. box-sizing: border-box;
  1685. display: flex;
  1686. flex: 1;
  1687. flex-direction: column;
  1688. max-height: min(650px, calc(100vh - 110px));
  1689. overflow: auto;
  1690. -webkit-overflow-scrolling: touch;
  1691. padding: 16px 16px;
  1692. }
  1693. .tox .tox-dialog__body-content > * {
  1694. margin-bottom: 0;
  1695. margin-top: 16px;
  1696. }
  1697. .tox .tox-dialog__body-content > *:first-child {
  1698. margin-top: 0;
  1699. }
  1700. .tox .tox-dialog__body-content > *:last-child {
  1701. margin-bottom: 0;
  1702. }
  1703. .tox .tox-dialog__body-content > *:only-child {
  1704. margin-bottom: 0;
  1705. margin-top: 0;
  1706. }
  1707. .tox .tox-dialog__body-content a {
  1708. color: #207ab7;
  1709. cursor: pointer;
  1710. -webkit-text-decoration: underline;
  1711. text-decoration: underline;
  1712. }
  1713. .tox .tox-dialog__body-content a:hover,
  1714. .tox .tox-dialog__body-content a:focus {
  1715. color: #114060;
  1716. -webkit-text-decoration: underline;
  1717. text-decoration: underline;
  1718. }
  1719. .tox .tox-dialog__body-content a:focus-visible {
  1720. border-radius: 1px;
  1721. outline: 2px solid #207ab7;
  1722. outline-offset: 2px;
  1723. }
  1724. .tox .tox-dialog__body-content a:active {
  1725. color: #092335;
  1726. -webkit-text-decoration: underline;
  1727. text-decoration: underline;
  1728. }
  1729. .tox .tox-dialog__body-content svg {
  1730. fill: #222f3e;
  1731. }
  1732. .tox .tox-dialog__body-content strong {
  1733. font-weight: bold;
  1734. }
  1735. .tox .tox-dialog__body-content ul {
  1736. list-style-type: disc;
  1737. }
  1738. .tox .tox-dialog__body-content ul,
  1739. .tox .tox-dialog__body-content ol,
  1740. .tox .tox-dialog__body-content dd {
  1741. padding-inline-start: 2.5rem;
  1742. }
  1743. .tox .tox-dialog__body-content ul,
  1744. .tox .tox-dialog__body-content ol,
  1745. .tox .tox-dialog__body-content dl {
  1746. margin-bottom: 16px;
  1747. }
  1748. .tox .tox-dialog__body-content ul,
  1749. .tox .tox-dialog__body-content ol,
  1750. .tox .tox-dialog__body-content dl,
  1751. .tox .tox-dialog__body-content dd,
  1752. .tox .tox-dialog__body-content dt {
  1753. display: block;
  1754. margin-inline-end: 0;
  1755. margin-inline-start: 0;
  1756. }
  1757. .tox .tox-dialog__body-content .tox-form__group h1 {
  1758. color: #222f3e;
  1759. font-size: 20px;
  1760. font-style: normal;
  1761. font-weight: bold;
  1762. letter-spacing: normal;
  1763. margin-bottom: 16px;
  1764. margin-top: 2rem;
  1765. text-transform: none;
  1766. }
  1767. .tox .tox-dialog__body-content .tox-form__group h2 {
  1768. color: #222f3e;
  1769. font-size: 16px;
  1770. font-style: normal;
  1771. font-weight: bold;
  1772. letter-spacing: normal;
  1773. margin-bottom: 16px;
  1774. margin-top: 2rem;
  1775. text-transform: none;
  1776. }
  1777. .tox .tox-dialog__body-content .tox-form__group p {
  1778. margin-bottom: 16px;
  1779. }
  1780. .tox .tox-dialog__body-content .tox-form__group h1:first-child,
  1781. .tox .tox-dialog__body-content .tox-form__group h2:first-child,
  1782. .tox .tox-dialog__body-content .tox-form__group p:first-child {
  1783. margin-top: 0;
  1784. }
  1785. .tox .tox-dialog__body-content .tox-form__group h1:last-child,
  1786. .tox .tox-dialog__body-content .tox-form__group h2:last-child,
  1787. .tox .tox-dialog__body-content .tox-form__group p:last-child {
  1788. margin-bottom: 0;
  1789. }
  1790. .tox .tox-dialog__body-content .tox-form__group h1:only-child,
  1791. .tox .tox-dialog__body-content .tox-form__group h2:only-child,
  1792. .tox .tox-dialog__body-content .tox-form__group p:only-child {
  1793. margin-bottom: 0;
  1794. margin-top: 0;
  1795. }
  1796. .tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center {
  1797. text-align: center;
  1798. }
  1799. .tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end {
  1800. text-align: end;
  1801. }
  1802. .tox .tox-dialog--width-lg {
  1803. height: 650px;
  1804. max-width: 1200px;
  1805. }
  1806. .tox .tox-dialog--fullscreen {
  1807. height: 100%;
  1808. max-width: 100%;
  1809. }
  1810. .tox .tox-dialog--fullscreen .tox-dialog__body-content {
  1811. max-height: 100%;
  1812. }
  1813. .tox .tox-dialog--width-md {
  1814. max-width: 800px;
  1815. }
  1816. .tox .tox-dialog--width-md .tox-dialog__body-content {
  1817. overflow: auto;
  1818. }
  1819. .tox .tox-dialog__body-content--centered {
  1820. text-align: center;
  1821. }
  1822. .tox .tox-dialog__footer {
  1823. align-items: center;
  1824. background-color: #fff;
  1825. border-top: 1px solid #cccccc;
  1826. display: flex;
  1827. justify-content: space-between;
  1828. padding: 8px 16px;
  1829. }
  1830. .tox .tox-dialog__footer-start,
  1831. .tox .tox-dialog__footer-end {
  1832. display: flex;
  1833. }
  1834. .tox .tox-dialog__busy-spinner {
  1835. align-items: center;
  1836. background-color: rgba(255, 255, 255, 0.75);
  1837. bottom: 0;
  1838. display: flex;
  1839. justify-content: center;
  1840. left: 0;
  1841. position: absolute;
  1842. right: 0;
  1843. top: 0;
  1844. z-index: 3;
  1845. }
  1846. .tox .tox-dialog__table {
  1847. border-collapse: collapse;
  1848. width: 100%;
  1849. }
  1850. .tox .tox-dialog__table thead th {
  1851. font-weight: bold;
  1852. padding-bottom: 8px;
  1853. }
  1854. .tox .tox-dialog__table thead th:first-child {
  1855. padding-right: 8px;
  1856. }
  1857. .tox .tox-dialog__table tbody tr {
  1858. border-bottom: 1px solid #404040;
  1859. }
  1860. .tox .tox-dialog__table tbody tr:last-child {
  1861. border-bottom: none;
  1862. }
  1863. .tox .tox-dialog__table td {
  1864. padding-bottom: 8px;
  1865. padding-top: 8px;
  1866. }
  1867. .tox .tox-dialog__table td:first-child {
  1868. padding-right: 8px;
  1869. }
  1870. .tox .tox-dialog__iframe {
  1871. min-height: 200px;
  1872. }
  1873. .tox .tox-dialog__iframe.tox-dialog__iframe--opaque {
  1874. background: #fff;
  1875. }
  1876. .tox .tox-navobj-bordered {
  1877. position: relative;
  1878. }
  1879. .tox .tox-navobj-bordered::before {
  1880. border: 1px solid #cccccc;
  1881. border-radius: 3px;
  1882. content: '';
  1883. inset: 0;
  1884. opacity: 1;
  1885. pointer-events: none;
  1886. position: absolute;
  1887. z-index: 1;
  1888. }
  1889. .tox .tox-navobj-bordered iframe {
  1890. border-radius: 3px;
  1891. }
  1892. .tox .tox-navobj-bordered-focus.tox-navobj-bordered::before {
  1893. border-color: #207ab7;
  1894. box-shadow: none;
  1895. outline: 2px solid rgba(32, 122, 183, 0.25);
  1896. }
  1897. .tox .tox-dialog__popups {
  1898. position: absolute;
  1899. width: 100%;
  1900. z-index: 1100;
  1901. }
  1902. .tox .tox-dialog__body-iframe {
  1903. display: flex;
  1904. flex: 1;
  1905. flex-direction: column;
  1906. }
  1907. .tox .tox-dialog__body-iframe .tox-navobj {
  1908. display: flex;
  1909. flex: 1;
  1910. }
  1911. .tox .tox-dialog__body-iframe .tox-navobj :nth-child(2) {
  1912. flex: 1;
  1913. height: 100%;
  1914. }
  1915. .tox .tox-dialog-dock-fadeout {
  1916. opacity: 0;
  1917. visibility: hidden;
  1918. }
  1919. .tox .tox-dialog-dock-fadein {
  1920. opacity: 1;
  1921. visibility: visible;
  1922. }
  1923. .tox .tox-dialog-dock-transition {
  1924. transition: visibility 0s linear 0.3s, opacity 0.3s ease;
  1925. }
  1926. .tox .tox-dialog-dock-transition.tox-dialog-dock-fadein {
  1927. transition-delay: 0s;
  1928. }
  1929. @media only screen and (max-width: 767px ) {
  1930. body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav {
  1931. margin-right: 0;
  1932. }
  1933. }
  1934. @media only screen and (max-width: 767px ) {
  1935. body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child) {
  1936. margin-left: 8px;
  1937. }
  1938. }
  1939. .tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start > *,
  1940. .tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end > * {
  1941. margin-left: 8px;
  1942. }
  1943. .tox[dir=rtl] .tox-dialog__body {
  1944. text-align: right;
  1945. }
  1946. @media only screen and (max-width: 767px ) {
  1947. body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav {
  1948. margin-left: 0;
  1949. }
  1950. }
  1951. @media only screen and (max-width: 767px ) {
  1952. body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child) {
  1953. margin-right: 8px;
  1954. }
  1955. }
  1956. .tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start > *,
  1957. .tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end > * {
  1958. margin-right: 8px;
  1959. }
  1960. body.tox-dialog__disable-scroll {
  1961. overflow: hidden;
  1962. }
  1963. .tox .tox-dropzone-container {
  1964. display: flex;
  1965. flex: 1;
  1966. }
  1967. .tox .tox-dropzone {
  1968. align-items: center;
  1969. background: #fff;
  1970. border: 2px dashed #cccccc;
  1971. box-sizing: border-box;
  1972. display: flex;
  1973. flex-direction: column;
  1974. flex-grow: 1;
  1975. justify-content: center;
  1976. min-height: 100px;
  1977. padding: 10px;
  1978. }
  1979. .tox .tox-dropzone p {
  1980. color: rgba(34, 47, 62, 0.7);
  1981. margin: 0 0 16px 0;
  1982. }
  1983. .tox .tox-edit-area {
  1984. display: flex;
  1985. flex: 1;
  1986. overflow: hidden;
  1987. position: relative;
  1988. }
  1989. .tox .tox-edit-area::before {
  1990. border: 0 solid transparent;
  1991. border-radius: 4px;
  1992. content: '';
  1993. inset: 0;
  1994. opacity: 0;
  1995. pointer-events: none;
  1996. position: absolute;
  1997. transition: opacity 0.15s;
  1998. z-index: 1;
  1999. }
  2000. @media (forced-colors: active) {
  2001. .tox .tox-edit-area::before {
  2002. border: 0 solid highlight;
  2003. }
  2004. }
  2005. .tox .tox-edit-area__iframe {
  2006. background-color: #fff;
  2007. border: 0;
  2008. box-sizing: border-box;
  2009. flex: 1;
  2010. height: 100%;
  2011. position: absolute;
  2012. width: 100%;
  2013. }
  2014. .tox.tox-edit-focus .tox-edit-area::before {
  2015. opacity: 1;
  2016. }
  2017. .tox.tox-inline-edit-area {
  2018. border: 1px dotted #cccccc;
  2019. }
  2020. .tox .tox-editor-container {
  2021. display: flex;
  2022. flex: 1 1 auto;
  2023. flex-direction: column;
  2024. overflow: hidden;
  2025. }
  2026. .tox .tox-editor-header {
  2027. display: grid;
  2028. grid-template-columns: 1fr min-content;
  2029. z-index: 2;
  2030. }
  2031. .tox:not(.tox-tinymce-inline) .tox-editor-header {
  2032. background-color: #fff;
  2033. border-bottom: none;
  2034. box-shadow: none;
  2035. padding: 4px 0;
  2036. }
  2037. .tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition) {
  2038. transition: box-shadow 0.5s;
  2039. }
  2040. .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header {
  2041. border-top: 1px solid #cccccc;
  2042. box-shadow: none;
  2043. }
  2044. .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header {
  2045. background-color: #fff;
  2046. box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
  2047. padding: 4px 0;
  2048. }
  2049. .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header {
  2050. box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
  2051. }
  2052. .tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty {
  2053. background: none;
  2054. border: none;
  2055. box-shadow: none;
  2056. padding: 0;
  2057. }
  2058. .tox-editor-dock-fadeout {
  2059. opacity: 0;
  2060. visibility: hidden;
  2061. }
  2062. .tox-editor-dock-fadein {
  2063. opacity: 1;
  2064. visibility: visible;
  2065. }
  2066. .tox-editor-dock-transition {
  2067. transition: visibility 0s linear 0.25s, opacity 0.25s ease;
  2068. }
  2069. .tox-editor-dock-transition.tox-editor-dock-fadein {
  2070. transition-delay: 0s;
  2071. }
  2072. .tox .tox-control-wrap {
  2073. flex: 1;
  2074. position: relative;
  2075. }
  2076. .tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,
  2077. .tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,
  2078. .tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid {
  2079. display: none;
  2080. }
  2081. .tox .tox-control-wrap svg {
  2082. display: block;
  2083. }
  2084. .tox .tox-control-wrap__status-icon-wrap {
  2085. position: absolute;
  2086. top: 50%;
  2087. transform: translateY(-50%);
  2088. }
  2089. .tox .tox-control-wrap__status-icon-invalid svg {
  2090. fill: #c00;
  2091. }
  2092. .tox .tox-control-wrap__status-icon-unknown svg {
  2093. fill: orange;
  2094. }
  2095. .tox .tox-control-wrap__status-icon-valid svg {
  2096. fill: green;
  2097. }
  2098. .tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,
  2099. .tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,
  2100. .tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield {
  2101. padding-right: 32px;
  2102. }
  2103. .tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap {
  2104. right: 4px;
  2105. }
  2106. .tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,
  2107. .tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,
  2108. .tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield {
  2109. padding-left: 32px;
  2110. }
  2111. .tox[dir=rtl] .tox-control-wrap__status-icon-wrap {
  2112. left: 4px;
  2113. }
  2114. .tox .tox-custom-preview {
  2115. border-color: #cccccc;
  2116. border-radius: 3px;
  2117. border-style: solid;
  2118. border-width: 1px;
  2119. flex: 1;
  2120. padding: 8px;
  2121. }
  2122. .tox .tox-autocompleter {
  2123. max-width: 25em;
  2124. }
  2125. .tox .tox-autocompleter .tox-menu {
  2126. box-sizing: border-box;
  2127. max-width: 25em;
  2128. }
  2129. .tox .tox-autocompleter .tox-autocompleter-highlight {
  2130. font-weight: bold;
  2131. }
  2132. .tox .tox-color-input {
  2133. display: flex;
  2134. position: relative;
  2135. z-index: 1;
  2136. }
  2137. .tox .tox-color-input .tox-textfield {
  2138. z-index: -1;
  2139. }
  2140. .tox .tox-color-input span {
  2141. border-color: rgba(34 47 3.1%);
  2142. border-radius: 3px;
  2143. border-style: solid;
  2144. border-width: 1px;
  2145. box-shadow: none;
  2146. box-sizing: border-box;
  2147. height: 24px;
  2148. position: absolute;
  2149. top: 6px;
  2150. width: 24px;
  2151. }
  2152. @media (forced-colors: active) {
  2153. .tox .tox-color-input span {
  2154. border-color: currentColor;
  2155. border-width: 2px !important;
  2156. forced-color-adjust: none;
  2157. }
  2158. }
  2159. .tox .tox-color-input span:hover:not([aria-disabled=true]),
  2160. .tox .tox-color-input span:focus:not([aria-disabled=true]) {
  2161. border-color: #207ab7;
  2162. cursor: pointer;
  2163. }
  2164. .tox .tox-color-input span::before {
  2165. background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%), linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.25) 75%), linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.25) 75%);
  2166. background-position: 0 0, 0 6px, 6px -6px, -6px 0;
  2167. background-size: 12px 12px;
  2168. border: 1px solid #fff;
  2169. border-radius: 3px;
  2170. box-sizing: border-box;
  2171. content: '';
  2172. height: 24px;
  2173. left: -1px;
  2174. position: absolute;
  2175. top: -1px;
  2176. width: 24px;
  2177. z-index: -1;
  2178. }
  2179. @media (forced-colors: active) {
  2180. .tox .tox-color-input span::before {
  2181. border: none;
  2182. }
  2183. }
  2184. .tox .tox-color-input span[aria-disabled=true] {
  2185. cursor: not-allowed;
  2186. }
  2187. .tox:not([dir=rtl]) .tox-color-input {
  2188. /* stylelint-disable-next-line no-descending-specificity */
  2189. }
  2190. .tox:not([dir=rtl]) .tox-color-input .tox-textfield {
  2191. padding-left: 36px;
  2192. }
  2193. .tox:not([dir=rtl]) .tox-color-input span {
  2194. left: 6px;
  2195. }
  2196. .tox[dir="rtl"] .tox-color-input {
  2197. /* stylelint-disable-next-line no-descending-specificity */
  2198. }
  2199. .tox[dir="rtl"] .tox-color-input .tox-textfield {
  2200. padding-right: 36px;
  2201. }
  2202. .tox[dir="rtl"] .tox-color-input span {
  2203. right: 6px;
  2204. }
  2205. .tox .tox-label,
  2206. .tox .tox-toolbar-label {
  2207. color: rgba(34, 47, 62, 0.7);
  2208. display: block;
  2209. font-size: 14px;
  2210. font-style: normal;
  2211. font-weight: normal;
  2212. line-height: 1.3;
  2213. padding: 0 8px 0 0;
  2214. text-transform: none;
  2215. white-space: nowrap;
  2216. }
  2217. .tox .tox-toolbar-label {
  2218. padding: 0 8px;
  2219. }
  2220. .tox[dir=rtl] .tox-label {
  2221. padding: 0 0 0 8px;
  2222. }
  2223. .tox .tox-form {
  2224. display: flex;
  2225. flex: 1;
  2226. flex-direction: column;
  2227. }
  2228. .tox .tox-form__group {
  2229. box-sizing: border-box;
  2230. margin-bottom: 4px;
  2231. }
  2232. .tox .tox-form-group--maximize {
  2233. flex: 1;
  2234. }
  2235. .tox .tox-form__group--error {
  2236. color: #c00;
  2237. }
  2238. .tox .tox-form__group--collection {
  2239. display: flex;
  2240. }
  2241. .tox .tox-form__grid {
  2242. display: flex;
  2243. flex-direction: row;
  2244. flex-wrap: wrap;
  2245. justify-content: space-between;
  2246. }
  2247. .tox .tox-form__grid--2col > .tox-form__group {
  2248. width: calc(50% - (8px / 2));
  2249. }
  2250. .tox .tox-form__grid--3col > .tox-form__group {
  2251. width: calc(100% / 3 - (8px / 2));
  2252. }
  2253. .tox .tox-form__grid--4col > .tox-form__group {
  2254. width: calc(25% - (8px / 2));
  2255. }
  2256. .tox .tox-form__controls-h-stack {
  2257. align-items: center;
  2258. display: flex;
  2259. }
  2260. .tox .tox-form__group--inline {
  2261. align-items: center;
  2262. display: flex;
  2263. }
  2264. .tox .tox-form__group--stretched {
  2265. display: flex;
  2266. flex: 1;
  2267. flex-direction: column;
  2268. }
  2269. .tox .tox-form__group--stretched .tox-textarea {
  2270. flex: 1;
  2271. }
  2272. .tox .tox-form__group--stretched .tox-navobj {
  2273. display: flex;
  2274. flex: 1;
  2275. }
  2276. .tox .tox-form__group--stretched .tox-navobj :nth-child(2) {
  2277. flex: 1;
  2278. height: 100%;
  2279. }
  2280. .tox:not([dir=rtl]) .tox-form__controls-h-stack > *:not(:first-child) {
  2281. margin-left: 4px;
  2282. }
  2283. .tox[dir=rtl] .tox-form__controls-h-stack > *:not(:first-child) {
  2284. margin-right: 4px;
  2285. }
  2286. .tox .tox-lock.tox-locked .tox-lock-icon__unlock,
  2287. .tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock {
  2288. display: none;
  2289. }
  2290. .tox .tox-textfield,
  2291. .tox .tox-toolbar-textfield,
  2292. .tox .tox-listboxfield .tox-listbox--select,
  2293. .tox .tox-textarea,
  2294. .tox .tox-textarea-wrap .tox-textarea:focus {
  2295. appearance: none;
  2296. background-color: #fff;
  2297. border-color: #cccccc;
  2298. border-radius: 3px;
  2299. border-style: solid;
  2300. border-width: 1px;
  2301. box-shadow: none;
  2302. box-sizing: border-box;
  2303. color: #222f3e;
  2304. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2305. font-size: 16px;
  2306. line-height: 24px;
  2307. margin: 0;
  2308. min-height: 34px;
  2309. outline: none;
  2310. padding: 5px 4.75px;
  2311. resize: none;
  2312. width: 100%;
  2313. }
  2314. .tox .tox-textfield[disabled],
  2315. .tox .tox-textarea[disabled] {
  2316. background-color: #f2f2f2;
  2317. color: rgba(34, 47, 62, 0.85);
  2318. cursor: not-allowed;
  2319. }
  2320. .tox .tox-textfield:focus,
  2321. .tox .tox-listboxfield .tox-listbox--select:focus,
  2322. .tox .tox-textarea-wrap:focus-within,
  2323. .tox .tox-textarea:focus,
  2324. .tox .tox-custom-editor:focus-within {
  2325. background-color: #fff;
  2326. border-color: #207ab7;
  2327. box-shadow: none;
  2328. outline: 2px solid rgba(32, 122, 183, 0.25);
  2329. }
  2330. .tox .tox-toolbar-textfield {
  2331. border-width: 0;
  2332. margin-bottom: 3px;
  2333. margin-top: 2px;
  2334. max-width: 250px;
  2335. }
  2336. .tox .tox-naked-btn {
  2337. background-color: transparent;
  2338. border: 0;
  2339. border-color: transparent;
  2340. box-shadow: unset;
  2341. color: #207ab7;
  2342. cursor: pointer;
  2343. display: block;
  2344. margin: 0;
  2345. padding: 0;
  2346. }
  2347. .tox .tox-naked-btn svg {
  2348. display: block;
  2349. fill: #222f3e;
  2350. }
  2351. .tox:not([dir=rtl]) .tox-toolbar-textfield + * {
  2352. margin-left: 4px;
  2353. }
  2354. .tox[dir=rtl] .tox-toolbar-textfield + * {
  2355. margin-right: 4px;
  2356. }
  2357. .tox .tox-listboxfield {
  2358. cursor: pointer;
  2359. position: relative;
  2360. }
  2361. .tox .tox-listboxfield .tox-listbox--select[disabled] {
  2362. background-color: #f2f2f2;
  2363. color: rgba(34, 47, 62, 0.85);
  2364. cursor: not-allowed;
  2365. }
  2366. .tox .tox-listbox__select-label {
  2367. cursor: default;
  2368. flex: 1;
  2369. margin: 0 4px;
  2370. }
  2371. .tox .tox-listbox__select-chevron {
  2372. align-items: center;
  2373. display: flex;
  2374. justify-content: center;
  2375. width: 16px;
  2376. }
  2377. .tox .tox-listbox__select-chevron svg {
  2378. fill: #222f3e;
  2379. }
  2380. @media (forced-colors: active) {
  2381. .tox .tox-listbox__select-chevron svg {
  2382. fill: currentColor !important;
  2383. }
  2384. }
  2385. .tox .tox-listboxfield .tox-listbox--select {
  2386. align-items: center;
  2387. display: flex;
  2388. }
  2389. .tox:not([dir=rtl]) .tox-listboxfield svg {
  2390. right: 8px;
  2391. }
  2392. .tox[dir=rtl] .tox-listboxfield svg {
  2393. left: 8px;
  2394. }
  2395. .tox .tox-selectfield {
  2396. cursor: pointer;
  2397. position: relative;
  2398. }
  2399. .tox .tox-selectfield select {
  2400. appearance: none;
  2401. background-color: #fff;
  2402. border-color: #cccccc;
  2403. border-radius: 3px;
  2404. border-style: solid;
  2405. border-width: 1px;
  2406. box-shadow: none;
  2407. box-sizing: border-box;
  2408. color: #222f3e;
  2409. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  2410. font-size: 16px;
  2411. line-height: 24px;
  2412. margin: 0;
  2413. min-height: 34px;
  2414. outline: none;
  2415. padding: 5px 4.75px;
  2416. resize: none;
  2417. width: 100%;
  2418. }
  2419. .tox .tox-selectfield select[disabled] {
  2420. background-color: #f2f2f2;
  2421. color: rgba(34, 47, 62, 0.85);
  2422. cursor: not-allowed;
  2423. }
  2424. .tox .tox-selectfield select::-ms-expand {
  2425. display: none;
  2426. }
  2427. .tox .tox-selectfield select:focus {
  2428. background-color: #fff;
  2429. border-color: #207ab7;
  2430. box-shadow: none;
  2431. outline: 2px solid rgba(32, 122, 183, 0.25);
  2432. }
  2433. .tox .tox-selectfield svg {
  2434. pointer-events: none;
  2435. position: absolute;
  2436. top: 50%;
  2437. transform: translateY(-50%);
  2438. }
  2439. .tox:not([dir=rtl]) .tox-selectfield select[size="0"],
  2440. .tox:not([dir=rtl]) .tox-selectfield select[size="1"] {
  2441. padding-right: 24px;
  2442. }
  2443. .tox:not([dir=rtl]) .tox-selectfield svg {
  2444. right: 8px;
  2445. }
  2446. .tox[dir=rtl] .tox-selectfield select[size="0"],
  2447. .tox[dir=rtl] .tox-selectfield select[size="1"] {
  2448. padding-left: 24px;
  2449. }
  2450. .tox[dir=rtl] .tox-selectfield svg {
  2451. left: 8px;
  2452. }
  2453. .tox .tox-textarea-wrap {
  2454. border-color: #cccccc;
  2455. border-radius: 3px;
  2456. border-style: solid;
  2457. border-width: 1px;
  2458. display: flex;
  2459. flex: 1;
  2460. overflow: hidden;
  2461. }
  2462. .tox .tox-textarea {
  2463. appearance: textarea;
  2464. white-space: pre-wrap;
  2465. }
  2466. .tox .tox-textarea-wrap .tox-textarea {
  2467. border: none;
  2468. }
  2469. .tox .tox-textarea-wrap .tox-textarea:focus {
  2470. border: none;
  2471. }
  2472. .tox-fullscreen {
  2473. border: 0;
  2474. height: 100%;
  2475. margin: 0;
  2476. overflow: hidden;
  2477. overscroll-behavior: none;
  2478. padding: 0;
  2479. touch-action: pinch-zoom;
  2480. width: 100%;
  2481. }
  2482. .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle {
  2483. display: none;
  2484. }
  2485. .tox.tox-tinymce.tox-fullscreen,
  2486. .tox-shadowhost.tox-fullscreen {
  2487. left: 0;
  2488. position: fixed;
  2489. top: 0;
  2490. z-index: 1200;
  2491. }
  2492. .tox.tox-tinymce.tox-fullscreen {
  2493. background-color: transparent;
  2494. }
  2495. .tox-fullscreen .tox.tox-tinymce-aux,
  2496. .tox-fullscreen ~ .tox.tox-tinymce-aux {
  2497. z-index: 1201;
  2498. }
  2499. .tox .tox-help__more-link {
  2500. list-style: none;
  2501. margin-top: 1em;
  2502. }
  2503. .tox .tox-imagepreview {
  2504. background-color: #666;
  2505. height: 380px;
  2506. overflow: hidden;
  2507. position: relative;
  2508. width: 100%;
  2509. }
  2510. .tox .tox-imagepreview.tox-imagepreview__loaded {
  2511. overflow: auto;
  2512. }
  2513. .tox .tox-imagepreview__container {
  2514. display: flex;
  2515. left: 100vw;
  2516. position: absolute;
  2517. top: 100vw;
  2518. }
  2519. .tox .tox-imagepreview__image {
  2520. background: url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==);
  2521. }
  2522. .tox .tox-image-tools .tox-spacer {
  2523. flex: 1;
  2524. }
  2525. .tox .tox-image-tools .tox-bar {
  2526. align-items: center;
  2527. display: flex;
  2528. height: 60px;
  2529. justify-content: center;
  2530. }
  2531. .tox .tox-image-tools .tox-imagepreview,
  2532. .tox .tox-image-tools .tox-imagepreview + .tox-bar {
  2533. margin-top: 8px;
  2534. }
  2535. .tox .tox-image-tools .tox-croprect-block {
  2536. background: black;
  2537. filter: alpha(opacity=50);
  2538. opacity: 0.5;
  2539. position: absolute;
  2540. zoom: 1;
  2541. }
  2542. .tox .tox-image-tools .tox-croprect-handle {
  2543. border: 2px solid white;
  2544. height: 20px;
  2545. left: 0;
  2546. position: absolute;
  2547. top: 0;
  2548. width: 20px;
  2549. }
  2550. .tox .tox-image-tools .tox-croprect-handle-move {
  2551. border: 0;
  2552. cursor: move;
  2553. position: absolute;
  2554. }
  2555. .tox .tox-image-tools .tox-croprect-handle-nw {
  2556. border-width: 2px 0 0 2px;
  2557. cursor: nw-resize;
  2558. left: 100px;
  2559. margin: -2px 0 0 -2px;
  2560. top: 100px;
  2561. }
  2562. .tox .tox-image-tools .tox-croprect-handle-ne {
  2563. border-width: 2px 2px 0 0;
  2564. cursor: ne-resize;
  2565. left: 200px;
  2566. margin: -2px 0 0 -20px;
  2567. top: 100px;
  2568. }
  2569. .tox .tox-image-tools .tox-croprect-handle-sw {
  2570. border-width: 0 0 2px 2px;
  2571. cursor: sw-resize;
  2572. left: 100px;
  2573. margin: -20px 2px 0 -2px;
  2574. top: 200px;
  2575. }
  2576. .tox .tox-image-tools .tox-croprect-handle-se {
  2577. border-width: 0 2px 2px 0;
  2578. cursor: se-resize;
  2579. left: 200px;
  2580. margin: -20px 0 0 -20px;
  2581. top: 200px;
  2582. }
  2583. .tox .tox-insert-table-picker {
  2584. background-color: #fff;
  2585. display: flex;
  2586. flex-wrap: wrap;
  2587. width: 170px;
  2588. }
  2589. .tox .tox-insert-table-picker > div {
  2590. border-color: #cccccc;
  2591. border-style: solid;
  2592. border-width: 0 1px 1px 0;
  2593. box-sizing: border-box;
  2594. height: 17px;
  2595. width: 17px;
  2596. }
  2597. .tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
  2598. margin: 0 -4px;
  2599. }
  2600. .tox .tox-insert-table-picker .tox-insert-table-picker__selected {
  2601. background-color: rgba(32, 122, 183, 0.5);
  2602. border-color: rgba(32, 122, 183, 0.5);
  2603. }
  2604. @media (forced-colors: active) {
  2605. .tox .tox-insert-table-picker .tox-insert-table-picker__selected {
  2606. border-color: Highlight;
  2607. filter: contrast(50%);
  2608. }
  2609. }
  2610. .tox .tox-insert-table-picker__label {
  2611. color: rgba(34, 47, 62, 0.7);
  2612. display: block;
  2613. font-size: 14px;
  2614. padding: 4px;
  2615. text-align: center;
  2616. width: 100%;
  2617. }
  2618. .tox:not([dir=rtl]) {
  2619. /* stylelint-disable-next-line no-descending-specificity */
  2620. }
  2621. .tox:not([dir=rtl]) .tox-insert-table-picker > div:nth-child(10n) {
  2622. border-right: 0;
  2623. }
  2624. .tox[dir=rtl] {
  2625. /* stylelint-disable-next-line no-descending-specificity */
  2626. }
  2627. .tox[dir=rtl] .tox-insert-table-picker > div:nth-child(10n+1) {
  2628. border-right: 0;
  2629. }
  2630. .tox {
  2631. /* stylelint-disable */
  2632. /* stylelint-enable */
  2633. }
  2634. .tox .tox-menu {
  2635. background-color: #fff;
  2636. border: 1px solid #cccccc;
  2637. border-radius: 3px;
  2638. box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  2639. display: inline-block;
  2640. overflow: hidden;
  2641. vertical-align: top;
  2642. z-index: 1150;
  2643. }
  2644. .tox .tox-menu.tox-collection.tox-collection--list {
  2645. padding: 0 0;
  2646. }
  2647. .tox .tox-menu.tox-collection.tox-collection--toolbar {
  2648. padding: 4px;
  2649. }
  2650. .tox .tox-menu.tox-collection.tox-collection--grid {
  2651. padding: 4px;
  2652. }
  2653. @media only screen and (min-width: 768px ) {
  2654. .tox .tox-menu .tox-collection__item-label {
  2655. overflow-wrap: break-word;
  2656. word-break: normal;
  2657. }
  2658. .tox .tox-dialog__popups .tox-menu .tox-collection__item-label {
  2659. word-break: break-all;
  2660. }
  2661. }
  2662. .tox .tox-menu__label h1,
  2663. .tox .tox-menu__label h2,
  2664. .tox .tox-menu__label h3,
  2665. .tox .tox-menu__label h4,
  2666. .tox .tox-menu__label h5,
  2667. .tox .tox-menu__label h6,
  2668. .tox .tox-menu__label p,
  2669. .tox .tox-menu__label blockquote,
  2670. .tox .tox-menu__label code {
  2671. margin: 0;
  2672. }
  2673. .tox .tox-menubar {
  2674. background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff;
  2675. background-color: #fff;
  2676. display: flex;
  2677. flex: 0 0 auto;
  2678. flex-shrink: 0;
  2679. flex-wrap: wrap;
  2680. grid-column: 1 / -1;
  2681. grid-row: 1;
  2682. padding: 0 4px 0 4px;
  2683. }
  2684. .tox .tox-promotion + .tox-menubar {
  2685. grid-column: 1;
  2686. }
  2687. .tox .tox-promotion {
  2688. background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff;
  2689. background-color: #fff;
  2690. grid-column: 2;
  2691. grid-row: 1;
  2692. padding-inline-end: 8px;
  2693. padding-inline-start: 4px;
  2694. padding-top: 5px;
  2695. }
  2696. .tox .tox-promotion-link {
  2697. align-items: unsafe center;
  2698. background-color: #E8F1F8;
  2699. border-radius: 5px;
  2700. color: #086BE6;
  2701. cursor: pointer;
  2702. display: flex;
  2703. font-size: 14px;
  2704. height: 26.6px;
  2705. padding: 4px 8px;
  2706. white-space: nowrap;
  2707. }
  2708. .tox .tox-promotion-link:hover {
  2709. background-color: #B4D7FF;
  2710. }
  2711. .tox .tox-promotion-link:focus {
  2712. background-color: #D9EDF7;
  2713. }
  2714. /* Deprecated. Remove in next major release */
  2715. .tox .tox-mbtn {
  2716. align-items: center;
  2717. background: #fff;
  2718. border: 0;
  2719. border-radius: 3px;
  2720. box-shadow: none;
  2721. color: #222f3e;
  2722. display: flex;
  2723. flex: 0 0 auto;
  2724. font-size: 14px;
  2725. font-style: normal;
  2726. font-weight: normal;
  2727. height: 34px;
  2728. justify-content: center;
  2729. margin: 2px 0 3px 0;
  2730. outline: none;
  2731. padding: 0 4px;
  2732. text-transform: none;
  2733. width: auto;
  2734. }
  2735. .tox .tox-mbtn[disabled] {
  2736. background-color: #fff;
  2737. border: 0;
  2738. box-shadow: none;
  2739. color: rgba(34, 47, 62, 0.5);
  2740. cursor: not-allowed;
  2741. }
  2742. .tox .tox-mbtn:focus:not(:disabled) {
  2743. background: #dee0e2;
  2744. border: 0;
  2745. box-shadow: none;
  2746. color: #222f3e;
  2747. position: relative;
  2748. z-index: 1;
  2749. }
  2750. .tox .tox-mbtn:focus:not(:disabled)::after {
  2751. border-radius: 3px;
  2752. bottom: 0;
  2753. box-shadow: 0 0 0 0 transparent ;
  2754. content: '';
  2755. left: 0;
  2756. position: absolute;
  2757. right: 0;
  2758. top: 0;
  2759. }
  2760. @media (forced-colors: active) {
  2761. .tox .tox-mbtn:focus:not(:disabled)::after {
  2762. border: 2px solid highlight;
  2763. }
  2764. }
  2765. .tox .tox-mbtn--active,
  2766. .tox .tox-mbtn:not(:disabled).tox-mbtn--active:focus {
  2767. background: #c8cbcf;
  2768. border: 0;
  2769. box-shadow: none;
  2770. color: #222f3e;
  2771. }
  2772. .tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
  2773. background: #dee0e2;
  2774. border: 0;
  2775. box-shadow: none;
  2776. color: #222f3e;
  2777. }
  2778. .tox .tox-mbtn__select-label {
  2779. cursor: default;
  2780. font-weight: normal;
  2781. margin: 0 4px;
  2782. }
  2783. .tox .tox-mbtn[disabled] .tox-mbtn__select-label {
  2784. cursor: not-allowed;
  2785. }
  2786. .tox .tox-mbtn__select-chevron {
  2787. align-items: center;
  2788. display: flex;
  2789. justify-content: center;
  2790. width: 16px;
  2791. display: none;
  2792. }
  2793. .tox .tox-notification {
  2794. border-radius: 3px;
  2795. border-style: solid;
  2796. border-width: 1px;
  2797. box-shadow: none;
  2798. box-sizing: border-box;
  2799. display: grid;
  2800. font-size: 14px;
  2801. font-weight: normal;
  2802. grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  2803. margin-left: auto;
  2804. margin-right: auto;
  2805. margin-top: 4px;
  2806. opacity: 0;
  2807. padding: 4px;
  2808. transition: transform 100ms ease-in, opacity 150ms ease-in;
  2809. width: max-content;
  2810. }
  2811. .tox .tox-notification a {
  2812. cursor: pointer;
  2813. -webkit-text-decoration: underline;
  2814. text-decoration: underline;
  2815. }
  2816. .tox .tox-notification p {
  2817. font-size: 14px;
  2818. font-weight: normal;
  2819. }
  2820. .tox .tox-notification:focus {
  2821. border-color: #207ab7;
  2822. box-shadow: none;
  2823. }
  2824. .tox .tox-notification--in {
  2825. opacity: 1;
  2826. }
  2827. .tox .tox-notification--success {
  2828. background-color: #e4eeda;
  2829. border-color: #d7e6c8;
  2830. color: #222f3e;
  2831. }
  2832. .tox .tox-notification--success p {
  2833. color: #222f3e;
  2834. }
  2835. .tox .tox-notification--success a {
  2836. color: #517342;
  2837. }
  2838. .tox .tox-notification--success a:hover,
  2839. .tox .tox-notification--success a:focus {
  2840. color: #24321d;
  2841. -webkit-text-decoration: underline;
  2842. text-decoration: underline;
  2843. }
  2844. .tox .tox-notification--success a:focus-visible {
  2845. border-radius: 1px;
  2846. outline: 2px solid #517342;
  2847. outline-offset: 2px;
  2848. }
  2849. .tox .tox-notification--success a:active {
  2850. color: #0d120a;
  2851. -webkit-text-decoration: underline;
  2852. text-decoration: underline;
  2853. }
  2854. .tox .tox-notification--success svg {
  2855. fill: #222f3e;
  2856. }
  2857. .tox .tox-notification--error {
  2858. background-color: #f5cccc;
  2859. border-color: #f0b3b3;
  2860. color: #222f3e;
  2861. /* stylelint-disable-next-line no-descending-specificity */
  2862. }
  2863. .tox .tox-notification--error p {
  2864. color: #222f3e;
  2865. }
  2866. .tox .tox-notification--error a {
  2867. color: #77181f;
  2868. }
  2869. .tox .tox-notification--error a:hover,
  2870. .tox .tox-notification--error a:focus {
  2871. color: #220709;
  2872. -webkit-text-decoration: underline;
  2873. text-decoration: underline;
  2874. }
  2875. .tox .tox-notification--error a:focus-visible {
  2876. border-radius: 1px;
  2877. outline: 2px solid #77181f;
  2878. outline-offset: 2px;
  2879. }
  2880. .tox .tox-notification--error a:active {
  2881. color: #000000;
  2882. -webkit-text-decoration: underline;
  2883. text-decoration: underline;
  2884. }
  2885. .tox .tox-notification--error svg {
  2886. fill: #222f3e;
  2887. }
  2888. .tox .tox-notification--warn,
  2889. .tox .tox-notification--warning {
  2890. background-color: #fff5cc;
  2891. border-color: #fff0b3;
  2892. color: #222f3e;
  2893. /* stylelint-disable-next-line no-descending-specificity */
  2894. }
  2895. .tox .tox-notification--warn p,
  2896. .tox .tox-notification--warning p {
  2897. color: #222f3e;
  2898. }
  2899. .tox .tox-notification--warn a,
  2900. .tox .tox-notification--warning a {
  2901. color: #7a6e25;
  2902. }
  2903. .tox .tox-notification--warn a:hover,
  2904. .tox .tox-notification--warning a:hover,
  2905. .tox .tox-notification--warn a:focus,
  2906. .tox .tox-notification--warning a:focus {
  2907. color: #2c280d;
  2908. -webkit-text-decoration: underline;
  2909. text-decoration: underline;
  2910. }
  2911. .tox .tox-notification--warn a:focus-visible,
  2912. .tox .tox-notification--warning a:focus-visible {
  2913. border-radius: 1px;
  2914. outline: 2px solid #7a6e25;
  2915. outline-offset: 2px;
  2916. }
  2917. .tox .tox-notification--warn a:active,
  2918. .tox .tox-notification--warning a:active {
  2919. color: #050502;
  2920. -webkit-text-decoration: underline;
  2921. text-decoration: underline;
  2922. }
  2923. .tox .tox-notification--warn svg,
  2924. .tox .tox-notification--warning svg {
  2925. fill: #222f3e;
  2926. }
  2927. .tox .tox-notification--info {
  2928. background-color: #d6e7fb;
  2929. border-color: #c1dbf9;
  2930. color: #222f3e;
  2931. /* stylelint-disable-next-line no-descending-specificity */
  2932. }
  2933. .tox .tox-notification--info p {
  2934. color: #222f3e;
  2935. }
  2936. .tox .tox-notification--info a {
  2937. color: #2a64a6;
  2938. }
  2939. .tox .tox-notification--info a:hover,
  2940. .tox .tox-notification--info a:focus {
  2941. color: #163355;
  2942. -webkit-text-decoration: underline;
  2943. text-decoration: underline;
  2944. }
  2945. .tox .tox-notification--info a:focus-visible {
  2946. border-radius: 1px;
  2947. outline: 2px solid #2a64a6;
  2948. outline-offset: 2px;
  2949. }
  2950. .tox .tox-notification--info a:active {
  2951. color: #0b1a2c;
  2952. -webkit-text-decoration: underline;
  2953. text-decoration: underline;
  2954. }
  2955. .tox .tox-notification--info svg {
  2956. fill: #222f3e;
  2957. }
  2958. .tox .tox-notification__body {
  2959. align-self: center;
  2960. color: #222f3e;
  2961. font-size: 14px;
  2962. grid-column-end: 3;
  2963. grid-column-start: 2;
  2964. grid-row-end: 2;
  2965. grid-row-start: 1;
  2966. text-align: center;
  2967. white-space: normal;
  2968. word-break: break-all;
  2969. word-break: break-word;
  2970. }
  2971. .tox .tox-notification__body > * {
  2972. margin: 0;
  2973. }
  2974. .tox .tox-notification__body > * + * {
  2975. margin-top: 1rem;
  2976. }
  2977. .tox .tox-notification__icon {
  2978. align-self: center;
  2979. grid-column-end: 2;
  2980. grid-column-start: 1;
  2981. grid-row-end: 2;
  2982. grid-row-start: 1;
  2983. justify-self: end;
  2984. }
  2985. .tox .tox-notification__icon svg {
  2986. display: block;
  2987. }
  2988. .tox .tox-notification__dismiss {
  2989. align-self: start;
  2990. grid-column-end: 4;
  2991. grid-column-start: 3;
  2992. grid-row-end: 2;
  2993. grid-row-start: 1;
  2994. justify-self: end;
  2995. }
  2996. .tox .tox-notification .tox-progress-bar {
  2997. grid-column-end: 4;
  2998. grid-column-start: 1;
  2999. grid-row-end: 3;
  3000. grid-row-start: 2;
  3001. justify-self: center;
  3002. }
  3003. .tox .tox-notification-container-dock-fadeout {
  3004. opacity: 0;
  3005. visibility: hidden;
  3006. }
  3007. .tox .tox-notification-container-dock-fadein {
  3008. opacity: 1;
  3009. visibility: visible;
  3010. }
  3011. .tox .tox-notification-container-dock-transition {
  3012. transition: visibility 0s linear 0.3s, opacity 0.3s ease;
  3013. }
  3014. .tox .tox-notification-container-dock-transition.tox-notification-container-dock-fadein {
  3015. transition-delay: 0s;
  3016. }
  3017. .tox .tox-pop {
  3018. display: inline-block;
  3019. position: relative;
  3020. }
  3021. .tox .tox-pop--resizing {
  3022. transition: width 0.1s ease;
  3023. }
  3024. .tox .tox-pop--resizing .tox-toolbar,
  3025. .tox .tox-pop--resizing .tox-toolbar__group {
  3026. flex-wrap: nowrap;
  3027. }
  3028. .tox .tox-pop--transition {
  3029. transition: 0.15s ease;
  3030. transition-property: left, right, top, bottom;
  3031. }
  3032. .tox .tox-pop--transition::before,
  3033. .tox .tox-pop--transition::after {
  3034. transition: all 0.15s, visibility 0s, opacity 0.075s ease 0.075s;
  3035. }
  3036. .tox .tox-pop__dialog {
  3037. background-color: #fff;
  3038. border: 1px solid #cccccc;
  3039. border-radius: 3px;
  3040. box-shadow: 0 0 2px 0 rgba(34, 47, 62, 0.2), 0 4px 8px 0 rgba(34, 47, 62, 0.15);
  3041. min-width: 0;
  3042. overflow: hidden;
  3043. }
  3044. .tox .tox-pop__dialog > *:not(.tox-toolbar) {
  3045. margin: 4px 4px 4px 8px;
  3046. }
  3047. .tox .tox-pop__dialog .tox-toolbar {
  3048. background-color: transparent;
  3049. margin-bottom: -1px;
  3050. }
  3051. .tox .tox-pop::before,
  3052. .tox .tox-pop::after {
  3053. border-style: solid;
  3054. content: '';
  3055. display: block;
  3056. height: 0;
  3057. opacity: 1;
  3058. position: absolute;
  3059. width: 0;
  3060. }
  3061. @media (forced-colors: active) {
  3062. .tox .tox-pop::before,
  3063. .tox .tox-pop::after {
  3064. content: none;
  3065. }
  3066. }
  3067. .tox .tox-pop.tox-pop--inset::before,
  3068. .tox .tox-pop.tox-pop--inset::after {
  3069. opacity: 0;
  3070. transition: all 0s 0.15s, visibility 0s, opacity 0.075s ease;
  3071. }
  3072. .tox .tox-pop.tox-pop--bottom::before,
  3073. .tox .tox-pop.tox-pop--bottom::after {
  3074. left: 50%;
  3075. top: 100%;
  3076. }
  3077. .tox .tox-pop.tox-pop--bottom::after {
  3078. border-color: #fff transparent transparent transparent;
  3079. border-width: 8px;
  3080. margin-left: -8px;
  3081. margin-top: -1px;
  3082. }
  3083. .tox .tox-pop.tox-pop--bottom::before {
  3084. border-color: #cccccc transparent transparent transparent;
  3085. border-width: 9px;
  3086. margin-left: -9px;
  3087. }
  3088. .tox .tox-pop.tox-pop--top::before,
  3089. .tox .tox-pop.tox-pop--top::after {
  3090. left: 50%;
  3091. top: 0;
  3092. transform: translateY(-100%);
  3093. }
  3094. .tox .tox-pop.tox-pop--top::after {
  3095. border-color: transparent transparent #fff transparent;
  3096. border-width: 8px;
  3097. margin-left: -8px;
  3098. margin-top: 1px;
  3099. }
  3100. .tox .tox-pop.tox-pop--top::before {
  3101. border-color: transparent transparent #cccccc transparent;
  3102. border-width: 9px;
  3103. margin-left: -9px;
  3104. }
  3105. .tox .tox-pop.tox-pop--left::before,
  3106. .tox .tox-pop.tox-pop--left::after {
  3107. left: 0;
  3108. top: calc(50% - 1px);
  3109. transform: translateY(-50%);
  3110. }
  3111. .tox .tox-pop.tox-pop--left::after {
  3112. border-color: transparent #fff transparent transparent;
  3113. border-width: 8px;
  3114. margin-left: -15px;
  3115. }
  3116. .tox .tox-pop.tox-pop--left::before {
  3117. border-color: transparent #cccccc transparent transparent;
  3118. border-width: 10px;
  3119. margin-left: -19px;
  3120. }
  3121. .tox .tox-pop.tox-pop--right::before,
  3122. .tox .tox-pop.tox-pop--right::after {
  3123. left: 100%;
  3124. top: calc(50% + 1px);
  3125. transform: translateY(-50%);
  3126. }
  3127. .tox .tox-pop.tox-pop--right::after {
  3128. border-color: transparent transparent transparent #fff;
  3129. border-width: 8px;
  3130. margin-left: -1px;
  3131. }
  3132. .tox .tox-pop.tox-pop--right::before {
  3133. border-color: transparent transparent transparent #cccccc;
  3134. border-width: 10px;
  3135. margin-left: -1px;
  3136. }
  3137. .tox .tox-pop.tox-pop--align-left::before,
  3138. .tox .tox-pop.tox-pop--align-left::after {
  3139. left: 20px;
  3140. }
  3141. .tox .tox-pop.tox-pop--align-right::before,
  3142. .tox .tox-pop.tox-pop--align-right::after {
  3143. left: calc(100% - 20px);
  3144. }
  3145. .tox .tox-sidebar-wrap {
  3146. display: flex;
  3147. flex-direction: row;
  3148. flex-grow: 1;
  3149. min-height: 0;
  3150. }
  3151. .tox .tox-sidebar {
  3152. background-color: #f0f0f0;
  3153. display: flex;
  3154. flex-direction: row;
  3155. justify-content: flex-end;
  3156. }
  3157. .tox .tox-sidebar__slider {
  3158. display: flex;
  3159. overflow: hidden;
  3160. }
  3161. .tox .tox-sidebar__pane-container {
  3162. display: flex;
  3163. }
  3164. .tox .tox-sidebar__pane {
  3165. display: flex;
  3166. }
  3167. .tox .tox-sidebar--sliding-closed {
  3168. opacity: 0;
  3169. }
  3170. .tox .tox-sidebar--sliding-open {
  3171. opacity: 1;
  3172. }
  3173. .tox .tox-sidebar--sliding-growing,
  3174. .tox .tox-sidebar--sliding-shrinking {
  3175. transition: width 0.5s ease, opacity 0.5s ease;
  3176. }
  3177. .tox .tox-selector {
  3178. background-color: #4099ff;
  3179. border-color: #4099ff;
  3180. border-style: solid;
  3181. border-width: 1px;
  3182. box-sizing: border-box;
  3183. display: inline-block;
  3184. height: 10px;
  3185. position: absolute;
  3186. width: 10px;
  3187. }
  3188. .tox.tox-platform-touch .tox-selector {
  3189. height: 12px;
  3190. width: 12px;
  3191. }
  3192. .tox .tox-slider {
  3193. align-items: center;
  3194. display: flex;
  3195. flex: 1;
  3196. height: 24px;
  3197. justify-content: center;
  3198. position: relative;
  3199. }
  3200. .tox .tox-slider__rail {
  3201. background-color: transparent;
  3202. border: 1px solid #cccccc;
  3203. border-radius: 3px;
  3204. height: 10px;
  3205. min-width: 120px;
  3206. width: 100%;
  3207. }
  3208. .tox .tox-slider__handle {
  3209. background-color: #207ab7;
  3210. border: 2px solid #185d8c;
  3211. border-radius: 3px;
  3212. box-shadow: none;
  3213. height: 24px;
  3214. left: 50%;
  3215. position: absolute;
  3216. top: 50%;
  3217. transform: translateX(-50%) translateY(-50%);
  3218. width: 14px;
  3219. }
  3220. .tox .tox-form__controls-h-stack > .tox-slider:not(:first-of-type) {
  3221. margin-inline-start: 8px;
  3222. }
  3223. .tox .tox-form__controls-h-stack > .tox-form__group + .tox-slider {
  3224. margin-inline-start: 32px;
  3225. }
  3226. .tox .tox-form__controls-h-stack > .tox-slider + .tox-form__group {
  3227. margin-inline-start: 32px;
  3228. }
  3229. .tox .tox-source-code {
  3230. overflow: auto;
  3231. }
  3232. .tox .tox-spinner {
  3233. display: flex;
  3234. }
  3235. .tox .tox-spinner > div {
  3236. animation: tam-bouncing-dots 1.5s ease-in-out 0s infinite both;
  3237. background-color: rgba(34, 47, 62, 0.7);
  3238. border-radius: 100%;
  3239. height: 8px;
  3240. width: 8px;
  3241. }
  3242. .tox .tox-spinner > div:nth-child(1) {
  3243. animation-delay: -0.32s;
  3244. }
  3245. .tox .tox-spinner > div:nth-child(2) {
  3246. animation-delay: -0.16s;
  3247. }
  3248. @keyframes tam-bouncing-dots {
  3249. 0%,
  3250. 80%,
  3251. 100% {
  3252. transform: scale(0);
  3253. }
  3254. 40% {
  3255. transform: scale(1);
  3256. }
  3257. }
  3258. .tox:not([dir=rtl]) .tox-spinner > div:not(:first-child) {
  3259. margin-left: 4px;
  3260. }
  3261. .tox[dir=rtl] .tox-spinner > div:not(:first-child) {
  3262. margin-right: 4px;
  3263. }
  3264. .tox .tox-statusbar {
  3265. align-items: center;
  3266. background-color: #fff;
  3267. border-top: 1px solid #cccccc;
  3268. color: rgba(34, 47, 62, 0.7);
  3269. display: flex;
  3270. flex: 0 0 auto;
  3271. font-size: 12px;
  3272. font-weight: normal;
  3273. height: 18px;
  3274. overflow: hidden;
  3275. padding: 0 8px;
  3276. position: relative;
  3277. text-transform: uppercase;
  3278. }
  3279. .tox .tox-statusbar__path {
  3280. display: flex;
  3281. flex: 1 1 auto;
  3282. text-overflow: ellipsis;
  3283. white-space: nowrap;
  3284. }
  3285. .tox .tox-statusbar__right-container {
  3286. display: flex;
  3287. justify-content: flex-end;
  3288. white-space: nowrap;
  3289. }
  3290. .tox .tox-statusbar__help-text {
  3291. text-align: center;
  3292. }
  3293. .tox .tox-statusbar__text-container {
  3294. align-items: flex-start;
  3295. display: flex;
  3296. flex: 1 1 auto;
  3297. height: 16px;
  3298. justify-content: space-between;
  3299. }
  3300. @media only screen and (min-width: 768px ) {
  3301. .tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols > .tox-statusbar__help-text,
  3302. .tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols > .tox-statusbar__right-container,
  3303. .tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols > .tox-statusbar__path {
  3304. flex: 0 0 calc(100% / 3);
  3305. }
  3306. }
  3307. .tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end {
  3308. justify-content: flex-end;
  3309. }
  3310. .tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start {
  3311. justify-content: flex-start;
  3312. }
  3313. .tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around {
  3314. justify-content: space-around;
  3315. }
  3316. .tox .tox-statusbar__path > * {
  3317. display: inline;
  3318. white-space: nowrap;
  3319. }
  3320. .tox .tox-statusbar__wordcount {
  3321. flex: 0 0 auto;
  3322. margin-left: 1ch;
  3323. }
  3324. @media only screen and (max-width: 767px ) {
  3325. .tox .tox-statusbar__text-container .tox-statusbar__help-text {
  3326. display: none;
  3327. }
  3328. .tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child {
  3329. display: block;
  3330. }
  3331. }
  3332. .tox .tox-statusbar a,
  3333. .tox .tox-statusbar__path-item,
  3334. .tox .tox-statusbar__wordcount {
  3335. color: rgba(34, 47, 62, 0.7);
  3336. position: relative;
  3337. -webkit-text-decoration: none;
  3338. text-decoration: none;
  3339. }
  3340. .tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),
  3341. .tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),
  3342. .tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),
  3343. .tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),
  3344. .tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),
  3345. .tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]) {
  3346. color: #222f3e;
  3347. cursor: pointer;
  3348. }
  3349. .tox .tox-statusbar a:focus-visible::after,
  3350. .tox .tox-statusbar__path-item:focus-visible::after,
  3351. .tox .tox-statusbar__wordcount:focus-visible::after {
  3352. border-radius: 3px;
  3353. bottom: 0;
  3354. box-shadow: 0 0 0 0 transparent ;
  3355. content: '';
  3356. left: 0;
  3357. position: absolute;
  3358. right: 0;
  3359. top: 0;
  3360. }
  3361. @media (forced-colors: active) {
  3362. .tox .tox-statusbar a:focus-visible::after,
  3363. .tox .tox-statusbar__path-item:focus-visible::after,
  3364. .tox .tox-statusbar__wordcount:focus-visible::after {
  3365. border: 2px solid highlight;
  3366. }
  3367. }
  3368. .tox .tox-statusbar__branding svg {
  3369. fill: rgba(34, 47, 62, 0.8);
  3370. height: 1em;
  3371. margin-left: 0.3em;
  3372. width: auto;
  3373. }
  3374. @media (forced-colors: active) {
  3375. .tox .tox-statusbar__branding svg {
  3376. fill: currentColor;
  3377. }
  3378. }
  3379. .tox .tox-statusbar__branding a {
  3380. /* stylelint-disable-line no-descending-specificity */
  3381. align-items: center;
  3382. display: inline-flex;
  3383. }
  3384. .tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg,
  3385. .tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg {
  3386. fill: #222f3e;
  3387. }
  3388. .tox .tox-statusbar__resize-handle {
  3389. align-items: flex-end;
  3390. align-self: stretch;
  3391. cursor: nwse-resize;
  3392. display: flex;
  3393. flex: 0 0 auto;
  3394. justify-content: flex-end;
  3395. margin-bottom: 3px;
  3396. margin-left: 4px;
  3397. margin-right: calc(3px - 8px);
  3398. margin-top: 3px;
  3399. padding-bottom: 0;
  3400. padding-left: 0;
  3401. padding-right: 0;
  3402. position: relative;
  3403. }
  3404. .tox .tox-statusbar__resize-handle svg {
  3405. display: block;
  3406. fill: rgba(34, 47, 62, 0.5);
  3407. }
  3408. .tox .tox-statusbar__resize-handle:hover svg,
  3409. .tox .tox-statusbar__resize-handle:focus svg {
  3410. fill: #222f3e;
  3411. }
  3412. .tox .tox-statusbar__resize-handle:focus-visible {
  3413. background-color: transparent;
  3414. border-radius: 1px 1px -4px 1px;
  3415. box-shadow: 0 0 0 2px transparent;
  3416. }
  3417. .tox .tox-statusbar__resize-handle:focus-visible::after {
  3418. border-radius: 3px;
  3419. bottom: 0;
  3420. box-shadow: 0 0 0 0 transparent ;
  3421. content: '';
  3422. left: 0;
  3423. position: absolute;
  3424. right: 0;
  3425. top: 0;
  3426. }
  3427. @media (forced-colors: active) {
  3428. .tox .tox-statusbar__resize-handle:focus-visible::after {
  3429. border: 2px solid highlight;
  3430. }
  3431. }
  3432. .tox .tox-statusbar__resize-handle:only-child {
  3433. margin-left: auto;
  3434. }
  3435. .tox:not([dir=rtl]) .tox-statusbar__path > * {
  3436. margin-right: 4px;
  3437. }
  3438. .tox:not([dir=rtl]) .tox-statusbar__branding {
  3439. margin-left: 2ch;
  3440. }
  3441. .tox[dir=rtl] .tox-statusbar {
  3442. flex-direction: row-reverse;
  3443. }
  3444. .tox[dir=rtl] .tox-statusbar__path > * {
  3445. margin-left: 4px;
  3446. }
  3447. .tox[dir=rtl] .tox-statusbar__branding svg {
  3448. margin-left: 0;
  3449. margin-right: 0.3em;
  3450. }
  3451. .tox .tox-throbber {
  3452. z-index: 1299;
  3453. }
  3454. .tox .tox-throbber__busy-spinner {
  3455. align-items: center;
  3456. background-color: rgba(255, 255, 255, 0.6);
  3457. bottom: 0;
  3458. display: flex;
  3459. justify-content: center;
  3460. left: 0;
  3461. position: absolute;
  3462. right: 0;
  3463. top: 0;
  3464. }
  3465. .tox .tox-tbtn {
  3466. align-items: center;
  3467. background: #fff;
  3468. border: 0;
  3469. border-radius: 3px;
  3470. box-shadow: none;
  3471. color: #222f3e;
  3472. display: flex;
  3473. flex: 0 0 auto;
  3474. font-size: 14px;
  3475. font-style: normal;
  3476. font-weight: normal;
  3477. height: 34px;
  3478. justify-content: center;
  3479. margin: 3px 0 2px 0;
  3480. outline: none;
  3481. padding: 0;
  3482. text-transform: none;
  3483. width: 34px;
  3484. }
  3485. @media (forced-colors: active) {
  3486. .tox .tox-tbtn:hover,
  3487. .tox .tox-tbtn.tox-tbtn:hover {
  3488. outline: 1px dashed currentColor;
  3489. }
  3490. .tox .tox-tbtn.tox-tbtn--active,
  3491. .tox .tox-tbtn.tox-tbtn--enabled,
  3492. .tox .tox-tbtn.tox-tbtn--enabled:hover,
  3493. .tox .tox-tbtn.tox-tbtn--enabled:focus,
  3494. .tox .tox-tbtn:focus:not(.tox-tbtn--disabled) {
  3495. outline: 1px solid currentColor;
  3496. position: relative;
  3497. }
  3498. }
  3499. .tox .tox-tbtn svg {
  3500. display: block;
  3501. fill: #222f3e;
  3502. }
  3503. @media (forced-colors: active) {
  3504. .tox .tox-tbtn svg {
  3505. fill: currentColor !important;
  3506. }
  3507. .tox .tox-tbtn svg.tox-tbtn--enabled,
  3508. .tox .tox-tbtn svg:focus:not(.tox-tbtn--disabled) {
  3509. fill: currentColor !important;
  3510. }
  3511. .tox .tox-tbtn svg.tox-tbtn--disabled,
  3512. .tox .tox-tbtn svg.tox-tbtn--disabled:hover,
  3513. .tox .tox-tbtn svg .tox-tbtn:disabled,
  3514. .tox .tox-tbtn svg .tox-tbtn:disabled:hover {
  3515. filter: contrast(0%);
  3516. }
  3517. }
  3518. .tox .tox-tbtn.tox-tbtn-more {
  3519. padding-left: 5px;
  3520. padding-right: 5px;
  3521. width: inherit;
  3522. }
  3523. .tox .tox-tbtn:focus {
  3524. background: #dee0e2;
  3525. border: 0;
  3526. box-shadow: none;
  3527. position: relative;
  3528. z-index: 1;
  3529. }
  3530. .tox .tox-tbtn:focus::after {
  3531. border-radius: 3px;
  3532. bottom: 0;
  3533. box-shadow: 0 0 0 0 transparent ;
  3534. content: '';
  3535. left: 0;
  3536. position: absolute;
  3537. right: 0;
  3538. top: 0;
  3539. }
  3540. @media (forced-colors: active) {
  3541. .tox .tox-tbtn:focus::after {
  3542. border: 2px solid highlight;
  3543. }
  3544. }
  3545. .tox .tox-tbtn:hover {
  3546. background: #dee0e2;
  3547. border: 0;
  3548. box-shadow: none;
  3549. color: #222f3e;
  3550. }
  3551. .tox .tox-tbtn:hover svg {
  3552. fill: #222f3e;
  3553. }
  3554. .tox .tox-tbtn:active {
  3555. background: #c8cbcf;
  3556. border: 0;
  3557. box-shadow: none;
  3558. color: #222f3e;
  3559. }
  3560. .tox .tox-tbtn:active svg {
  3561. fill: #222f3e;
  3562. }
  3563. .tox .tox-tbtn--disabled .tox-tbtn--enabled svg {
  3564. fill: rgba(34, 47, 62, 0.5);
  3565. }
  3566. .tox .tox-tbtn--disabled,
  3567. .tox .tox-tbtn--disabled:hover,
  3568. .tox .tox-tbtn:disabled,
  3569. .tox .tox-tbtn:disabled:hover {
  3570. background: #fff;
  3571. border: 0;
  3572. box-shadow: none;
  3573. color: rgba(34, 47, 62, 0.5);
  3574. cursor: not-allowed;
  3575. }
  3576. .tox .tox-tbtn--disabled svg,
  3577. .tox .tox-tbtn--disabled:hover svg,
  3578. .tox .tox-tbtn:disabled svg,
  3579. .tox .tox-tbtn:disabled:hover svg {
  3580. /* stylelint-disable-line no-descending-specificity */
  3581. fill: rgba(34, 47, 62, 0.5);
  3582. }
  3583. .tox .tox-tbtn--active,
  3584. .tox .tox-tbtn--enabled,
  3585. .tox .tox-tbtn--enabled:hover,
  3586. .tox .tox-tbtn--enabled:focus {
  3587. background: #c8cbcf;
  3588. border: 0;
  3589. box-shadow: none;
  3590. color: #222f3e;
  3591. position: relative;
  3592. }
  3593. .tox .tox-tbtn--active > *,
  3594. .tox .tox-tbtn--enabled > *,
  3595. .tox .tox-tbtn--enabled:hover > *,
  3596. .tox .tox-tbtn--enabled:focus > * {
  3597. transform: none;
  3598. }
  3599. .tox .tox-tbtn--active svg,
  3600. .tox .tox-tbtn--enabled svg,
  3601. .tox .tox-tbtn--enabled:hover svg,
  3602. .tox .tox-tbtn--enabled:focus svg {
  3603. /* stylelint-disable-line no-descending-specificity */
  3604. fill: #222f3e;
  3605. }
  3606. .tox .tox-tbtn--active.tox-tbtn--disabled svg,
  3607. .tox .tox-tbtn--enabled.tox-tbtn--disabled svg,
  3608. .tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg,
  3609. .tox .tox-tbtn--enabled:focus.tox-tbtn--disabled svg {
  3610. fill: rgba(34, 47, 62, 0.5);
  3611. }
  3612. .tox .tox-tbtn--enabled:focus::after {
  3613. border-radius: 3px;
  3614. bottom: 0;
  3615. box-shadow: 0 0 0 0 transparent ;
  3616. content: '';
  3617. left: 0;
  3618. position: absolute;
  3619. right: 0;
  3620. top: 0;
  3621. }
  3622. @media (forced-colors: active) {
  3623. .tox .tox-tbtn--enabled:focus::after {
  3624. border: 2px solid highlight;
  3625. }
  3626. }
  3627. .tox .tox-tbtn:focus:not(.tox-tbtn--disabled) {
  3628. color: #222f3e;
  3629. }
  3630. .tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg {
  3631. fill: #222f3e;
  3632. }
  3633. .tox .tox-tbtn:active > * {
  3634. transform: none;
  3635. }
  3636. .tox .tox-tbtn--md {
  3637. height: 51px;
  3638. width: 51px;
  3639. }
  3640. .tox .tox-tbtn--lg {
  3641. flex-direction: column;
  3642. height: 68px;
  3643. width: 68px;
  3644. }
  3645. .tox .tox-tbtn--return {
  3646. align-self: stretch;
  3647. height: unset;
  3648. width: 16px;
  3649. }
  3650. .tox .tox-tbtn--labeled {
  3651. padding: 0 4px;
  3652. width: unset;
  3653. }
  3654. .tox .tox-tbtn__vlabel {
  3655. display: block;
  3656. font-size: 10px;
  3657. font-weight: normal;
  3658. letter-spacing: -0.025em;
  3659. margin-bottom: 4px;
  3660. white-space: nowrap;
  3661. }
  3662. .tox .tox-number-input {
  3663. background: transparent;
  3664. border-radius: 3px;
  3665. display: flex;
  3666. margin: 3px 0 2px 0;
  3667. position: relative;
  3668. width: auto;
  3669. }
  3670. .tox .tox-number-input:focus {
  3671. background: #dee0e2;
  3672. }
  3673. .tox .tox-number-input:focus::after {
  3674. border-radius: 3px;
  3675. bottom: 0;
  3676. box-shadow: 0 0 0 0 transparent ;
  3677. content: '';
  3678. left: 0;
  3679. position: absolute;
  3680. right: 0;
  3681. top: 0;
  3682. }
  3683. @media (forced-colors: active) {
  3684. .tox .tox-number-input:focus::after {
  3685. border: 2px solid highlight;
  3686. }
  3687. }
  3688. .tox .tox-number-input .tox-input-wrapper {
  3689. display: flex;
  3690. pointer-events: none;
  3691. position: relative;
  3692. text-align: center;
  3693. }
  3694. .tox .tox-number-input .tox-input-wrapper:focus {
  3695. background-color: #dee0e2;
  3696. z-index: 1;
  3697. }
  3698. .tox .tox-number-input .tox-input-wrapper:focus::after {
  3699. border-radius: 3px;
  3700. bottom: 0;
  3701. box-shadow: 0 0 0 0 transparent ;
  3702. content: '';
  3703. left: 0;
  3704. position: absolute;
  3705. right: 0;
  3706. top: 0;
  3707. }
  3708. @media (forced-colors: active) {
  3709. .tox .tox-number-input .tox-input-wrapper:focus::after {
  3710. border: 2px solid highlight;
  3711. }
  3712. }
  3713. .tox .tox-number-input .tox-input-wrapper:has(input:focus)::after {
  3714. border-radius: 3px;
  3715. bottom: 0;
  3716. box-shadow: 0 0 0 0 transparent ;
  3717. content: '';
  3718. left: 0;
  3719. position: absolute;
  3720. right: 0;
  3721. top: 0;
  3722. }
  3723. @media (forced-colors: active) {
  3724. .tox .tox-number-input .tox-input-wrapper:has(input:focus)::after {
  3725. border: 2px solid highlight;
  3726. }
  3727. }
  3728. .tox .tox-number-input input {
  3729. border-radius: 3px;
  3730. color: #222f3e;
  3731. font-size: 14px;
  3732. margin: 2px 0;
  3733. pointer-events: all;
  3734. position: relative;
  3735. width: 60px;
  3736. }
  3737. .tox .tox-number-input input:hover {
  3738. background: #dee0e2;
  3739. color: #222f3e;
  3740. }
  3741. .tox .tox-number-input input:focus {
  3742. background-color: #dee0e2;
  3743. }
  3744. .tox .tox-number-input input:disabled {
  3745. background: #fff;
  3746. border: 0;
  3747. box-shadow: none;
  3748. color: rgba(34, 47, 62, 0.5);
  3749. cursor: not-allowed;
  3750. }
  3751. .tox .tox-number-input button {
  3752. color: #222f3e;
  3753. height: 34px;
  3754. position: relative;
  3755. text-align: center;
  3756. width: 24px;
  3757. }
  3758. @media (forced-colors: active) {
  3759. .tox .tox-number-input button:hover,
  3760. .tox .tox-number-input button:focus,
  3761. .tox .tox-number-input button:active {
  3762. outline: 1px solid currentColor !important;
  3763. }
  3764. }
  3765. .tox .tox-number-input button svg {
  3766. display: block;
  3767. fill: #222f3e;
  3768. margin: 0 auto;
  3769. transform: scale(0.67);
  3770. }
  3771. @media (forced-colors: active) {
  3772. .tox .tox-number-input button svg,
  3773. .tox .tox-number-input button svg:active,
  3774. .tox .tox-number-input button svg:hover {
  3775. fill: currentColor !important;
  3776. }
  3777. .tox .tox-number-input button svg:disabled {
  3778. filter: contrast(0);
  3779. }
  3780. }
  3781. .tox .tox-number-input button:focus {
  3782. background: #dee0e2;
  3783. z-index: 1;
  3784. }
  3785. .tox .tox-number-input button:focus::after {
  3786. border-radius: 3px;
  3787. bottom: 0;
  3788. box-shadow: 0 0 0 0 transparent ;
  3789. content: '';
  3790. left: 0;
  3791. position: absolute;
  3792. right: 0;
  3793. top: 0;
  3794. }
  3795. @media (forced-colors: active) {
  3796. .tox .tox-number-input button:focus::after {
  3797. border: 2px solid highlight;
  3798. }
  3799. }
  3800. .tox .tox-number-input button:hover {
  3801. background: #dee0e2;
  3802. border: 0;
  3803. box-shadow: none;
  3804. color: #222f3e;
  3805. }
  3806. .tox .tox-number-input button:hover svg {
  3807. fill: #222f3e;
  3808. }
  3809. .tox .tox-number-input button:active {
  3810. background: #c8cbcf;
  3811. border: 0;
  3812. box-shadow: none;
  3813. color: #222f3e;
  3814. }
  3815. .tox .tox-number-input button:active svg {
  3816. fill: #222f3e;
  3817. }
  3818. .tox .tox-number-input button:disabled {
  3819. background: #fff;
  3820. border: 0;
  3821. box-shadow: none;
  3822. color: rgba(34, 47, 62, 0.5);
  3823. cursor: not-allowed;
  3824. }
  3825. .tox .tox-number-input button:disabled svg {
  3826. fill: rgba(34, 47, 62, 0.5);
  3827. }
  3828. .tox .tox-number-input button.minus {
  3829. border-radius: 3px 0 0 3px;
  3830. }
  3831. .tox .tox-number-input button.plus {
  3832. border-radius: 0 3px 3px 0;
  3833. }
  3834. .tox .tox-number-input:focus:not(:active) > button,
  3835. .tox .tox-number-input:focus:not(:active) > .tox-input-wrapper {
  3836. background: #dee0e2;
  3837. }
  3838. .tox .tox-tbtn--select {
  3839. margin: 3px 0 2px 0;
  3840. padding: 0 4px;
  3841. width: auto;
  3842. }
  3843. .tox .tox-tbtn__select-label {
  3844. cursor: default;
  3845. font-weight: normal;
  3846. height: initial;
  3847. margin: 0 4px;
  3848. overflow: hidden;
  3849. text-overflow: ellipsis;
  3850. white-space: nowrap;
  3851. }
  3852. .tox .tox-tbtn__select-chevron {
  3853. align-items: center;
  3854. display: flex;
  3855. justify-content: center;
  3856. width: 16px;
  3857. }
  3858. .tox .tox-tbtn__select-chevron svg {
  3859. fill: rgba(34, 47, 62, 0.5);
  3860. }
  3861. @media (forced-colors: active) {
  3862. .tox .tox-tbtn__select-chevron svg {
  3863. fill: currentColor;
  3864. }
  3865. }
  3866. .tox .tox-tbtn--bespoke {
  3867. background: transparent;
  3868. }
  3869. .tox .tox-tbtn--bespoke:focus {
  3870. background: #dee0e2;
  3871. }
  3872. .tox .tox-tbtn--bespoke + .tox-tbtn--bespoke {
  3873. margin-inline-start: 0;
  3874. }
  3875. .tox .tox-tbtn--bespoke .tox-tbtn__select-label {
  3876. overflow: hidden;
  3877. text-overflow: ellipsis;
  3878. white-space: nowrap;
  3879. width: 7em;
  3880. }
  3881. .tox .tox-tbtn--disabled .tox-tbtn__select-label,
  3882. .tox .tox-tbtn--select:disabled .tox-tbtn__select-label {
  3883. cursor: not-allowed;
  3884. }
  3885. .tox .tox-split-button {
  3886. border: 0;
  3887. border-radius: 3px;
  3888. box-sizing: border-box;
  3889. display: flex;
  3890. margin: 3px 0 2px 0;
  3891. }
  3892. .tox .tox-split-button:hover {
  3893. box-shadow: 0 0 0 1px #dee0e2 inset;
  3894. }
  3895. .tox .tox-split-button:focus {
  3896. background: #dee0e2;
  3897. box-shadow: none;
  3898. color: #222f3e;
  3899. position: relative;
  3900. z-index: 1;
  3901. }
  3902. .tox .tox-split-button:focus::after {
  3903. pointer-events: none;
  3904. border-radius: 3px;
  3905. bottom: 0;
  3906. box-shadow: 0 0 0 0 transparent ;
  3907. content: '';
  3908. left: 0;
  3909. position: absolute;
  3910. right: 0;
  3911. top: 0;
  3912. }
  3913. @media (forced-colors: active) {
  3914. .tox .tox-split-button:focus::after {
  3915. border: 2px solid highlight;
  3916. }
  3917. }
  3918. .tox .tox-split-button > * {
  3919. border-radius: 0;
  3920. }
  3921. .tox .tox-split-button > *:nth-child(1) {
  3922. border-bottom-left-radius: 3px;
  3923. border-top-left-radius: 3px;
  3924. }
  3925. .tox .tox-split-button > *:nth-child(2) {
  3926. border-bottom-right-radius: 3px;
  3927. border-top-right-radius: 3px;
  3928. }
  3929. .tox .tox-split-button__chevron {
  3930. width: 16px;
  3931. }
  3932. .tox .tox-split-button__chevron svg {
  3933. fill: rgba(34, 47, 62, 0.5);
  3934. }
  3935. @media (forced-colors: active) {
  3936. .tox .tox-split-button__chevron svg {
  3937. fill: currentColor;
  3938. }
  3939. }
  3940. .tox .tox-split-button .tox-tbtn {
  3941. margin: 0;
  3942. }
  3943. .tox .tox-split-button:focus .tox-tbtn {
  3944. background-color: transparent;
  3945. }
  3946. .tox .tox-split-button.tox-tbtn--disabled:hover,
  3947. .tox .tox-split-button.tox-tbtn--disabled:focus,
  3948. .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,
  3949. .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus {
  3950. background: #fff;
  3951. box-shadow: none;
  3952. color: rgba(34, 47, 62, 0.5);
  3953. }
  3954. .tox.tox-platform-touch .tox-split-button .tox-tbtn--select {
  3955. padding: 0 0px;
  3956. }
  3957. .tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child {
  3958. width: 30px;
  3959. }
  3960. .tox.tox-platform-touch .tox-split-button__chevron {
  3961. width: 20px;
  3962. }
  3963. .tox .tox-split-button.tox-tbtn--disabled svg .tox-icon-text-color__color,
  3964. .tox .tox-split-button.tox-tbtn--disabled svg .tox-icon-highlight-bg-color__color {
  3965. opacity: 0.3;
  3966. }
  3967. .tox .tox-toolbar-overlord {
  3968. background-color: #fff;
  3969. }
  3970. .tox .tox-toolbar,
  3971. .tox .tox-toolbar__primary,
  3972. .tox .tox-toolbar__overflow {
  3973. background-attachment: local;
  3974. background-color: #fff;
  3975. background-image: repeating-linear-gradient(#cccccc 0 1px, transparent 1px 39px);
  3976. background-position: center top 39px;
  3977. background-repeat: no-repeat;
  3978. background-size: calc(100% - 4px * 2) calc(100% - 39px);
  3979. display: flex;
  3980. flex: 0 0 auto;
  3981. flex-shrink: 0;
  3982. flex-wrap: wrap;
  3983. padding: 0 0px;
  3984. transform: perspective(1px);
  3985. }
  3986. .tox .tox-toolbar-overlord > .tox-toolbar,
  3987. .tox .tox-toolbar-overlord > .tox-toolbar__primary,
  3988. .tox .tox-toolbar-overlord > .tox-toolbar__overflow {
  3989. background-position: center top 0px;
  3990. background-size: calc(100% - 4px * 2) calc(100% - 0px);
  3991. }
  3992. .tox .tox-toolbar__overflow.tox-toolbar__overflow--closed {
  3993. height: 0;
  3994. opacity: 0;
  3995. padding-bottom: 0;
  3996. padding-top: 0;
  3997. visibility: hidden;
  3998. }
  3999. .tox .tox-toolbar__overflow--growing {
  4000. transition: height 0.3s ease, opacity 0.2s linear 0.1s;
  4001. }
  4002. .tox .tox-toolbar__overflow--shrinking {
  4003. transition: opacity 0.3s ease, height 0.2s linear 0.1s, visibility 0s linear 0.3s;
  4004. }
  4005. .tox .tox-toolbar-overlord,
  4006. .tox .tox-anchorbar {
  4007. grid-column: 1 / -1;
  4008. }
  4009. .tox .tox-menubar + .tox-toolbar,
  4010. .tox .tox-menubar + .tox-toolbar-overlord {
  4011. border-top: 1px solid #cccccc;
  4012. margin-top: -1px;
  4013. padding-bottom: 0;
  4014. padding-top: 0;
  4015. }
  4016. @media (forced-colors: active) {
  4017. .tox .tox-menubar + .tox-toolbar,
  4018. .tox .tox-menubar + .tox-toolbar-overlord {
  4019. outline: 1px solid currentColor;
  4020. }
  4021. }
  4022. .tox .tox-toolbar--scrolling {
  4023. flex-wrap: nowrap;
  4024. overflow-x: auto;
  4025. }
  4026. .tox .tox-pop .tox-toolbar {
  4027. border-width: 0;
  4028. }
  4029. .tox .tox-toolbar--no-divider {
  4030. background-image: none;
  4031. }
  4032. .tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,
  4033. .tox .tox-toolbar-overlord .tox-toolbar__primary {
  4034. background-position: center top 39px;
  4035. }
  4036. .tox .tox-editor-header > .tox-toolbar--scrolling,
  4037. .tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child {
  4038. background-image: none;
  4039. }
  4040. .tox.tox-tinymce-aux .tox-toolbar__overflow {
  4041. background-color: #fff;
  4042. background-position: center top 43px;
  4043. background-size: calc(100% - 8px * 2) calc(100% - 51px);
  4044. border: none;
  4045. border-radius: 3px;
  4046. box-shadow: 0 0 2px 0 rgba(34, 47, 62, 0.2), 0 4px 8px 0 rgba(34, 47, 62, 0.15);
  4047. overscroll-behavior: none;
  4048. padding: 4px 0;
  4049. }
  4050. @media (forced-colors: active) {
  4051. .tox.tox-tinymce-aux .tox-toolbar__overflow {
  4052. border: solid;
  4053. }
  4054. }
  4055. .tox-pop .tox-pop__dialog {
  4056. /* stylelint-disable-next-line no-descending-specificity */
  4057. }
  4058. .tox-pop .tox-pop__dialog .tox-toolbar {
  4059. background-position: center top 43px;
  4060. background-size: calc(100% - 4px * 2) calc(100% - 51px);
  4061. padding: 4px 0;
  4062. }
  4063. .tox .tox-toolbar__group {
  4064. align-items: center;
  4065. display: flex;
  4066. flex-wrap: wrap;
  4067. margin: 0 0;
  4068. padding: 0 4px 0 4px;
  4069. }
  4070. .tox .tox-toolbar__group--pull-right {
  4071. margin-left: auto;
  4072. }
  4073. .tox .tox-toolbar--scrolling .tox-toolbar__group {
  4074. flex-shrink: 0;
  4075. flex-wrap: nowrap;
  4076. }
  4077. .tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
  4078. border-right: 1px solid #cccccc;
  4079. }
  4080. .tox[dir=rtl] .tox-toolbar__group:not(:last-of-type) {
  4081. border-left: 1px solid #cccccc;
  4082. }
  4083. .tox .tox-tooltip {
  4084. display: inline-block;
  4085. max-width: 15em;
  4086. padding: 8px;
  4087. /*
  4088. * The pointer-events: none is designed to make mouse events bleed through the tooltip
  4089. * to the underlying items. For example, a mouse hovering over a tooltip that hovers over
  4090. * another item should trigger the hover of the item obscured by the tooltip, even though
  4091. * the tooltip is on top
  4092. */
  4093. pointer-events: none;
  4094. position: relative;
  4095. width: max-content;
  4096. z-index: 1150;
  4097. }
  4098. .tox .tox-tooltip__body {
  4099. background-color: #222f3e;
  4100. border-radius: 3px;
  4101. box-shadow: none;
  4102. color: #fff;
  4103. font-size: 12px;
  4104. font-style: normal;
  4105. font-weight: 600;
  4106. overflow-wrap: break-word;
  4107. padding: 4px 6px;
  4108. text-transform: none;
  4109. }
  4110. @media (forced-colors: active) {
  4111. .tox .tox-tooltip__body {
  4112. outline: outset 1px;
  4113. }
  4114. }
  4115. .tox .tox-tooltip__arrow {
  4116. position: absolute;
  4117. }
  4118. .tox .tox-tooltip--down .tox-tooltip__arrow {
  4119. border-left: 8px solid transparent;
  4120. border-right: 8px solid transparent;
  4121. border-top: 8px solid #222f3e;
  4122. bottom: 0;
  4123. left: 50%;
  4124. position: absolute;
  4125. transform: translateX(-50%);
  4126. }
  4127. .tox .tox-tooltip--up .tox-tooltip__arrow {
  4128. border-bottom: 8px solid #222f3e;
  4129. border-left: 8px solid transparent;
  4130. border-right: 8px solid transparent;
  4131. left: 50%;
  4132. position: absolute;
  4133. top: 0;
  4134. transform: translateX(-50%);
  4135. }
  4136. .tox .tox-tooltip--right .tox-tooltip__arrow {
  4137. border-bottom: 8px solid transparent;
  4138. border-left: 8px solid #222f3e;
  4139. border-top: 8px solid transparent;
  4140. position: absolute;
  4141. right: 0;
  4142. top: 50%;
  4143. transform: translateY(-50%);
  4144. }
  4145. .tox .tox-tooltip--left .tox-tooltip__arrow {
  4146. border-bottom: 8px solid transparent;
  4147. border-right: 8px solid #222f3e;
  4148. border-top: 8px solid transparent;
  4149. left: 0;
  4150. position: absolute;
  4151. top: 50%;
  4152. transform: translateY(-50%);
  4153. }
  4154. .tox .tox-tree {
  4155. display: flex;
  4156. flex-direction: column;
  4157. }
  4158. .tox .tox-tree .tox-trbtn {
  4159. align-items: center;
  4160. background: transparent;
  4161. border: 0;
  4162. border-radius: 4px;
  4163. box-shadow: none;
  4164. color: #222f3e;
  4165. display: flex;
  4166. flex: 0 0 auto;
  4167. font-size: 14px;
  4168. font-style: normal;
  4169. font-weight: normal;
  4170. height: 28px;
  4171. margin-bottom: 4px;
  4172. margin-top: 4px;
  4173. outline: none;
  4174. overflow: hidden;
  4175. padding: 0;
  4176. padding-left: 8px;
  4177. text-transform: none;
  4178. }
  4179. .tox .tox-tree .tox-trbtn .tox-tree__label {
  4180. cursor: default;
  4181. overflow: hidden;
  4182. text-overflow: ellipsis;
  4183. white-space: nowrap;
  4184. }
  4185. .tox .tox-tree .tox-trbtn svg {
  4186. display: block;
  4187. fill: #222f3e;
  4188. }
  4189. .tox .tox-tree .tox-trbtn:focus {
  4190. background: #dee0e2;
  4191. border: 0;
  4192. box-shadow: none;
  4193. }
  4194. .tox .tox-tree .tox-trbtn:hover {
  4195. background: #dee0e2;
  4196. border: 0;
  4197. box-shadow: none;
  4198. color: #222f3e;
  4199. }
  4200. .tox .tox-tree .tox-trbtn:hover svg {
  4201. fill: #222f3e;
  4202. }
  4203. .tox .tox-tree .tox-trbtn:active {
  4204. background: #b1d0e6;
  4205. border: 0;
  4206. box-shadow: none;
  4207. color: #222f3e;
  4208. }
  4209. .tox .tox-tree .tox-trbtn:active svg {
  4210. fill: #222f3e;
  4211. }
  4212. .tox .tox-tree .tox-trbtn--disabled,
  4213. .tox .tox-tree .tox-trbtn--disabled:hover,
  4214. .tox .tox-tree .tox-trbtn:disabled,
  4215. .tox .tox-tree .tox-trbtn:disabled:hover {
  4216. background: transparent;
  4217. border: 0;
  4218. box-shadow: none;
  4219. color: rgba(34, 47, 62, 0.5);
  4220. cursor: not-allowed;
  4221. }
  4222. .tox .tox-tree .tox-trbtn--disabled svg,
  4223. .tox .tox-tree .tox-trbtn--disabled:hover svg,
  4224. .tox .tox-tree .tox-trbtn:disabled svg,
  4225. .tox .tox-tree .tox-trbtn:disabled:hover svg {
  4226. /* stylelint-disable-line no-descending-specificity */
  4227. fill: rgba(34, 47, 62, 0.5);
  4228. }
  4229. .tox .tox-tree .tox-trbtn--enabled,
  4230. .tox .tox-tree .tox-trbtn--enabled:hover {
  4231. background: #b1d0e6;
  4232. border: 0;
  4233. box-shadow: none;
  4234. color: #222f3e;
  4235. }
  4236. .tox .tox-tree .tox-trbtn--enabled > *,
  4237. .tox .tox-tree .tox-trbtn--enabled:hover > * {
  4238. transform: none;
  4239. }
  4240. .tox .tox-tree .tox-trbtn--enabled svg,
  4241. .tox .tox-tree .tox-trbtn--enabled:hover svg {
  4242. /* stylelint-disable-line no-descending-specificity */
  4243. fill: #222f3e;
  4244. }
  4245. .tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) {
  4246. color: #222f3e;
  4247. }
  4248. .tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg {
  4249. fill: #222f3e;
  4250. }
  4251. .tox .tox-tree .tox-trbtn:active > * {
  4252. transform: none;
  4253. }
  4254. .tox .tox-tree .tox-trbtn--return {
  4255. align-self: stretch;
  4256. height: unset;
  4257. width: 16px;
  4258. }
  4259. .tox .tox-tree .tox-trbtn--labeled {
  4260. padding: 0 4px;
  4261. width: unset;
  4262. }
  4263. .tox .tox-tree .tox-trbtn__vlabel {
  4264. display: block;
  4265. font-size: 10px;
  4266. font-weight: normal;
  4267. letter-spacing: -0.025em;
  4268. margin-bottom: 4px;
  4269. white-space: nowrap;
  4270. }
  4271. .tox .tox-tree .tox-tree--directory {
  4272. display: flex;
  4273. flex-direction: column;
  4274. /* stylelint-disable no-descending-specificity */
  4275. }
  4276. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label {
  4277. font-weight: bold;
  4278. }
  4279. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn {
  4280. margin-left: auto;
  4281. }
  4282. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg {
  4283. fill: transparent;
  4284. }
  4285. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,
  4286. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg {
  4287. fill: #222f3e;
  4288. }
  4289. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg,
  4290. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg {
  4291. fill: #222f3e;
  4292. }
  4293. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) {
  4294. background-color: transparent;
  4295. color: #222f3e;
  4296. }
  4297. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg {
  4298. fill: #222f3e;
  4299. }
  4300. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron {
  4301. margin-right: 6px;
  4302. }
  4303. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--growing) .tox-chevron,
  4304. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--shrinking) .tox-chevron {
  4305. transition: transform 0.5s ease-in-out;
  4306. }
  4307. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--growing) .tox-chevron,
  4308. .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+ .tox-tree--directory__children--open) .tox-chevron {
  4309. transform: rotate(90deg);
  4310. }
  4311. .tox .tox-tree .tox-tree--leaf__label {
  4312. font-weight: normal;
  4313. }
  4314. .tox .tox-tree .tox-tree--leaf__label .tox-mbtn {
  4315. margin-left: auto;
  4316. }
  4317. .tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg {
  4318. fill: transparent;
  4319. }
  4320. .tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,
  4321. .tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg {
  4322. fill: #222f3e;
  4323. }
  4324. .tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg {
  4325. fill: #222f3e;
  4326. }
  4327. .tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) {
  4328. background-color: transparent;
  4329. color: #222f3e;
  4330. }
  4331. .tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg {
  4332. fill: #222f3e;
  4333. }
  4334. .tox .tox-tree .tox-icon-custom-state {
  4335. flex-grow: 1;
  4336. display: flex;
  4337. justify-content: flex-end;
  4338. }
  4339. .tox .tox-tree .tox-tree--directory__children {
  4340. overflow: hidden;
  4341. padding-left: 16px;
  4342. }
  4343. .tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,
  4344. .tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking {
  4345. transition: height 0.5s ease-in-out;
  4346. }
  4347. .tox .tox-tree .tox-trbtn.tox-tree--leaf__label {
  4348. display: flex;
  4349. justify-content: space-between;
  4350. }
  4351. .tox .tox-revisionhistory__pane {
  4352. padding: 0 !important;
  4353. /* Override the default padding of tox-view__pane */
  4354. }
  4355. .tox .tox-revisionhistory__container {
  4356. display: flex;
  4357. flex-direction: column;
  4358. height: 100%;
  4359. }
  4360. .tox .tox-revisionhistory {
  4361. background-color: #fff;
  4362. border-top: 1px solid #f0f0f0;
  4363. display: flex;
  4364. flex: 1;
  4365. height: 100%;
  4366. margin-top: 8px;
  4367. overflow-x: auto;
  4368. overflow-y: hidden;
  4369. position: relative;
  4370. width: 100%;
  4371. }
  4372. .tox .tox-revisionhistory--align-right {
  4373. margin-left: auto;
  4374. }
  4375. .tox .tox-revisionhistory__iframe {
  4376. flex: 1;
  4377. }
  4378. .tox .tox-revisionhistory__sidebar {
  4379. display: flex;
  4380. flex-direction: column;
  4381. height: 100%;
  4382. min-width: 248px;
  4383. width: 316px;
  4384. }
  4385. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__sidebar-title {
  4386. background-color: #fff;
  4387. box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  4388. color: #222f3e;
  4389. font-size: 20px;
  4390. font-weight: 400;
  4391. line-height: 28px;
  4392. padding: 12px;
  4393. z-index: 1;
  4394. }
  4395. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions {
  4396. background-color: #f0f0f0;
  4397. display: flex;
  4398. flex: 1;
  4399. flex-direction: column;
  4400. gap: 12px;
  4401. overflow-y: auto;
  4402. padding: 10px 12px;
  4403. }
  4404. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus {
  4405. height: 100%;
  4406. position: relative;
  4407. z-index: 1;
  4408. }
  4409. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus::after {
  4410. bottom: 0;
  4411. box-shadow: 0 0 0 0 transparent ;
  4412. content: '';
  4413. left: 0;
  4414. position: absolute;
  4415. right: 0;
  4416. top: 0;
  4417. border-radius: 3px;
  4418. bottom: 1px;
  4419. left: 1px;
  4420. right: 1px;
  4421. top: 1px;
  4422. }
  4423. @media (forced-colors: active) {
  4424. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions:focus::after {
  4425. border: 2px solid highlight;
  4426. }
  4427. }
  4428. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card {
  4429. background-color: #fff;
  4430. border: 1px solid #f0f0f0;
  4431. border-radius: 6px;
  4432. color: #222f3e;
  4433. cursor: pointer;
  4434. display: flex;
  4435. flex-direction: column;
  4436. font-size: 14px;
  4437. gap: 12px;
  4438. padding: 12px;
  4439. width: 100%;
  4440. }
  4441. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:hover {
  4442. box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  4443. }
  4444. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus {
  4445. position: relative;
  4446. z-index: 1;
  4447. }
  4448. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus::after {
  4449. border-radius: 3px;
  4450. bottom: 0;
  4451. box-shadow: 0 0 0 0 transparent #006ce7;
  4452. content: '';
  4453. left: 0;
  4454. position: absolute;
  4455. right: 0;
  4456. top: 0;
  4457. border-radius: 6px;
  4458. box-shadow: 0 0 0 2px #006ce7;
  4459. box-shadow: 0 0 0 2px #006ce7 !important;
  4460. }
  4461. @media (forced-colors: active) {
  4462. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card:focus::after {
  4463. border: 2px solid highlight;
  4464. }
  4465. }
  4466. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected {
  4467. background-color: #fff5cc;
  4468. box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  4469. position: relative;
  4470. }
  4471. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected::after {
  4472. border-radius: 3px;
  4473. bottom: 0;
  4474. box-shadow: 0 0 0 0 transparent #e3b82a;
  4475. content: '';
  4476. left: 0;
  4477. position: absolute;
  4478. right: 0;
  4479. top: 0;
  4480. border-radius: 6px;
  4481. box-shadow: 0 0 0 2px #e3b82a;
  4482. }
  4483. @media (forced-colors: active) {
  4484. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card.tox-revisionhistory__card--selected::after {
  4485. border: 2px solid highlight;
  4486. }
  4487. }
  4488. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-date {
  4489. display: flex;
  4490. gap: 12px;
  4491. justify-content: space-between;
  4492. }
  4493. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-date-label {
  4494. font-size: 16px;
  4495. line-height: 24px;
  4496. }
  4497. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-label {
  4498. font-size: 12px;
  4499. font-weight: 600;
  4500. line-height: 24px;
  4501. padding: 0;
  4502. }
  4503. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-author {
  4504. align-items: center;
  4505. display: flex;
  4506. flex: 1 0 0;
  4507. gap: 8px;
  4508. height: 36px;
  4509. }
  4510. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-author-name {
  4511. overflow: hidden;
  4512. text-overflow: ellipsis;
  4513. white-space: nowrap;
  4514. font-size: 14px;
  4515. font-weight: 700;
  4516. line-height: 18px;
  4517. }
  4518. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__avatar {
  4519. border-radius: 50%;
  4520. height: 36px;
  4521. object-fit: cover;
  4522. vertical-align: middle;
  4523. width: 36px;
  4524. }
  4525. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__norevision {
  4526. color: rgba(34, 47, 62, 0.7);
  4527. font-size: 16px;
  4528. line-height: 24px;
  4529. padding: 5px 5.5px;
  4530. }
  4531. .tox .tox-revisionhistory__sidebar .tox-revisionhistory__revisions .tox-revisionhistory__card-check-icon {
  4532. color: #222f3e;
  4533. height: 24px;
  4534. }
  4535. .tox .tox-view-wrap,
  4536. .tox .tox-view-wrap__slot-container {
  4537. background-color: #fff;
  4538. display: flex;
  4539. flex: 1;
  4540. flex-direction: column;
  4541. height: 100%;
  4542. }
  4543. .tox .tox-view {
  4544. display: flex;
  4545. flex: 1 1 auto;
  4546. flex-direction: column;
  4547. overflow: hidden;
  4548. }
  4549. .tox .tox-view__header {
  4550. align-items: center;
  4551. display: flex;
  4552. font-size: 16px;
  4553. justify-content: space-between;
  4554. padding: 8px 8px 0 8px;
  4555. position: relative;
  4556. }
  4557. .tox .tox-view__label {
  4558. color: #222f3e;
  4559. font-weight: bold;
  4560. line-height: 24px;
  4561. padding: 4px 16px;
  4562. text-align: center;
  4563. white-space: nowrap;
  4564. }
  4565. .tox .tox-view__label--normal {
  4566. font-size: 16px;
  4567. }
  4568. .tox .tox-view__label--large {
  4569. font-size: 20px;
  4570. }
  4571. .tox .tox-view--mobile.tox-view__header,
  4572. .tox .tox-view--mobile.tox-view__toolbar {
  4573. padding: 8px;
  4574. }
  4575. .tox .tox-view--scrolling {
  4576. flex-wrap: nowrap;
  4577. overflow-x: auto;
  4578. }
  4579. .tox .tox-view__toolbar {
  4580. display: flex;
  4581. flex-direction: row;
  4582. gap: 8px;
  4583. justify-content: space-between;
  4584. overflow-x: auto;
  4585. padding: 8px 8px 0 8px;
  4586. }
  4587. .tox .tox-view__toolbar__group {
  4588. display: flex;
  4589. flex-direction: row;
  4590. gap: 12px;
  4591. }
  4592. .tox .tox-view__header-start,
  4593. .tox .tox-view__header-end {
  4594. display: flex;
  4595. }
  4596. .tox .tox-view__pane {
  4597. height: 100%;
  4598. padding: 8px;
  4599. position: relative;
  4600. width: 100%;
  4601. }
  4602. .tox .tox-view__pane_panel {
  4603. border: 1px solid #cccccc;
  4604. border-radius: 3px;
  4605. }
  4606. .tox:not([dir=rtl]) .tox-view__header .tox-view__header-start > *,
  4607. .tox:not([dir=rtl]) .tox-view__header .tox-view__header-end > * {
  4608. margin-left: 8px;
  4609. }
  4610. .tox[dir=rtl] .tox-view__header .tox-view__header-start > *,
  4611. .tox[dir=rtl] .tox-view__header .tox-view__header-end > * {
  4612. margin-right: 8px;
  4613. }
  4614. .tox .tox-well {
  4615. border: 1px solid #cccccc;
  4616. border-radius: 3px;
  4617. padding: 8px;
  4618. width: 100%;
  4619. }
  4620. .tox .tox-well > *:first-child {
  4621. margin-top: 0;
  4622. }
  4623. .tox .tox-well > *:last-child {
  4624. margin-bottom: 0;
  4625. }
  4626. .tox .tox-well > *:only-child {
  4627. margin: 0;
  4628. }
  4629. .tox .tox-custom-editor {
  4630. border: 1px solid #cccccc;
  4631. border-radius: 3px;
  4632. display: flex;
  4633. flex: 1;
  4634. overflow: hidden;
  4635. position: relative;
  4636. }
  4637. /* stylelint-disable */
  4638. .tox {
  4639. /* stylelint-enable */
  4640. }
  4641. .tox .tox-dialog-loading::before {
  4642. background-color: rgba(0, 0, 0, 0.5);
  4643. content: "";
  4644. height: 100%;
  4645. position: absolute;
  4646. width: 100%;
  4647. z-index: 1000;
  4648. }
  4649. .tox .tox-tab {
  4650. cursor: pointer;
  4651. }
  4652. .tox .tox-dialog__content-js {
  4653. display: flex;
  4654. flex: 1;
  4655. }
  4656. .tox .tox-dialog__body-content .tox-collection {
  4657. display: flex;
  4658. flex: 1;
  4659. }
  4660. .tox:not(.tox-tinymce-inline) .tox-editor-header {
  4661. background-color: none;
  4662. padding: 0;
  4663. }
  4664. .tox.tox-tinymce--toolbar-bottom .tox-editor-header,
  4665. .tox.tox-tinymce-inline .tox-editor-header {
  4666. margin-bottom: -1px;
  4667. }
  4668. .tox.tox-tinymce-inline .tox-editor-container {
  4669. overflow: hidden;
  4670. }
  4671. .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header {
  4672. border-top: none;
  4673. box-shadow: none;
  4674. }
  4675. .tox.tox.tox-tinymce--toolbar-sticky-on .tox-editor-header {
  4676. background-color: transparent;
  4677. box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
  4678. padding: 0;
  4679. }
  4680. .tox.tox.tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header {
  4681. box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.25);
  4682. }
  4683. .tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
  4684. margin: -4px 0;
  4685. }
  4686. .tox .tox-menu.tox-collection.tox-collection--list {
  4687. padding: 0;
  4688. }
  4689. .tox .tox-pop {
  4690. box-shadow: none;
  4691. }
  4692. .tox .tox-tbtn,
  4693. .tox .tox-number-input,
  4694. .tox .tox-tbtn--select,
  4695. .tox .tox-split-button {
  4696. margin: 2px 0 3px 0;
  4697. }
  4698. .tox .tox-toolbar,
  4699. .tox .tox-toolbar__primary,
  4700. .tox .tox-toolbar__overflow {
  4701. background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23cccccc'/%3E%3C/svg%3E") left 0 top 0 #fff !important;
  4702. }
  4703. .tox .tox-menubar + .tox-toolbar-overlord {
  4704. border-top: none;
  4705. }
  4706. .tox .tox-menubar + .tox-toolbar,
  4707. .tox .tox-menubar + .tox-toolbar-overlord .tox-toolbar__primary {
  4708. border-top: 1px solid #cccccc;
  4709. margin-top: -1px;
  4710. }
  4711. .tox.tox-tinymce-aux .tox-toolbar__overflow {
  4712. border: 1px solid #cccccc;
  4713. padding: 0;
  4714. }
  4715. .tox .tox-pop .tox-pop__dialog .tox-toolbar {
  4716. padding: 0;
  4717. }
  4718. .tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-menubar {
  4719. border-top: 1px solid #cccccc;
  4720. }
  4721. .tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar-overlord:first-child .tox-toolbar__primary,
  4722. .tox:not(.tox-tinymce-inline) .tox-editor-header:not(:first-child) .tox-toolbar:first-child {
  4723. border-top: 1px solid #cccccc;
  4724. }
  4725. .tox .tox-toolbar__group {
  4726. padding: 0 4px 0 4px;
  4727. }
  4728. .tox .tox-collection__item {
  4729. border-radius: 0;
  4730. cursor: pointer;
  4731. }
  4732. .tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),
  4733. .tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),
  4734. .tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]),
  4735. .tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),
  4736. .tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),
  4737. .tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]) {
  4738. color: #222f3e;
  4739. }
  4740. .tox .tox-statusbar__branding svg {
  4741. fill: rgba(34, 47, 62, 0.8);
  4742. height: 1em;
  4743. margin-left: 0.3em;
  4744. width: auto;
  4745. }
  4746. @media (forced-colors: active) {
  4747. .tox .tox-statusbar__branding svg {
  4748. fill: currentColor;
  4749. }
  4750. }
  4751. .tox .tox-statusbar__branding a {
  4752. /* stylelint-disable-line no-descending-specificity */
  4753. align-items: center;
  4754. display: inline-flex;
  4755. }
  4756. .tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg,
  4757. .tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg {
  4758. fill: #222f3e;
  4759. }
  4760. .tox:not([dir=rtl]) .tox-statusbar__branding {
  4761. margin-left: 1ch;
  4762. }
  4763. .tox[dir=rtl] .tox-statusbar__branding svg {
  4764. margin-left: 0;
  4765. margin-right: 0.3em;
  4766. }
  4767. .tox .tox-statusbar__resize-handle {
  4768. padding-bottom: 0;
  4769. padding-right: 0;
  4770. }
  4771. .tox .tox-button::before {
  4772. display: none;
  4773. }