skin.css 72 KB

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