skin.css 72 KB

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