skin.css 71 KB

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