skin.min.css 63 KB

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