skin.css 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. /**
  2. * Copyright (c) Tiny Technologies, Inc. All rights reserved.
  3. * Licensed under the LGPL or a commercial license.
  4. * For LGPL see License.txt in the project root for license information.
  5. * For commercial licenses see https://www.tiny.cloud/
  6. */
  7. .tox,
  8. .tox *:not(svg) {
  9. background: transparent;
  10. border: 0;
  11. box-sizing: content-box;
  12. color: #222f3e;
  13. cursor: auto;
  14. direction: ltr;
  15. float: none;
  16. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  17. font-size: 16px;
  18. font-style: normal;
  19. font-weight: normal;
  20. height: auto;
  21. line-height: normal;
  22. margin: 0;
  23. max-width: none;
  24. outline: 0;
  25. padding: 0;
  26. position: static;
  27. -webkit-tap-highlight-color: transparent;
  28. text-align: left;
  29. text-decoration: none;
  30. text-shadow: none;
  31. text-transform: none;
  32. vertical-align: initial;
  33. white-space: normal;
  34. width: auto;
  35. }
  36. .tox *:not(svg) {
  37. color: inherit;
  38. cursor: inherit;
  39. font-size: inherit;
  40. }
  41. .tox-tinymce {
  42. border: 1px solid #000000;
  43. border-radius: 0;
  44. box-shadow: none;
  45. box-sizing: border-box;
  46. display: flex;
  47. flex-direction: column;
  48. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  49. overflow: hidden;
  50. visibility: inherit !important;
  51. }
  52. .tox-editor-container {
  53. display: flex;
  54. flex: 1 1 auto;
  55. flex-direction: column;
  56. overflow: hidden;
  57. }
  58. .tox-editor-container > *:first-child {
  59. border-top: none !important;
  60. }
  61. .tox-tinymce-aux {
  62. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  63. z-index: 5000 !important;
  64. }
  65. .tox-tinymce *:focus,
  66. .tox-tinymce-aux *:focus {
  67. outline: none;
  68. }
  69. button::-moz-focus-inner {
  70. border: 0;
  71. }
  72. .tox-silver-sink {
  73. z-index: 1300;
  74. }
  75. .tox[dir='rtl'] {
  76. direction: rtl;
  77. }
  78. .tox[dir='rtl'] .tox-statusbar__resize-handle {
  79. justify-content: flex-start;
  80. margin-left: -8px;
  81. margin-right: 0;
  82. padding-left: 0;
  83. padding-right: 1ch;
  84. }
  85. .tox[dir='rtl'] .tox-statusbar .tox-statusbar__path {
  86. text-align: right;
  87. }
  88. .tox .tox-anchorbar {
  89. display: flex;
  90. flex: 0 0 auto;
  91. }
  92. .tox .tox-bar {
  93. display: flex;
  94. flex: 0 0 auto;
  95. }
  96. .tox .tox-button {
  97. background-color: #3498db;
  98. background-image: none;
  99. background-position: none;
  100. background-repeat: none;
  101. border-color: #3498db;
  102. border-radius: 3px;
  103. border-style: solid;
  104. border-width: 1px;
  105. box-shadow: none;
  106. box-sizing: border-box;
  107. color: #fff;
  108. cursor: pointer;
  109. display: inline-block;
  110. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  111. font-size: 14px;
  112. font-weight: bold;
  113. letter-spacing: 1;
  114. line-height: 24px;
  115. margin: 0;
  116. outline: none;
  117. padding: 4px 16px;
  118. text-align: center;
  119. text-decoration: none;
  120. text-transform: capitalize;
  121. white-space: nowrap;
  122. }
  123. .tox .tox-button[disabled] {
  124. background-color: #3498db;
  125. background-image: none;
  126. border-color: #3498db;
  127. box-shadow: none;
  128. color: rgba(255, 255, 255, 0.5);
  129. cursor: not-allowed;
  130. }
  131. .tox .tox-button:focus:not(:disabled) {
  132. background-color: #258cd1;
  133. background-image: none;
  134. border-color: #258cd1;
  135. box-shadow: none;
  136. color: #fff;
  137. }
  138. .tox .tox-button:hover:not(:disabled) {
  139. background-color: #258cd1;
  140. background-image: none;
  141. border-color: #258cd1;
  142. box-shadow: none;
  143. color: #fff;
  144. }
  145. .tox .tox-button:active:not(:disabled) {
  146. background-color: #217dbb;
  147. background-image: none;
  148. border-color: #217dbb;
  149. box-shadow: none;
  150. color: #fff;
  151. }
  152. .tox .tox-button--secondary {
  153. background-color: #3d546f;
  154. background-image: none;
  155. background-position: none;
  156. background-repeat: none;
  157. border-color: #3d546f;
  158. border-radius: 3px;
  159. border-style: solid;
  160. border-width: 1px;
  161. box-shadow: none;
  162. color: #fff;
  163. outline: none;
  164. padding: 4px 16px;
  165. text-decoration: none;
  166. text-transform: capitalize;
  167. }
  168. .tox .tox-button--secondary[disabled] {
  169. background-color: #3d546f;
  170. background-image: none;
  171. border-color: #3d546f;
  172. box-shadow: none;
  173. color: rgba(255, 255, 255, 0.5);
  174. }
  175. .tox .tox-button--secondary:focus:not(:disabled) {
  176. background-color: #34485f;
  177. background-image: none;
  178. border-color: #34485f;
  179. box-shadow: none;
  180. color: #fff;
  181. }
  182. .tox .tox-button--secondary:hover:not(:disabled) {
  183. background-color: #34485f;
  184. background-image: none;
  185. border-color: #34485f;
  186. box-shadow: none;
  187. color: #fff;
  188. }
  189. .tox .tox-button--secondary:active:not(:disabled) {
  190. background-color: #2b3b4e;
  191. background-image: none;
  192. border-color: #2b3b4e;
  193. box-shadow: none;
  194. color: #fff;
  195. }
  196. .tox .tox-button--icon,
  197. .tox .tox-button.tox-button--icon,
  198. .tox .tox-button.tox-button--secondary.tox-button--icon {
  199. padding: 4px;
  200. }
  201. .tox .tox-button--icon .tox-icon svg,
  202. .tox .tox-button.tox-button--icon .tox-icon svg,
  203. .tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg {
  204. display: block;
  205. fill: currentColor;
  206. }
  207. .tox .tox-button-link {
  208. background: 0;
  209. border: none;
  210. box-sizing: border-box;
  211. cursor: pointer;
  212. display: inline-block;
  213. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  214. font-size: 16px;
  215. font-weight: normal;
  216. line-height: 1.3;
  217. margin: 0;
  218. padding: 0;
  219. white-space: nowrap;
  220. }
  221. .tox .tox-button-link--sm {
  222. font-size: 14px;
  223. }
  224. .tox .tox-button--naked {
  225. background-color: transparent;
  226. border-color: transparent;
  227. box-shadow: unset;
  228. color: #fff;
  229. }
  230. .tox .tox-button--naked:hover:not(:disabled) {
  231. background-color: #34485f;
  232. border-color: #34485f;
  233. box-shadow: none;
  234. color: #fff;
  235. }
  236. .tox .tox-button--naked:focus:not(:disabled) {
  237. background-color: #34485f;
  238. border-color: #34485f;
  239. box-shadow: none;
  240. color: #fff;
  241. }
  242. .tox .tox-button--naked:active:not(:disabled) {
  243. background-color: #2b3b4e;
  244. border-color: #2b3b4e;
  245. box-shadow: none;
  246. color: #fff;
  247. }
  248. .tox .tox-button--naked .tox-icon svg {
  249. fill: currentColor;
  250. }
  251. .tox .tox-button--naked.tox-button--icon {
  252. color: currentColor;
  253. }
  254. .tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
  255. color: #fff;
  256. }
  257. .tox .tox-checkbox {
  258. align-items: center;
  259. border-radius: 3px;
  260. cursor: pointer;
  261. display: flex;
  262. height: 36px;
  263. min-width: 36px;
  264. }
  265. .tox .tox-checkbox__input {
  266. /* Hide from view but visible to screen readers */
  267. height: 1px;
  268. left: -10000px;
  269. overflow: hidden;
  270. position: absolute;
  271. top: auto;
  272. width: 1px;
  273. }
  274. .tox .tox-checkbox__icons {
  275. border-radius: 3px;
  276. box-shadow: 0 0 0 2px transparent;
  277. height: 24px;
  278. padding: calc(4px - 1px);
  279. width: 24px;
  280. }
  281. .tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  282. display: block;
  283. fill: rgba(255, 255, 255, 0.2);
  284. }
  285. .tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  286. display: none;
  287. fill: #3498db;
  288. }
  289. .tox .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  290. display: none;
  291. fill: #3498db;
  292. }
  293. .tox .tox-checkbox__label {
  294. margin-left: 4px;
  295. }
  296. .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  297. display: none;
  298. }
  299. .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__checked svg {
  300. display: block;
  301. }
  302. .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
  303. display: none;
  304. }
  305. .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
  306. display: block;
  307. }
  308. .tox input.tox-checkbox__input:focus + .tox-checkbox__icons {
  309. border-radius: 3px;
  310. box-shadow: inset 0 0 0 1px #3498db;
  311. padding: calc(4px - 1px);
  312. }
  313. .tox .tox-bar .tox-checkbox {
  314. margin-left: 4px;
  315. }
  316. .tox .tox-collection--toolbar .tox-collection__group {
  317. display: flex;
  318. padding: 0;
  319. }
  320. .tox .tox-collection--grid .tox-collection__group {
  321. display: flex;
  322. flex-wrap: wrap;
  323. max-height: 208px;
  324. overflow-x: hidden;
  325. overflow-y: auto;
  326. padding: 0;
  327. }
  328. .tox .tox-collection--list .tox-collection__group {
  329. border-bottom-width: 0;
  330. border-color: #1a1a1a;
  331. border-left-width: 0;
  332. border-right-width: 0;
  333. border-style: solid;
  334. border-top-width: 1px;
  335. padding: 4px 0;
  336. }
  337. .tox .tox-collection--list .tox-collection__group:first-child {
  338. border-top-width: 0;
  339. }
  340. .tox .tox-collection__group-heading {
  341. background-color: #333333;
  342. color: #fff;
  343. cursor: default;
  344. font-size: 12px;
  345. font-style: normal;
  346. font-weight: normal;
  347. margin-bottom: 4px;
  348. margin-top: -4px;
  349. padding: 4px 8px;
  350. text-transform: none;
  351. -webkit-touch-callout: none;
  352. -webkit-user-select: none;
  353. -moz-user-select: none;
  354. -ms-user-select: none;
  355. user-select: none;
  356. }
  357. .tox .tox-collection__item {
  358. align-items: center;
  359. color: #fff;
  360. cursor: pointer;
  361. display: flex;
  362. -webkit-touch-callout: none;
  363. -webkit-user-select: none;
  364. -moz-user-select: none;
  365. -ms-user-select: none;
  366. user-select: none;
  367. }
  368. .tox .tox-collection__item--state-disabled {
  369. background-color: unset;
  370. color: rgba(255, 255, 255, 0.5);
  371. cursor: default;
  372. }
  373. .tox .tox-collection--list .tox-collection__item {
  374. padding: 4px 8px;
  375. }
  376. .tox .tox-collection--toolbar .tox-collection__item {
  377. border-radius: 3px;
  378. padding: 4px;
  379. }
  380. .tox .tox-collection--grid .tox-collection__item {
  381. border-radius: 3px;
  382. padding: 4px;
  383. }
  384. .tox .tox-collection--list .tox-collection__item--enabled {
  385. background-color: inherit;
  386. color: contrast(inherit, #222f3e, #fff);
  387. }
  388. .tox .tox-collection--list .tox-collection__item--active {
  389. background-color: #434e5b;
  390. color: #fff;
  391. }
  392. .tox .tox-collection--toolbar .tox-collection__item--enabled {
  393. background-color: #6f7882;
  394. color: #fff;
  395. }
  396. .tox .tox-collection--toolbar .tox-collection__item--active {
  397. background-color: #434e5b;
  398. color: #fff;
  399. }
  400. .tox .tox-collection--grid .tox-collection__item--enabled {
  401. background-color: #6f7882;
  402. color: #fff;
  403. }
  404. .tox .tox-collection--grid .tox-collection__item--active {
  405. background-color: #434e5b;
  406. color: #fff;
  407. }
  408. .tox .tox-collection__item-icon {
  409. align-items: center;
  410. display: flex;
  411. height: 24px;
  412. justify-content: center;
  413. width: 24px;
  414. }
  415. .tox .tox-collection__item-icon svg {
  416. fill: currentColor;
  417. }
  418. .tox .tox-collection--toolbar-lg .tox-collection__item-icon {
  419. height: 48px;
  420. width: 48px;
  421. }
  422. .tox .tox-collection--list .tox-collection__item > *:not(:first-child) {
  423. margin-left: 8px;
  424. }
  425. .tox .tox-collection__item[role="menuitemcheckbox"]:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg {
  426. display: none;
  427. }
  428. .tox .tox-collection__item-label {
  429. color: currentColor;
  430. display: inline-block;
  431. flex: 1;
  432. -ms-flex-preferred-size: auto;
  433. font-size: 14px;
  434. font-style: normal;
  435. font-weight: normal;
  436. line-height: 24px;
  437. text-transform: none;
  438. word-break: break-all;
  439. }
  440. .tox .tox-collection--list .tox-collection__item-label:first-child {
  441. margin-left: 4px;
  442. }
  443. .tox .tox-collection__item-accessory {
  444. color: rgba(255, 255, 255, 0.5);
  445. display: inline-block;
  446. font-size: 14px;
  447. height: 24px;
  448. line-height: 24px;
  449. margin-left: 16px;
  450. text-align: right;
  451. text-transform: normal;
  452. }
  453. .tox .tox-collection__item-caret {
  454. align-items: center;
  455. display: flex;
  456. margin-left: 16px;
  457. min-height: 24px;
  458. }
  459. .tox .tox-color-picker-container {
  460. display: flex;
  461. flex-direction: row;
  462. height: 225px;
  463. margin: 0;
  464. }
  465. .tox .tox-sv-palette {
  466. border: 1px solid black;
  467. box-sizing: border-box;
  468. display: flex;
  469. height: 100%;
  470. margin-right: 15px;
  471. }
  472. .tox .tox-sv-palette-spectrum {
  473. height: 100%;
  474. }
  475. .tox .tox-sv-palette,
  476. .tox .tox-sv-palette-spectrum {
  477. width: 225px;
  478. }
  479. .tox .tox-sv-palette-thumb {
  480. background: none;
  481. border: 1px solid black;
  482. border-radius: 50%;
  483. height: 12px;
  484. position: absolute;
  485. width: 12px;
  486. }
  487. .tox .tox-sv-palette-inner-thumb {
  488. border: 1px solid white;
  489. border-radius: 50%;
  490. height: 10px;
  491. position: absolute;
  492. width: 10px;
  493. }
  494. .tox .tox-hue-slider {
  495. border: 1px solid black;
  496. box-sizing: border-box;
  497. height: 100%;
  498. margin-right: 15px;
  499. width: 25px;
  500. }
  501. .tox .tox-hue-slider-spectrum {
  502. background: linear-gradient(to bottom, #f00, #ff0080, #f0f, #8000ff, #00f, #0080ff, #0ff, #00ff80, #0f0, #80ff00, #ff0, #ff8000, #f00);
  503. height: 100%;
  504. width: 100%;
  505. }
  506. .tox .tox-hue-slider,
  507. .tox .tox-hue-slider-spectrum {
  508. width: 20px;
  509. }
  510. .tox .tox-hue-slider-thumb {
  511. background: white;
  512. border: 1px solid black;
  513. height: 4px;
  514. margin-left: -1px;
  515. width: 100%;
  516. }
  517. .tox .tox-rgb-form {
  518. display: flex;
  519. flex-direction: column;
  520. justify-content: space-between;
  521. }
  522. .tox .tox-rgb-form div {
  523. align-items: center;
  524. display: flex;
  525. justify-content: space-between;
  526. margin-bottom: 5px;
  527. width: inherit;
  528. }
  529. .tox .tox-rgb-form input {
  530. width: 6em;
  531. }
  532. .tox .tox-rgb-form input.tox-invalid {
  533. /* Need !important to override Chrome's focus styling unfortunately */
  534. border: 1px solid red !important;
  535. }
  536. .tox .tox-rgb-form label {
  537. margin-right: 0.5em;
  538. }
  539. .tox .tox-rgb-form .tox-rgba-preview {
  540. border: 1px solid black;
  541. flex-grow: 2;
  542. margin-bottom: 0;
  543. }
  544. .tox .tox-toolbar .tox-swatches,
  545. .tox .tox-toolbar__primary .tox-swatches,
  546. .tox .tox-toolbar__overflow .tox-swatches {
  547. margin: 2px 0 3px 4px;
  548. }
  549. .tox .tox-swatches__row {
  550. display: flex;
  551. }
  552. .tox .tox-swatch {
  553. height: 30px;
  554. transition: transform 0.15s, box-shadow 0.15s;
  555. width: 30px;
  556. }
  557. .tox .tox-swatch:hover,
  558. .tox .tox-swatch:focus {
  559. box-shadow: 0 0 0 1px rgba(127, 127, 127, 0.3) inset;
  560. transform: scale(0.8);
  561. }
  562. .tox .tox-swatch--remove {
  563. align-items: center;
  564. display: flex;
  565. justify-content: center;
  566. }
  567. .tox .tox-swatch--remove svg path {
  568. stroke: #e74c3c;
  569. }
  570. .tox .tox-swatches__picker-btn {
  571. align-items: center;
  572. background-color: transparent;
  573. border: 0;
  574. cursor: pointer;
  575. display: flex;
  576. height: 30px;
  577. justify-content: center;
  578. margin-left: auto;
  579. outline: none;
  580. padding: 0;
  581. width: 30px;
  582. }
  583. .tox .tox-swatches__picker-btn svg {
  584. height: 24px;
  585. width: 24px;
  586. }
  587. .tox .tox-swatches__picker-btn:hover {
  588. background: #434e5b;
  589. }
  590. .tox .tox-comment-thread {
  591. background: #2b3b4e;
  592. position: relative;
  593. }
  594. .tox .tox-comment-thread > *:not(:first-child) {
  595. margin-top: 8px;
  596. }
  597. .tox .tox-comment {
  598. background: #2b3b4e;
  599. border: 1px solid #000000;
  600. border-radius: 3px;
  601. box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  602. padding: 8px 8px 16px 8px;
  603. position: relative;
  604. }
  605. .tox .tox-comment__header {
  606. align-items: center;
  607. color: #fff;
  608. display: flex;
  609. justify-content: space-between;
  610. }
  611. .tox .tox-comment__date {
  612. color: rgba(255, 255, 255, 0.5);
  613. font-size: 12px;
  614. }
  615. .tox .tox-comment__body {
  616. color: #fff;
  617. font-size: 14px;
  618. font-style: normal;
  619. font-weight: normal;
  620. line-height: 1.3;
  621. margin-top: 8px;
  622. position: relative;
  623. text-transform: initial;
  624. }
  625. .tox .tox-comment__body textarea {
  626. resize: none;
  627. white-space: normal;
  628. width: 100%;
  629. }
  630. .tox .tox-comment__expander {
  631. padding-top: 8px;
  632. }
  633. .tox .tox-comment__expander p {
  634. color: rgba(255, 255, 255, 0.5);
  635. font-size: 14px;
  636. font-style: normal;
  637. }
  638. .tox .tox-comment__body p {
  639. margin: 0;
  640. }
  641. .tox .tox-comment__buttonspacing {
  642. padding-top: 16px;
  643. text-align: center;
  644. }
  645. .tox .tox-comment__buttonspacing > *:last-child {
  646. margin-left: 8px;
  647. }
  648. .tox .tox-comment-thread__overlay::after {
  649. background: #2b3b4e;
  650. bottom: 0;
  651. content: "";
  652. display: flex;
  653. left: 0;
  654. opacity: 0.9;
  655. position: absolute;
  656. right: 0;
  657. top: 0;
  658. z-index: 5;
  659. }
  660. .tox .tox-comment__reply {
  661. display: flex;
  662. flex-shrink: 0;
  663. flex-wrap: wrap;
  664. justify-content: flex-end;
  665. margin-top: 8px;
  666. }
  667. .tox .tox-comment__reply > *:first-child {
  668. margin-bottom: 8px;
  669. width: 100%;
  670. }
  671. .tox .tox-comment__reply > *:last-child {
  672. margin-left: 8px;
  673. }
  674. .tox .tox-comment__edit {
  675. display: flex;
  676. flex-wrap: wrap;
  677. justify-content: flex-end;
  678. margin-left: 8px;
  679. margin-top: 16px;
  680. }
  681. .tox .tox-comment__edit > *:last-child {
  682. margin-left: 8px;
  683. }
  684. .tox .tox-comment__gradient::after {
  685. background: linear-gradient(rgba(43, 59, 78, 0), #2b3b4e);
  686. bottom: 0;
  687. content: "";
  688. display: block;
  689. height: 5em;
  690. margin-top: -40px;
  691. position: absolute;
  692. width: 100%;
  693. }
  694. .tox .tox-comment__overlay {
  695. background: #2b3b4e;
  696. bottom: 0;
  697. display: flex;
  698. flex-direction: column;
  699. flex-grow: 1;
  700. left: 0;
  701. opacity: 0.9;
  702. position: absolute;
  703. right: 0;
  704. text-align: center;
  705. top: 0;
  706. z-index: 5;
  707. }
  708. .tox .tox-comment__loading-text {
  709. align-items: center;
  710. color: #fff;
  711. display: flex;
  712. flex-direction: column;
  713. position: relative;
  714. }
  715. .tox .tox-comment__loading-text > div {
  716. padding-bottom: 16px;
  717. }
  718. .tox .tox-comment__overlaytext {
  719. bottom: 0;
  720. flex-direction: column;
  721. font-size: 14px;
  722. left: 0;
  723. padding: 1em;
  724. position: absolute;
  725. right: 0;
  726. top: 0;
  727. z-index: 10;
  728. }
  729. .tox .tox-comment__overlaytext p {
  730. background-color: #2b3b4e;
  731. box-shadow: 0 0 8px 8px #2b3b4e;
  732. color: #fff;
  733. text-align: center;
  734. }
  735. .tox .tox-comment__overlaytext div:nth-of-type(2) {
  736. font-size: 0.8em;
  737. }
  738. .tox .tox-comment__busy-spinner {
  739. align-items: center;
  740. background-color: #2b3b4e;
  741. bottom: 0;
  742. display: flex;
  743. justify-content: center;
  744. left: 0;
  745. position: absolute;
  746. right: 0;
  747. top: 0;
  748. z-index: 1103;
  749. }
  750. .tox .tox-comment__scroll {
  751. display: flex;
  752. flex-direction: column;
  753. flex-shrink: 1;
  754. overflow: auto;
  755. }
  756. .tox .tox-conversations {
  757. margin: 8px;
  758. }
  759. .tox .tox-user {
  760. align-items: center;
  761. display: flex;
  762. }
  763. .tox .tox-user__avatar svg {
  764. fill: rgba(255, 255, 255, 0.5);
  765. margin-right: 8px;
  766. }
  767. .tox .tox-user__name {
  768. color: rgba(255, 255, 255, 0.5);
  769. font-size: 12px;
  770. font-style: normal;
  771. font-weight: bold;
  772. text-transform: uppercase;
  773. }
  774. .tox .tox-user__avatar + .tox-user__name {
  775. margin-left: 8px;
  776. }
  777. .tox .tox-dialog-wrap {
  778. align-items: center;
  779. bottom: 0;
  780. display: flex;
  781. justify-content: center;
  782. left: 0;
  783. position: fixed;
  784. right: 0;
  785. top: 0;
  786. z-index: 1100;
  787. }
  788. .tox .tox-dialog-wrap__backdrop {
  789. background-color: rgba(34, 47, 62, 0.75);
  790. bottom: 0;
  791. left: 0;
  792. position: absolute;
  793. right: 0;
  794. top: 0;
  795. z-index: 1101;
  796. }
  797. .tox .tox-dialog {
  798. background-color: #2b3b4e;
  799. border-color: #000000;
  800. border-radius: 3px;
  801. border-style: solid;
  802. border-width: 1px;
  803. box-shadow: 0 16px 16px -10px rgba(34, 47, 62, 0.15), 0 0 40px 1px rgba(34, 47, 62, 0.15);
  804. display: flex;
  805. flex-direction: column;
  806. max-height: 100%;
  807. max-width: 480px;
  808. overflow: hidden;
  809. position: relative;
  810. width: 95vw;
  811. z-index: 1102;
  812. }
  813. .tox .tox-dialog__header {
  814. align-items: center;
  815. background-color: #2b3b4e;
  816. border-bottom: none;
  817. color: #fff;
  818. display: flex;
  819. font-size: 16px;
  820. justify-content: space-between;
  821. margin-bottom: 16px;
  822. padding: 8px 16px 0 16px;
  823. position: relative;
  824. }
  825. .tox .tox-dialog__header .tox-button {
  826. z-index: 1;
  827. }
  828. .tox .tox-dialog__draghandle {
  829. cursor: grab;
  830. height: 100%;
  831. left: 0;
  832. position: absolute;
  833. top: 0;
  834. width: 100%;
  835. }
  836. .tox .tox-dialog__draghandle:active {
  837. cursor: grabbing;
  838. }
  839. .tox .tox-dialog__dismiss {
  840. margin-left: auto;
  841. }
  842. .tox .tox-dialog__title {
  843. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  844. font-size: 20px;
  845. font-style: normal;
  846. font-weight: normal;
  847. line-height: 1.3;
  848. margin: 0;
  849. text-transform: normal;
  850. }
  851. .tox .tox-dialog__body {
  852. color: #fff;
  853. display: flex;
  854. flex: 1;
  855. -ms-flex-preferred-size: auto;
  856. font-size: 16px;
  857. font-style: normal;
  858. font-weight: normal;
  859. line-height: 1.3;
  860. min-width: 0;
  861. padding: 0 16px;
  862. text-align: left;
  863. text-transform: normal;
  864. }
  865. .tox .tox-dialog__body-nav {
  866. align-items: flex-start;
  867. display: flex;
  868. flex-direction: column;
  869. margin-right: 32px;
  870. }
  871. .tox .tox-dialog__body-nav-item {
  872. border-bottom: 2px solid transparent;
  873. color: rgba(255, 255, 255, 0.5);
  874. display: inline-block;
  875. font-size: 14px;
  876. line-height: 1.3;
  877. margin-bottom: 8px;
  878. text-decoration: none;
  879. }
  880. .tox .tox-dialog__body-nav-item--active {
  881. border-bottom: 2px solid #3498db;
  882. color: #3498db;
  883. }
  884. .tox .tox-dialog__body-content {
  885. display: flex;
  886. flex: 1;
  887. flex-direction: column;
  888. -ms-flex-preferred-size: auto;
  889. max-height: 650px;
  890. overflow: auto;
  891. }
  892. .tox .tox-dialog__body-content > * {
  893. margin-bottom: 0;
  894. margin-top: 16px;
  895. }
  896. .tox .tox-dialog__body-content > *:first-child {
  897. margin-top: 0;
  898. }
  899. .tox .tox-dialog__body-content > *:last-child {
  900. margin-bottom: 0;
  901. }
  902. .tox .tox-dialog__body-content > *:only-child {
  903. margin-bottom: 0;
  904. margin-top: 0;
  905. }
  906. .tox .tox-dialog--width-lg {
  907. height: 650px;
  908. max-width: 1200px;
  909. }
  910. .tox .tox-dialog--width-md {
  911. max-width: 800px;
  912. }
  913. .tox .tox-dialog--width-md .tox-dialog__body-content {
  914. overflow: auto;
  915. }
  916. .tox .tox-dialog__body-content--centered {
  917. text-align: center;
  918. }
  919. .tox .tox-dialog__body-content--spacious {
  920. margin-bottom: 16px;
  921. }
  922. .tox .tox-dialog__footer {
  923. align-items: center;
  924. background-color: #2b3b4e;
  925. border-top: 1px solid #000000;
  926. display: flex;
  927. justify-content: space-between;
  928. margin-top: 16px;
  929. padding: 8px 16px;
  930. }
  931. .tox .tox-dialog__footer .tox-dialog__footer-start > *,
  932. .tox .tox-dialog__footer .tox-dialog__footer-end > * {
  933. margin-left: 8px;
  934. }
  935. .tox .tox-dialog__busy-spinner {
  936. align-items: center;
  937. background-color: rgba(34, 47, 62, 0.75);
  938. bottom: 0;
  939. display: flex;
  940. justify-content: center;
  941. left: 0;
  942. position: absolute;
  943. right: 0;
  944. top: 0;
  945. z-index: 1103;
  946. }
  947. .tox .tox-dialog__table {
  948. border-collapse: collapse;
  949. width: 100%;
  950. }
  951. .tox .tox-dialog__table thead th {
  952. font-weight: bold;
  953. padding-bottom: 8px;
  954. }
  955. .tox .tox-dialog__table tbody tr {
  956. border-bottom: 1px solid #000000;
  957. }
  958. .tox .tox-dialog__table tbody tr:last-child {
  959. border-bottom: none;
  960. }
  961. .tox .tox-dialog__table td {
  962. padding-bottom: 8px;
  963. padding-top: 8px;
  964. }
  965. .tox .tox-dialog__popups {
  966. position: absolute;
  967. width: 100%;
  968. z-index: 1100;
  969. }
  970. body.tox-dialog__disable-scroll {
  971. overflow: hidden;
  972. }
  973. .tox .tox-dropzone-container {
  974. display: flex;
  975. flex: 1;
  976. -ms-flex-preferred-size: auto;
  977. }
  978. .tox .tox-dropzone {
  979. align-items: center;
  980. background: #fff;
  981. border: 2px dashed #000000;
  982. box-sizing: border-box;
  983. display: flex;
  984. flex-direction: column;
  985. flex-grow: 1;
  986. justify-content: center;
  987. min-height: 100px;
  988. padding: 10px;
  989. }
  990. .tox .tox-dropzone p {
  991. color: rgba(255, 255, 255, 0.5);
  992. margin: 0 0 16px 0;
  993. }
  994. .tox .tox-edit-area {
  995. border-top: 1px solid #000000;
  996. display: flex;
  997. flex: 1;
  998. -ms-flex-preferred-size: auto;
  999. overflow: hidden;
  1000. position: relative;
  1001. }
  1002. .tox .tox-edit-area__iframe {
  1003. background-color: #fff;
  1004. border: 0;
  1005. box-sizing: border-box;
  1006. flex: 1;
  1007. -ms-flex-preferred-size: auto;
  1008. height: 100%;
  1009. position: absolute;
  1010. width: 100%;
  1011. }
  1012. .tox.tox-inline-edit-area {
  1013. border: 1px dotted #000000;
  1014. }
  1015. .tox .tox-control-wrap {
  1016. flex: 1;
  1017. position: relative;
  1018. }
  1019. .tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,
  1020. .tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,
  1021. .tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid {
  1022. display: none;
  1023. }
  1024. .tox .tox-control-wrap svg {
  1025. display: block;
  1026. }
  1027. .tox .tox-control-wrap .tox-textfield {
  1028. padding-right: 32px;
  1029. }
  1030. .tox .tox-control-wrap__status-icon-wrap {
  1031. position: absolute;
  1032. right: 4px;
  1033. top: 50%;
  1034. transform: translateY(-50%);
  1035. }
  1036. .tox .tox-control-wrap__status-icon-invalid svg {
  1037. fill: #c00;
  1038. }
  1039. .tox .tox-control-wrap__status-icon-unknown svg {
  1040. fill: orange;
  1041. }
  1042. .tox .tox-control-wrap__status-icon-valid svg {
  1043. fill: transparent;
  1044. }
  1045. .tox .tox-autocompleter {
  1046. max-width: 25em;
  1047. }
  1048. .tox .tox-autocompleter .tox-menu {
  1049. max-width: 25em;
  1050. }
  1051. .tox .tox-color-input {
  1052. display: flex;
  1053. }
  1054. .tox .tox-color-input .tox-textfield {
  1055. border-radius: 3px 0 0 3px;
  1056. display: flex;
  1057. }
  1058. .tox .tox-color-input span {
  1059. border-color: rgba(34, 47, 62, 0.2);
  1060. border-radius: 0 3px 3px 0;
  1061. border-style: solid;
  1062. border-width: 1px 1px 1px 0;
  1063. box-shadow: none;
  1064. box-sizing: border-box;
  1065. cursor: pointer;
  1066. display: flex;
  1067. width: 35px;
  1068. }
  1069. .tox .tox-color-input span:focus {
  1070. border-color: #3498db;
  1071. }
  1072. .tox .tox-label,
  1073. .tox .tox-toolbar-label {
  1074. color: rgba(255, 255, 255, 0.5);
  1075. display: block;
  1076. font-size: 14px;
  1077. font-style: normal;
  1078. font-weight: normal;
  1079. line-height: 1.3;
  1080. padding: 0 8px 0 0;
  1081. text-transform: normal;
  1082. white-space: nowrap;
  1083. }
  1084. .tox .tox-toolbar-label {
  1085. padding: 0 8px;
  1086. }
  1087. .tox .tox-form {
  1088. display: flex;
  1089. flex: 1;
  1090. flex-direction: column;
  1091. -ms-flex-preferred-size: auto;
  1092. }
  1093. .tox .tox-form__group {
  1094. box-sizing: border-box;
  1095. margin-bottom: 4px;
  1096. }
  1097. .tox .tox-form__group--error {
  1098. color: #c00;
  1099. }
  1100. .tox .tox-form__group--collection {
  1101. display: flex;
  1102. }
  1103. .tox .tox-form__grid {
  1104. display: flex;
  1105. flex-direction: row;
  1106. flex-wrap: wrap;
  1107. justify-content: space-between;
  1108. }
  1109. .tox .tox-form__grid--2col > .tox-form__group {
  1110. width: calc(50% - (8px / 2));
  1111. }
  1112. .tox .tox-form__grid--3col > .tox-form__group {
  1113. width: calc(100% / 3 - (8px / 2));
  1114. }
  1115. .tox .tox-form__grid--4col > .tox-form__group {
  1116. width: calc(25% - (8px / 2));
  1117. }
  1118. .tox .tox-form__controls-h-stack {
  1119. align-items: center;
  1120. display: flex;
  1121. }
  1122. .tox .tox-form__controls-h-stack > *:not(:first-child) {
  1123. margin-left: 4px;
  1124. }
  1125. .tox .tox-form__group--inline {
  1126. align-items: center;
  1127. display: flex;
  1128. }
  1129. .tox .tox-form__group--stretched {
  1130. display: flex;
  1131. flex: 1;
  1132. flex-direction: column;
  1133. -ms-flex-preferred-size: auto;
  1134. }
  1135. .tox .tox-form__group--stretched .tox-textarea {
  1136. flex: 1;
  1137. -ms-flex-preferred-size: auto;
  1138. }
  1139. .tox .tox-form__group--stretched .tox-navobj {
  1140. display: flex;
  1141. flex: 1;
  1142. -ms-flex-preferred-size: auto;
  1143. }
  1144. .tox .tox-form__group--stretched .tox-navobj :nth-child(2) {
  1145. flex: 1;
  1146. -ms-flex-preferred-size: auto;
  1147. height: 100%;
  1148. }
  1149. .tox .tox-lock.tox-locked .tox-lock-icon__unlock,
  1150. .tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock {
  1151. display: none;
  1152. }
  1153. .tox .tox-selectfield {
  1154. cursor: pointer;
  1155. position: relative;
  1156. }
  1157. .tox .tox-selectfield select {
  1158. padding-right: 24px;
  1159. }
  1160. .tox .tox-selectfield select::-ms-expand {
  1161. display: none;
  1162. }
  1163. .tox .tox-selectfield svg {
  1164. pointer-events: none;
  1165. position: absolute;
  1166. right: 8px;
  1167. top: 50%;
  1168. transform: translateY(-50%);
  1169. }
  1170. .tox .tox-textarea {
  1171. white-space: pre-wrap;
  1172. }
  1173. .tox .tox-textfield,
  1174. .tox .tox-selectfield select,
  1175. .tox .tox-textarea,
  1176. .tox .tox-toolbar-textfield {
  1177. -webkit-appearance: none;
  1178. -moz-appearance: none;
  1179. appearance: none;
  1180. background-color: #2b3b4e;
  1181. border-color: #000000;
  1182. border-radius: 3px;
  1183. border-style: solid;
  1184. border-width: 1px;
  1185. box-shadow: none;
  1186. box-sizing: border-box;
  1187. color: #fff;
  1188. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  1189. font-size: 16px;
  1190. line-height: 24px;
  1191. margin: 0;
  1192. outline: none;
  1193. padding: 5px 4.75px;
  1194. resize: none;
  1195. width: 100%;
  1196. }
  1197. .tox .tox-textfield:focus,
  1198. .tox .tox-selectfield select:focus,
  1199. .tox .tox-textarea:focus {
  1200. border-color: #3498db;
  1201. box-shadow: none;
  1202. outline: none;
  1203. }
  1204. .tox .tox-toolbar-textfield {
  1205. border-width: 0;
  1206. margin-bottom: 3px;
  1207. margin-top: 2px;
  1208. max-width: 250px;
  1209. }
  1210. .tox .tox-toolbar-textfield + * {
  1211. margin-left: 4px;
  1212. }
  1213. .tox .tox-naked-btn {
  1214. background-color: transparent;
  1215. border: 0;
  1216. border-color: transparent;
  1217. box-shadow: unset;
  1218. color: #3498db;
  1219. cursor: pointer;
  1220. display: block;
  1221. margin: 0;
  1222. padding: 0;
  1223. }
  1224. .tox .tox-naked-btn svg {
  1225. display: block;
  1226. fill: #fff;
  1227. }
  1228. .tox-fullscreen {
  1229. border: 0;
  1230. height: 100%;
  1231. left: 0;
  1232. margin: 0;
  1233. overflow: hidden;
  1234. padding: 0;
  1235. position: fixed;
  1236. top: 0;
  1237. width: 100%;
  1238. }
  1239. .tox-fullscreen .tox .tox-statusbar__resize-handle {
  1240. display: none;
  1241. }
  1242. .tox-fullscreen .tox.tox-tinymce {
  1243. z-index: 1200;
  1244. }
  1245. .tox-fullscreen .tox.tox-tinymce-aux {
  1246. z-index: 1201;
  1247. }
  1248. .tox .tox-image-tools {
  1249. width: 100%;
  1250. }
  1251. .tox .tox-image-tools__toolbar {
  1252. align-items: center;
  1253. display: flex;
  1254. justify-content: center;
  1255. }
  1256. .tox .tox-image-tools__image {
  1257. background-color: #666;
  1258. height: 380px;
  1259. overflow: auto;
  1260. position: relative;
  1261. width: 100%;
  1262. }
  1263. .tox .tox-image-tools__image,
  1264. .tox .tox-image-tools__image + .tox-image-tools__toolbar {
  1265. margin-top: 8px;
  1266. }
  1267. .tox .tox-image-tools__image-bg {
  1268. background: url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==);
  1269. }
  1270. .tox .tox-image-tools__toolbar > .tox-slider:not(:first-of-type) {
  1271. margin-left: 8px;
  1272. }
  1273. .tox .tox-image-tools__toolbar > .tox-button + .tox-slider {
  1274. margin-left: 32px;
  1275. }
  1276. .tox .tox-image-tools__toolbar > .tox-slider + .tox-button {
  1277. margin-left: 32px;
  1278. }
  1279. .tox .tox-image-tools__toolbar > .tox-spacer {
  1280. flex: 1;
  1281. -ms-flex-preferred-size: auto;
  1282. }
  1283. .tox .tox-croprect-block {
  1284. background: black;
  1285. filter: alpha(opacity=50);
  1286. opacity: 0.5;
  1287. position: absolute;
  1288. zoom: 1;
  1289. }
  1290. .tox .tox-croprect-handle {
  1291. border: 2px solid white;
  1292. height: 20px;
  1293. left: 0;
  1294. position: absolute;
  1295. top: 0;
  1296. width: 20px;
  1297. }
  1298. .tox .tox-croprect-handle-move {
  1299. border: 0;
  1300. cursor: move;
  1301. position: absolute;
  1302. }
  1303. .tox .tox-croprect-handle-nw {
  1304. border-width: 2px 0 0 2px;
  1305. cursor: nw-resize;
  1306. left: 100px;
  1307. margin: -2px 0 0 -2px;
  1308. top: 100px;
  1309. }
  1310. .tox .tox-croprect-handle-ne {
  1311. border-width: 2px 2px 0 0;
  1312. cursor: ne-resize;
  1313. left: 200px;
  1314. margin: -2px 0 0 -20px;
  1315. top: 100px;
  1316. }
  1317. .tox .tox-croprect-handle-sw {
  1318. border-width: 0 0 2px 2px;
  1319. cursor: sw-resize;
  1320. left: 100px;
  1321. margin: -20px 2px 0 -2px;
  1322. top: 200px;
  1323. }
  1324. .tox .tox-croprect-handle-se {
  1325. border-width: 0 2px 2px 0;
  1326. cursor: se-resize;
  1327. left: 200px;
  1328. margin: -20px 0 0 -20px;
  1329. top: 200px;
  1330. }
  1331. .tox .tox-insert-table-picker {
  1332. display: flex;
  1333. flex-wrap: wrap;
  1334. width: 169px;
  1335. }
  1336. .tox .tox-insert-table-picker > div {
  1337. border-color: #070a0d;
  1338. border-style: solid;
  1339. border-width: 0 1px 1px 0;
  1340. box-sizing: content-box;
  1341. height: 16px;
  1342. width: 16px;
  1343. }
  1344. .tox .tox-insert-table-picker > div:nth-child(10n) {
  1345. border-right: 0;
  1346. }
  1347. .tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
  1348. margin: -4px 0;
  1349. }
  1350. .tox .tox-insert-table-picker .tox-insert-table-picker__selected {
  1351. background-color: rgba(52, 152, 219, 0.5);
  1352. border-color: rgba(52, 152, 219, 0.5);
  1353. }
  1354. .tox .tox-insert-table-picker__label {
  1355. color: #fff;
  1356. display: block;
  1357. font-size: 14px;
  1358. padding: 4px;
  1359. text-align: center;
  1360. width: 100%;
  1361. }
  1362. .tox {
  1363. /* stylelint-disable */
  1364. /* stylelint-enable */
  1365. }
  1366. .tox .tox-menu {
  1367. background-color: #2b3b4e;
  1368. border: 1px solid #000000;
  1369. border-radius: 3px;
  1370. box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
  1371. display: inline-block;
  1372. overflow: hidden;
  1373. vertical-align: top;
  1374. z-index: 1;
  1375. }
  1376. .tox .tox-menu.tox-collection.tox-collection--list {
  1377. padding: 0;
  1378. }
  1379. .tox .tox-menu.tox-collection.tox-collection--toolbar {
  1380. padding: 4px;
  1381. }
  1382. .tox .tox-menu.tox-collection.tox-collection--grid {
  1383. padding: 4px;
  1384. }
  1385. .tox .tox-menu__label h1,
  1386. .tox .tox-menu__label h2,
  1387. .tox .tox-menu__label h3,
  1388. .tox .tox-menu__label h4,
  1389. .tox .tox-menu__label h5,
  1390. .tox .tox-menu__label h6,
  1391. .tox .tox-menu__label p,
  1392. .tox .tox-menu__label blockquote,
  1393. .tox .tox-menu__label code {
  1394. margin: 0;
  1395. }
  1396. .tox .tox-menubar {
  1397. background: url("data:image/svg+xml;charset=utf8,%3Csvg height='43px' viewBox='0 0 40 43px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='42px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #222f3e;
  1398. background-color: #222f3e;
  1399. display: flex;
  1400. flex: 0 0 auto;
  1401. flex-shrink: 0;
  1402. flex-wrap: wrap;
  1403. margin-bottom: -1px;
  1404. padding: 0 4px;
  1405. }
  1406. .tox .tox-mbtn {
  1407. align-items: center;
  1408. background: none;
  1409. border: 0;
  1410. border-radius: 3px;
  1411. box-shadow: none;
  1412. color: #fff;
  1413. display: flex;
  1414. flex: 0 0 auto;
  1415. font-size: 14px;
  1416. font-style: normal;
  1417. font-weight: normal;
  1418. height: 34px;
  1419. justify-content: center;
  1420. margin: 2px 0 3px 0;
  1421. outline: none;
  1422. overflow: hidden;
  1423. padding: 0 4px;
  1424. text-transform: normal;
  1425. width: auto;
  1426. }
  1427. .tox .tox-mbtn[disabled] {
  1428. background-color: none;
  1429. border-color: none;
  1430. box-shadow: none;
  1431. color: rgba(255, 255, 255, 0.5);
  1432. cursor: not-allowed;
  1433. }
  1434. .tox .tox-mbtn:hover:not(:disabled) {
  1435. background: #434e5b;
  1436. box-shadow: none;
  1437. color: #fff;
  1438. }
  1439. .tox .tox-mbtn:focus:not(:disabled) {
  1440. background: #434e5b;
  1441. box-shadow: none;
  1442. color: #fff;
  1443. }
  1444. .tox .tox-mbtn--active {
  1445. background: #6f7882;
  1446. box-shadow: none;
  1447. color: #fff;
  1448. }
  1449. .tox .tox-mbtn__select-label {
  1450. cursor: default;
  1451. font-weight: normal;
  1452. margin: 0 4px;
  1453. }
  1454. .tox .tox-mbtn[disabled] .tox-mbtn__select-label {
  1455. cursor: not-allowed;
  1456. }
  1457. .tox .tox-mbtn__select-chevron {
  1458. align-items: center;
  1459. display: flex;
  1460. justify-content: center;
  1461. width: 16px;
  1462. display: none;
  1463. }
  1464. .tox .tox-notification {
  1465. background-color: #fff;
  1466. border-color: #c5c5c5;
  1467. border-style: solid;
  1468. border-width: 1px;
  1469. box-sizing: border-box;
  1470. display: grid;
  1471. grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  1472. margin-top: 5px;
  1473. opacity: 0;
  1474. padding: 5px;
  1475. transition: transform 100ms ease-in, opacity 150ms ease-in;
  1476. }
  1477. .tox .tox-notification--in {
  1478. opacity: 1;
  1479. }
  1480. .tox .tox-notification--success {
  1481. background-color: #dff0d8;
  1482. border-color: #d6e9c6;
  1483. }
  1484. .tox .tox-notification--error {
  1485. background-color: #f2dede;
  1486. border-color: #ebccd1;
  1487. }
  1488. .tox .tox-notification--warn {
  1489. background-color: #fcf8e3;
  1490. border-color: #faebcc;
  1491. }
  1492. .tox .tox-notification--info {
  1493. background-color: #d9edf7;
  1494. border-color: #779ecb;
  1495. }
  1496. .tox .tox-notification__body {
  1497. align-self: center;
  1498. color: #31708f;
  1499. font-size: 14px;
  1500. grid-column-end: 3;
  1501. -ms-grid-column-span: 1;
  1502. grid-column-start: 2;
  1503. grid-row-end: 2;
  1504. grid-row-start: 1;
  1505. text-align: center;
  1506. white-space: normal;
  1507. word-break: break-all;
  1508. word-break: break-word;
  1509. }
  1510. .tox .tox-notification__body > * {
  1511. margin: 0;
  1512. }
  1513. .tox .tox-notification__body > * + * {
  1514. margin-top: 1rem;
  1515. }
  1516. .tox .tox-notification__icon {
  1517. align-self: center;
  1518. -ms-grid-column-align: end;
  1519. grid-column-end: 2;
  1520. -ms-grid-column-span: 1;
  1521. grid-column-start: 1;
  1522. grid-row-end: 2;
  1523. grid-row-start: 1;
  1524. justify-self: end;
  1525. }
  1526. .tox .tox-notification__icon svg {
  1527. display: block;
  1528. }
  1529. .tox .tox-notification__dismiss {
  1530. align-self: start;
  1531. -ms-grid-column-align: end;
  1532. grid-column-end: 4;
  1533. -ms-grid-column-span: 1;
  1534. grid-column-start: 3;
  1535. grid-row-end: 2;
  1536. grid-row-start: 1;
  1537. justify-self: end;
  1538. }
  1539. .tox .tox-notification .tox-progress-bar {
  1540. -ms-grid-column-align: center;
  1541. grid-column-end: 4;
  1542. -ms-grid-column-span: 3;
  1543. grid-column-start: 1;
  1544. grid-row-end: 3;
  1545. -ms-grid-row-span: 1;
  1546. grid-row-start: 2;
  1547. justify-self: center;
  1548. }
  1549. .tox .tox-pop {
  1550. display: inline-block;
  1551. position: relative;
  1552. }
  1553. .tox .tox-pop--resizing {
  1554. transition: width 0.1s ease;
  1555. }
  1556. .tox .tox-pop--resizing .tox-toolbar {
  1557. flex-wrap: nowrap;
  1558. }
  1559. .tox .tox-pop__dialog {
  1560. background-color: #222f3e;
  1561. border: 1px solid #000000;
  1562. border-radius: 3px;
  1563. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  1564. min-width: 0;
  1565. overflow: hidden;
  1566. }
  1567. .tox .tox-pop__dialog > *:not(.tox-toolbar) {
  1568. margin: 4px 4px 4px 8px;
  1569. }
  1570. .tox .tox-pop__dialog .tox-toolbar {
  1571. background-color: transparent;
  1572. }
  1573. .tox .tox-pop::before,
  1574. .tox .tox-pop::after {
  1575. border-style: solid;
  1576. content: '';
  1577. display: block;
  1578. height: 0;
  1579. position: absolute;
  1580. width: 0;
  1581. }
  1582. .tox .tox-pop.tox-pop--bottom::before,
  1583. .tox .tox-pop.tox-pop--bottom::after {
  1584. left: 50%;
  1585. top: 100%;
  1586. }
  1587. .tox .tox-pop.tox-pop--bottom::after {
  1588. border-color: #222f3e transparent transparent transparent;
  1589. border-width: 8px;
  1590. margin-left: -8px;
  1591. margin-top: -1px;
  1592. }
  1593. .tox .tox-pop.tox-pop--bottom::before {
  1594. border-color: #000000 transparent transparent transparent;
  1595. border-width: 9px;
  1596. margin-left: -9px;
  1597. }
  1598. .tox .tox-pop.tox-pop--top::before,
  1599. .tox .tox-pop.tox-pop--top::after {
  1600. left: 50%;
  1601. top: 0;
  1602. transform: translateY(-100%);
  1603. }
  1604. .tox .tox-pop.tox-pop--top::after {
  1605. border-color: transparent transparent #222f3e transparent;
  1606. border-width: 8px;
  1607. margin-left: -8px;
  1608. margin-top: 1px;
  1609. }
  1610. .tox .tox-pop.tox-pop--top::before {
  1611. border-color: transparent transparent #000000 transparent;
  1612. border-width: 9px;
  1613. margin-left: -9px;
  1614. }
  1615. .tox .tox-pop.tox-pop--left::before,
  1616. .tox .tox-pop.tox-pop--left::after {
  1617. left: 0;
  1618. top: calc(50% - 1px);
  1619. transform: translateY(-50%);
  1620. }
  1621. .tox .tox-pop.tox-pop--left::after {
  1622. border-color: transparent #222f3e transparent transparent;
  1623. border-width: 8px;
  1624. margin-left: -15px;
  1625. }
  1626. .tox .tox-pop.tox-pop--left::before {
  1627. border-color: transparent #000000 transparent transparent;
  1628. border-width: 10px;
  1629. margin-left: -19px;
  1630. }
  1631. .tox .tox-pop.tox-pop--right::before,
  1632. .tox .tox-pop.tox-pop--right::after {
  1633. left: 100%;
  1634. top: calc(50% + 1px);
  1635. transform: translateY(-50%);
  1636. }
  1637. .tox .tox-pop.tox-pop--right::after {
  1638. border-color: transparent transparent transparent #222f3e;
  1639. border-width: 8px;
  1640. margin-left: -1px;
  1641. }
  1642. .tox .tox-pop.tox-pop--right::before {
  1643. border-color: transparent transparent transparent #000000;
  1644. border-width: 10px;
  1645. margin-left: -1px;
  1646. }
  1647. .tox .tox-pop.tox-pop--align-left::before,
  1648. .tox .tox-pop.tox-pop--align-left::after {
  1649. left: 20px;
  1650. }
  1651. .tox .tox-pop.tox-pop--align-right::before,
  1652. .tox .tox-pop.tox-pop--align-right::after {
  1653. left: calc(100% - 20px);
  1654. }
  1655. .tox .tox-sidebar-wrap {
  1656. display: flex;
  1657. flex-direction: row;
  1658. flex-grow: 1;
  1659. min-height: 0;
  1660. }
  1661. .tox .tox-sidebar {
  1662. display: flex;
  1663. flex-direction: row;
  1664. justify-content: flex-end;
  1665. }
  1666. .tox .tox-sidebar__slider {
  1667. display: flex;
  1668. overflow: hidden;
  1669. }
  1670. .tox .tox-sidebar__pane-container {
  1671. display: flex;
  1672. }
  1673. .tox .tox-sidebar__pane {
  1674. display: flex;
  1675. }
  1676. .tox .tox-sidebar--sliding-closed {
  1677. opacity: 0;
  1678. }
  1679. .tox .tox-sidebar--sliding-open {
  1680. opacity: 1;
  1681. }
  1682. .tox .tox-sidebar--sliding-growing,
  1683. .tox .tox-sidebar--sliding-shrinking {
  1684. transition: width 0.5s ease, opacity 0.5s ease;
  1685. }
  1686. .tox .tox-slider {
  1687. align-items: center;
  1688. display: flex;
  1689. flex: 1;
  1690. -ms-flex-preferred-size: auto;
  1691. height: 24px;
  1692. justify-content: center;
  1693. position: relative;
  1694. }
  1695. .tox .tox-slider__rail {
  1696. background-color: transparent;
  1697. border: 1px solid #000000;
  1698. border-radius: 3px;
  1699. height: 10px;
  1700. min-width: 120px;
  1701. width: 100%;
  1702. }
  1703. .tox .tox-slider__handle {
  1704. background-color: #3498db;
  1705. border: 2px solid #217dbb;
  1706. border-radius: 3px;
  1707. box-shadow: none;
  1708. height: 24px;
  1709. left: 50%;
  1710. position: absolute;
  1711. top: 50%;
  1712. transform: translateX(-50%) translateY(-50%);
  1713. width: 14px;
  1714. }
  1715. .tox .tox-source-code {
  1716. overflow: auto;
  1717. }
  1718. .tox .tox-spinner {
  1719. display: flex;
  1720. }
  1721. .tox .tox-spinner > div {
  1722. animation: tam-bouncing-dots 1.5s ease-in-out 0s infinite both;
  1723. background-color: rgba(255, 255, 255, 0.5);
  1724. border-radius: 100%;
  1725. height: 8px;
  1726. width: 8px;
  1727. }
  1728. .tox .tox-spinner > div:nth-child(1) {
  1729. animation-delay: -0.32s;
  1730. }
  1731. .tox .tox-spinner > div:nth-child(2) {
  1732. animation-delay: -0.16s;
  1733. }
  1734. .tox .tox-spinner > div:not(:first-child) {
  1735. margin-left: 4px;
  1736. }
  1737. @keyframes tam-bouncing-dots {
  1738. 0%,
  1739. 80%,
  1740. 100% {
  1741. transform: scale(0);
  1742. }
  1743. 40% {
  1744. transform: scale(1);
  1745. }
  1746. }
  1747. .tox .tox-statusbar {
  1748. align-items: center;
  1749. background-color: #222f3e;
  1750. border-top: 1px solid #000000;
  1751. color: rgba(255, 255, 255, 0.5);
  1752. display: flex;
  1753. flex: 0 0 auto;
  1754. font-size: 12px;
  1755. height: 18px;
  1756. overflow: hidden;
  1757. padding: 0 8px;
  1758. position: relative;
  1759. text-transform: uppercase;
  1760. }
  1761. .tox .tox-statusbar a {
  1762. color: rgba(255, 255, 255, 0.5);
  1763. text-decoration: none;
  1764. }
  1765. .tox .tox-statusbar a:hover {
  1766. text-decoration: underline;
  1767. }
  1768. .tox .tox-statusbar__text-container {
  1769. display: flex;
  1770. flex: 1 1 auto;
  1771. justify-content: flex-end;
  1772. overflow: hidden;
  1773. }
  1774. .tox .tox-statusbar__path {
  1775. display: flex;
  1776. flex: 1 1 auto;
  1777. margin-right: auto;
  1778. overflow: hidden;
  1779. text-overflow: ellipsis;
  1780. white-space: nowrap;
  1781. }
  1782. .tox .tox-statusbar__path > * {
  1783. display: inline;
  1784. margin-right: 4px;
  1785. white-space: nowrap;
  1786. }
  1787. .tox .tox-statusbar__wordcount,
  1788. .tox .tox-statusbar__branding {
  1789. flex: 0 0 auto;
  1790. margin-left: 1ch;
  1791. }
  1792. .tox .tox-statusbar__resize-handle {
  1793. align-items: flex-end;
  1794. align-self: stretch;
  1795. cursor: nwse-resize;
  1796. display: flex;
  1797. flex: 0 0 auto;
  1798. justify-content: flex-end;
  1799. margin-left: auto;
  1800. margin-right: -8px;
  1801. padding-left: 1ch;
  1802. }
  1803. .tox .tox-statusbar__resize-handle svg {
  1804. display: block;
  1805. fill: rgba(255, 255, 255, 0.5);
  1806. }
  1807. .tox .tox-tbtn {
  1808. align-items: center;
  1809. background: none;
  1810. border: 0;
  1811. border-radius: 3px;
  1812. box-shadow: none;
  1813. color: #fff;
  1814. display: flex;
  1815. flex: 0 0 auto;
  1816. font-size: 14px;
  1817. font-style: normal;
  1818. font-weight: normal;
  1819. height: 34px;
  1820. justify-content: center;
  1821. margin: 2px 0 3px 0;
  1822. outline: none;
  1823. overflow: hidden;
  1824. padding: 0;
  1825. text-transform: normal;
  1826. width: 34px;
  1827. }
  1828. .tox .tox-tbtn svg {
  1829. display: block;
  1830. fill: #fff;
  1831. }
  1832. .tox .tox-tbtn.tox-tbtn-more {
  1833. padding-left: 5px;
  1834. padding-right: 5px;
  1835. width: inherit;
  1836. }
  1837. .tox .tox-tbtn + .tox-tbtn {
  1838. margin-left: 0;
  1839. }
  1840. .tox .tox-tbtn--enabled {
  1841. background: #6f7882;
  1842. box-shadow: none;
  1843. color: #fff;
  1844. }
  1845. .tox .tox-tbtn--enabled > * {
  1846. transform: none;
  1847. }
  1848. .tox .tox-tbtn--enabled svg {
  1849. fill: #fff;
  1850. }
  1851. .tox .tox-tbtn:hover {
  1852. background: #434e5b;
  1853. box-shadow: none;
  1854. color: #fff;
  1855. }
  1856. .tox .tox-tbtn:hover svg {
  1857. fill: #fff;
  1858. }
  1859. .tox .tox-tbtn:focus {
  1860. background: #434e5b;
  1861. box-shadow: none;
  1862. color: #fff;
  1863. }
  1864. .tox .tox-tbtn:focus svg {
  1865. fill: #fff;
  1866. }
  1867. .tox .tox-tbtn:active {
  1868. background: #6f7882;
  1869. box-shadow: none;
  1870. color: #fff;
  1871. }
  1872. .tox .tox-tbtn:active svg {
  1873. fill: #fff;
  1874. }
  1875. .tox .tox-tbtn--disabled,
  1876. .tox .tox-tbtn--disabled:hover,
  1877. .tox .tox-tbtn:disabled,
  1878. .tox .tox-tbtn:disabled:hover {
  1879. background: none;
  1880. box-shadow: none;
  1881. color: rgba(255, 255, 255, 0.5);
  1882. cursor: not-allowed;
  1883. }
  1884. .tox .tox-tbtn--disabled svg,
  1885. .tox .tox-tbtn--disabled:hover svg,
  1886. .tox .tox-tbtn:disabled svg,
  1887. .tox .tox-tbtn:disabled:hover svg {
  1888. /* stylelint-disable-line no-descending-specificity */
  1889. fill: rgba(255, 255, 255, 0.5);
  1890. }
  1891. .tox .tox-tbtn:active > * {
  1892. transform: none;
  1893. }
  1894. .tox .tox-tbtn--md {
  1895. height: 51px;
  1896. width: 51px;
  1897. }
  1898. .tox .tox-tbtn--lg {
  1899. flex-direction: column;
  1900. height: 68px;
  1901. width: 68px;
  1902. }
  1903. .tox .tox-tbtn--return {
  1904. align-self: stretch;
  1905. height: unset;
  1906. width: 16px;
  1907. }
  1908. .tox .tox-tbtn--labeled {
  1909. padding: 0 4px;
  1910. width: unset;
  1911. }
  1912. .tox .tox-tbtn__vlabel {
  1913. display: block;
  1914. font-size: 10px;
  1915. font-weight: normal;
  1916. letter-spacing: -0.025em;
  1917. margin-bottom: 4px;
  1918. white-space: nowrap;
  1919. }
  1920. .tox .tox-tbtn--select {
  1921. margin: 2px 0 3px 0;
  1922. padding: 0 4px;
  1923. width: auto;
  1924. }
  1925. .tox .tox-tbtn__select-label {
  1926. cursor: default;
  1927. font-weight: normal;
  1928. margin: 0 4px;
  1929. }
  1930. .tox .tox-tbtn__select-chevron {
  1931. align-items: center;
  1932. display: flex;
  1933. justify-content: center;
  1934. width: 16px;
  1935. }
  1936. .tox .tox-tbtn__select-chevron svg {
  1937. fill: rgba(255, 255, 255, 0.5);
  1938. }
  1939. .tox .tox-tbtn--bespoke .tox-tbtn__select-label {
  1940. overflow: hidden;
  1941. text-overflow: ellipsis;
  1942. white-space: nowrap;
  1943. width: 7em;
  1944. }
  1945. .tox .tox-split-button {
  1946. border: 0;
  1947. border-radius: 3px;
  1948. box-sizing: border-box;
  1949. display: flex;
  1950. margin: 2px 0 3px 0;
  1951. overflow: hidden;
  1952. }
  1953. .tox .tox-split-button:hover {
  1954. box-shadow: 0 0 0 1px #434e5b inset;
  1955. }
  1956. .tox .tox-split-button:focus {
  1957. background: #434e5b;
  1958. box-shadow: none;
  1959. color: #fff;
  1960. }
  1961. .tox .tox-split-button > * {
  1962. border-radius: 0;
  1963. }
  1964. .tox .tox-split-button__chevron {
  1965. width: 16px;
  1966. }
  1967. .tox .tox-split-button__chevron svg {
  1968. fill: rgba(255, 255, 255, 0.5);
  1969. }
  1970. .tox .tox-pop .tox-split-button__chevron svg {
  1971. transform: rotate(-90deg);
  1972. }
  1973. .tox .tox-split-button .tox-tbtn {
  1974. margin: 0;
  1975. }
  1976. .tox .tox-split-button.tox-tbtn--disabled:hover,
  1977. .tox .tox-split-button.tox-tbtn--disabled:focus,
  1978. .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,
  1979. .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus {
  1980. background: none;
  1981. box-shadow: none;
  1982. color: rgba(255, 255, 255, 0.5);
  1983. }
  1984. .tox .tox-toolbar,
  1985. .tox .tox-toolbar__primary,
  1986. .tox .tox-toolbar__overflow {
  1987. background: url("data:image/svg+xml;charset=utf8,%3Csvg height='39px' viewBox='0 0 40 39px' width='40' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='38px' width='100' height='1' fill='%23000000'/%3E%3C/svg%3E") left 0 top 0 #222f3e;
  1988. background-color: #222f3e;
  1989. border-top: 1px solid #000000;
  1990. display: flex;
  1991. flex: 0 0 auto;
  1992. flex-shrink: 0;
  1993. flex-wrap: wrap;
  1994. margin-bottom: -1px;
  1995. padding: 0 0;
  1996. }
  1997. .tox .tox-toolbar__overflow.tox-toolbar__overflow--closed {
  1998. display: none;
  1999. }
  2000. .tox .tox-pop .tox-toolbar {
  2001. border-width: 0;
  2002. }
  2003. .tox .tox-toolbar--no-divider {
  2004. background-image: none;
  2005. }
  2006. .tox.tox-tinymce-aux .tox-toolbar__overflow {
  2007. border-left: 1px solid #000000;
  2008. border-radius: 6px;
  2009. border-right: 1px solid #000000;
  2010. }
  2011. .tox .tox-toolbar__group {
  2012. align-items: center;
  2013. display: flex;
  2014. flex-wrap: wrap;
  2015. margin: 0 0;
  2016. padding: 0 4px;
  2017. }
  2018. .tox .tox-toolbar__group:not(:last-of-type) {
  2019. border-right: 1px solid #000000;
  2020. }
  2021. .tox .tox-toolbar__group--pull-right {
  2022. margin-left: auto;
  2023. }
  2024. .tox .tox-tooltip {
  2025. display: inline-block;
  2026. padding: 8px;
  2027. position: relative;
  2028. }
  2029. .tox .tox-tooltip__body {
  2030. background-color: #3d546f;
  2031. border-radius: 3px;
  2032. box-shadow: 0 2px 4px rgba(34, 47, 62, 0.3);
  2033. color: rgba(255, 255, 255, 0.75);
  2034. font-size: 14px;
  2035. font-style: normal;
  2036. font-weight: normal;
  2037. padding: 4px 8px;
  2038. text-transform: normal;
  2039. }
  2040. .tox .tox-tooltip__arrow {
  2041. position: absolute;
  2042. }
  2043. .tox .tox-tooltip--down .tox-tooltip__arrow {
  2044. border-left: 8px solid transparent;
  2045. border-right: 8px solid transparent;
  2046. border-top: 8px solid #3d546f;
  2047. bottom: 0;
  2048. left: 50%;
  2049. position: absolute;
  2050. transform: translateX(-50%);
  2051. }
  2052. .tox .tox-tooltip--up .tox-tooltip__arrow {
  2053. border-bottom: 8px solid #3d546f;
  2054. border-left: 8px solid transparent;
  2055. border-right: 8px solid transparent;
  2056. left: 50%;
  2057. position: absolute;
  2058. top: 0;
  2059. transform: translateX(-50%);
  2060. }
  2061. .tox .tox-tooltip--right .tox-tooltip__arrow {
  2062. border-bottom: 8px solid transparent;
  2063. border-left: 8px solid #3d546f;
  2064. border-top: 8px solid transparent;
  2065. position: absolute;
  2066. right: 0;
  2067. top: 50%;
  2068. transform: translateY(-50%);
  2069. }
  2070. .tox .tox-tooltip--left .tox-tooltip__arrow {
  2071. border-bottom: 8px solid transparent;
  2072. border-right: 8px solid #3d546f;
  2073. border-top: 8px solid transparent;
  2074. left: 0;
  2075. position: absolute;
  2076. top: 50%;
  2077. transform: translateY(-50%);
  2078. }
  2079. .tox .tox-well {
  2080. border: 1px solid #000000;
  2081. border-radius: 3px;
  2082. padding: 8px;
  2083. width: 100%;
  2084. }
  2085. .tox .tox-well > *:first-child {
  2086. margin-top: 0;
  2087. }
  2088. .tox .tox-well > *:last-child {
  2089. margin-bottom: 0;
  2090. }
  2091. .tox .tox-well > *:only-child {
  2092. margin: 0;
  2093. }
  2094. .tox .tox-custom-editor {
  2095. border: 1px solid #000000;
  2096. border-radius: 3px;
  2097. display: flex;
  2098. height: 525px;
  2099. }
  2100. /* stylelint-disable */
  2101. .tox {
  2102. /* stylelint-enable */
  2103. }
  2104. .tox .tox-dialog-loading::before {
  2105. background-color: rgba(0, 0, 0, 0.5);
  2106. content: "";
  2107. height: 100%;
  2108. position: absolute;
  2109. width: 100%;
  2110. z-index: 1000;
  2111. }
  2112. .tox .tox-tab {
  2113. cursor: pointer;
  2114. }
  2115. .tox .tox-dialog__content-js {
  2116. display: flex;
  2117. flex: 1;
  2118. -ms-flex-preferred-size: auto;
  2119. }
  2120. .tox .tox-dialog__body-content .tox-collection {
  2121. display: flex;
  2122. flex: 1;
  2123. -ms-flex-preferred-size: auto;
  2124. }
  2125. .tox ul {
  2126. display: block;
  2127. list-style-type: disc;
  2128. -webkit-margin-before: 1em;
  2129. margin-block-start: 1em;
  2130. -webkit-margin-after: 1em;
  2131. margin-block-end: 1em;
  2132. -webkit-margin-start: 0px;
  2133. margin-inline-start: 0px;
  2134. -webkit-margin-end: 0px;
  2135. margin-inline-end: 0px;
  2136. -webkit-padding-start: 40px;
  2137. padding-inline-start: 40px;
  2138. }
  2139. .tox a {
  2140. cursor: pointer;
  2141. color: #2276d2;
  2142. }
  2143. .tox .tox-image-tools-edit-panel {
  2144. height: 60px;
  2145. }
  2146. .tox .tox-image-tools__sidebar {
  2147. height: 60px;
  2148. }