@zextras/carbonio-shell-ui 6.0.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (461) hide show
  1. package/lib/boot/app/app-context-provider.d.ts +7 -0
  2. package/lib/boot/app/app-context-provider.js +17 -0
  3. package/lib/boot/app/app-context-provider.js.map +1 -0
  4. package/lib/boot/app/app-error-catcher.d.ts +3 -0
  5. package/lib/boot/app/app-error-catcher.js +41 -0
  6. package/lib/boot/app/app-error-catcher.js.map +1 -0
  7. package/lib/boot/app/app-loader-functions.d.ts +37 -0
  8. package/lib/boot/app/app-loader-functions.js +121 -0
  9. package/lib/boot/app/app-loader-functions.js.map +1 -0
  10. package/lib/boot/app/app-loader-setters.d.ts +38 -0
  11. package/lib/boot/app/app-loader-setters.js +46 -0
  12. package/lib/boot/app/app-loader-setters.js.map +1 -0
  13. package/lib/boot/matomo.d.ts +12 -0
  14. package/lib/boot/matomo.js +22 -0
  15. package/lib/boot/matomo.js.map +1 -0
  16. package/lib/boot/module-i18next-provider.d.ts +7 -0
  17. package/lib/boot/module-i18next-provider.js +22 -0
  18. package/lib/boot/module-i18next-provider.js.map +1 -0
  19. package/lib/boot/tracker.d.ts +11 -0
  20. package/lib/boot/tracker.js +57 -0
  21. package/lib/boot/tracker.js.map +1 -0
  22. package/lib/constants/index.d.ts +146 -0
  23. package/lib/constants/index.js +160 -0
  24. package/lib/constants/index.js.map +1 -0
  25. package/lib/constants/locales.d.ts +83 -0
  26. package/lib/constants/locales.js +86 -0
  27. package/lib/constants/locales.js.map +1 -0
  28. package/lib/history/hooks.d.ts +12 -0
  29. package/lib/history/hooks.js +69 -0
  30. package/lib/history/hooks.js.map +1 -0
  31. package/lib/lib.d.ts +74 -0
  32. package/lib/lib.js +134 -0
  33. package/lib/lib.js.map +1 -0
  34. package/lib/network/edit-settings.d.ts +14 -0
  35. package/lib/network/edit-settings.js +144 -0
  36. package/lib/network/edit-settings.js.map +1 -0
  37. package/lib/network/fetch.d.ts +4 -0
  38. package/lib/network/fetch.js +175 -0
  39. package/lib/network/fetch.js.map +1 -0
  40. package/lib/network/tags.d.ts +27 -0
  41. package/lib/network/tags.js +31 -0
  42. package/lib/network/tags.js.map +1 -0
  43. package/lib/network/user-agent.d.ts +1 -0
  44. package/lib/network/user-agent.js +15 -0
  45. package/lib/network/user-agent.js.map +1 -0
  46. package/lib/network/utils.d.ts +2 -0
  47. package/lib/network/utils.js +17 -0
  48. package/lib/network/utils.js.map +1 -0
  49. package/lib/notification/NotificationManager.d.ts +22 -0
  50. package/lib/notification/NotificationManager.js +153 -0
  51. package/lib/notification/NotificationManager.js.map +1 -0
  52. package/lib/reporting/functions.d.ts +2 -0
  53. package/lib/reporting/functions.js +14 -0
  54. package/lib/reporting/functions.js.map +1 -0
  55. package/lib/reporting/store.d.ts +8 -0
  56. package/lib/reporting/store.js +43 -0
  57. package/lib/reporting/store.js.map +1 -0
  58. package/lib/search/run-search.d.ts +2 -0
  59. package/lib/search/run-search.js +17 -0
  60. package/lib/search/run-search.js.map +1 -0
  61. package/lib/search/search-store.d.ts +2 -0
  62. package/lib/search/search-store.js +20 -0
  63. package/lib/search/search-store.js.map +1 -0
  64. package/lib/search/useSearchModule.d.ts +3 -0
  65. package/lib/search/useSearchModule.js +21 -0
  66. package/lib/search/useSearchModule.js.map +1 -0
  67. package/lib/settings/components/settings-header.d.ts +9 -0
  68. package/lib/settings/components/settings-header.js +86 -0
  69. package/lib/settings/components/settings-header.js.map +1 -0
  70. package/lib/shell/hooks/useIsMobile.d.ts +4 -0
  71. package/lib/shell/hooks/useIsMobile.js +22 -0
  72. package/lib/shell/hooks/useIsMobile.js.map +1 -0
  73. package/lib/shell/hooks/useLocalStorage.d.ts +14 -0
  74. package/lib/shell/hooks/useLocalStorage.js +77 -0
  75. package/lib/shell/hooks/useLocalStorage.js.map +1 -0
  76. package/lib/shell/shell-context.d.ts +4 -0
  77. package/lib/shell/shell-context.js +11 -0
  78. package/lib/shell/shell-context.js.map +1 -0
  79. package/lib/store/account/hooks.d.ts +14 -0
  80. package/lib/store/account/hooks.js +51 -0
  81. package/lib/store/account/hooks.js.map +1 -0
  82. package/lib/store/account/index.d.ts +2 -0
  83. package/lib/store/account/index.js +24 -0
  84. package/lib/store/account/index.js.map +1 -0
  85. package/lib/store/account/store.d.ts +2 -0
  86. package/lib/store/account/store.js +23 -0
  87. package/lib/store/account/store.js.map +1 -0
  88. package/lib/store/app/hooks.d.ts +14 -0
  89. package/lib/store/app/hooks.js +41 -0
  90. package/lib/store/app/hooks.js.map +1 -0
  91. package/lib/store/app/index.d.ts +2 -0
  92. package/lib/store/app/index.js +24 -0
  93. package/lib/store/app/index.js.map +1 -0
  94. package/lib/store/app/store.d.ts +44 -0
  95. package/lib/store/app/store.js +265 -0
  96. package/lib/store/app/store.js.map +1 -0
  97. package/lib/store/app/utils.d.ts +10 -0
  98. package/lib/store/app/utils.js +123 -0
  99. package/lib/store/app/utils.js.map +1 -0
  100. package/lib/store/boards/hooks.d.ts +31 -0
  101. package/lib/store/boards/hooks.js +82 -0
  102. package/lib/store/boards/hooks.js.map +1 -0
  103. package/lib/store/boards/index.d.ts +2 -0
  104. package/lib/store/boards/index.js +24 -0
  105. package/lib/store/boards/index.js.map +1 -0
  106. package/lib/store/boards/store.d.ts +23 -0
  107. package/lib/store/boards/store.js +124 -0
  108. package/lib/store/boards/store.js.map +1 -0
  109. package/lib/store/context-bridge.d.ts +11 -0
  110. package/lib/store/context-bridge.js +34 -0
  111. package/lib/store/context-bridge.js.map +1 -0
  112. package/lib/store/folder/hooks.d.ts +21 -0
  113. package/lib/store/folder/hooks.js +77 -0
  114. package/lib/store/folder/hooks.js.map +1 -0
  115. package/lib/store/folder/index.d.ts +2 -0
  116. package/lib/store/folder/index.js +24 -0
  117. package/lib/store/folder/index.js.map +1 -0
  118. package/lib/store/folder/store.d.ts +2 -0
  119. package/lib/store/folder/store.js +20 -0
  120. package/lib/store/folder/store.js.map +1 -0
  121. package/lib/store/folder/utils.d.ts +16 -0
  122. package/lib/store/folder/utils.js +53 -0
  123. package/lib/store/folder/utils.js.map +1 -0
  124. package/lib/store/i18n/hooks.d.ts +4 -0
  125. package/lib/store/i18n/hooks.js +21 -0
  126. package/lib/store/i18n/hooks.js.map +1 -0
  127. package/lib/store/i18n/store.d.ts +13 -0
  128. package/lib/store/i18n/store.js +104 -0
  129. package/lib/store/i18n/store.js.map +1 -0
  130. package/lib/store/integrations/composer.d.ts +49 -0
  131. package/lib/store/integrations/composer.js +233 -0
  132. package/lib/store/integrations/composer.js.map +1 -0
  133. package/lib/store/integrations/getters.d.ts +9 -0
  134. package/lib/store/integrations/getters.js +41 -0
  135. package/lib/store/integrations/getters.js.map +1 -0
  136. package/lib/store/integrations/hooks.d.ts +9 -0
  137. package/lib/store/integrations/hooks.js +42 -0
  138. package/lib/store/integrations/hooks.js.map +1 -0
  139. package/lib/store/integrations/store.d.ts +41 -0
  140. package/lib/store/integrations/store.js +65 -0
  141. package/lib/store/integrations/store.js.map +1 -0
  142. package/lib/store/integrations/utils.d.ts +8 -0
  143. package/lib/store/integrations/utils.js +50 -0
  144. package/lib/store/integrations/utils.js.map +1 -0
  145. package/lib/store/login/getters.d.ts +2 -0
  146. package/lib/store/login/getters.js +18 -0
  147. package/lib/store/login/getters.js.map +1 -0
  148. package/lib/store/login/store.d.ts +12 -0
  149. package/lib/store/login/store.js +18 -0
  150. package/lib/store/login/store.js.map +1 -0
  151. package/lib/store/network/hooks.d.ts +3 -0
  152. package/lib/store/network/hooks.js +14 -0
  153. package/lib/store/network/hooks.js.map +1 -0
  154. package/lib/store/network/index.d.ts +2 -0
  155. package/lib/store/network/index.js +24 -0
  156. package/lib/store/network/index.js.map +1 -0
  157. package/lib/store/network/store.d.ts +2 -0
  158. package/lib/store/network/store.js +15 -0
  159. package/lib/store/network/store.js.map +1 -0
  160. package/lib/store/network/utils.d.ts +13 -0
  161. package/lib/store/network/utils.js +94 -0
  162. package/lib/store/network/utils.js.map +1 -0
  163. package/lib/store/tags/hooks.d.ts +3 -0
  164. package/lib/store/tags/hooks.js +15 -0
  165. package/lib/store/tags/hooks.js.map +1 -0
  166. package/lib/store/tags/index.d.ts +2 -0
  167. package/lib/store/tags/index.js +24 -0
  168. package/lib/store/tags/index.js.map +1 -0
  169. package/lib/store/tags/store.d.ts +2 -0
  170. package/lib/store/tags/store.js +18 -0
  171. package/lib/store/tags/store.js.map +1 -0
  172. package/lib/tsdoc-metadata.json +11 -0
  173. package/lib/types/account/index.d.ts +140 -0
  174. package/lib/types/account/index.js +8 -0
  175. package/lib/types/account/index.js.map +1 -0
  176. package/lib/types/apps/index.d.ts +120 -0
  177. package/lib/types/apps/index.js +9 -0
  178. package/lib/types/apps/index.js.map +1 -0
  179. package/lib/types/boards/index.d.ts +10 -0
  180. package/lib/types/boards/index.js +3 -0
  181. package/lib/types/boards/index.js.map +1 -0
  182. package/lib/types/folder/index.d.ts +29 -0
  183. package/lib/types/folder/index.js +8 -0
  184. package/lib/types/folder/index.js.map +1 -0
  185. package/lib/types/integrations/index.d.ts +8 -0
  186. package/lib/types/integrations/index.js +8 -0
  187. package/lib/types/integrations/index.js.map +1 -0
  188. package/lib/types/misc/index.d.ts +156 -0
  189. package/lib/types/misc/index.js +8 -0
  190. package/lib/types/misc/index.js.map +1 -0
  191. package/lib/types/network/entities.d.ts +47 -0
  192. package/lib/types/network/entities.js +3 -0
  193. package/lib/types/network/entities.js.map +1 -0
  194. package/lib/types/network/index.d.ts +171 -0
  195. package/lib/types/network/index.js +23 -0
  196. package/lib/types/network/index.js.map +1 -0
  197. package/lib/types/network/soap.d.ts +102 -0
  198. package/lib/types/network/soap.js +8 -0
  199. package/lib/types/network/soap.js.map +1 -0
  200. package/lib/types/search/index.d.ts +11 -0
  201. package/lib/types/search/index.js +23 -0
  202. package/lib/types/search/index.js.map +1 -0
  203. package/lib/types/search/items.d.ts +6 -0
  204. package/lib/types/search/items.js +3 -0
  205. package/lib/types/search/items.js.map +1 -0
  206. package/lib/types/tags/index.d.ts +12 -0
  207. package/lib/types/tags/index.js +9 -0
  208. package/lib/types/tags/index.js.map +1 -0
  209. package/lib/types/workers/index.d.ts +17 -0
  210. package/lib/types/workers/index.js +3 -0
  211. package/lib/types/workers/index.js.map +1 -0
  212. package/lib/ui-extras/app-link.d.ts +6 -0
  213. package/lib/ui-extras/app-link.js +40 -0
  214. package/lib/ui-extras/app-link.js.map +1 -0
  215. package/lib/ui-extras/nav-guard.d.ts +9 -0
  216. package/lib/ui-extras/nav-guard.js +96 -0
  217. package/lib/ui-extras/nav-guard.js.map +1 -0
  218. package/lib/ui-extras/spinner.d.ts +2 -0
  219. package/lib/ui-extras/spinner.js +18 -0
  220. package/lib/ui-extras/spinner.js.map +1 -0
  221. package/lib/utils/typeUtils.d.ts +14 -0
  222. package/lib/utils/typeUtils.js +3 -0
  223. package/lib/utils/typeUtils.js.map +1 -0
  224. package/lib/utils/utils.d.ts +20 -0
  225. package/lib/utils/utils.js +39 -0
  226. package/lib/utils/utils.js.map +1 -0
  227. package/lib/workers/index.d.ts +2 -0
  228. package/lib/workers/index.js +15 -0
  229. package/lib/workers/index.js.map +1 -0
  230. package/package.json +34 -37
  231. package/dist/20d012c938e8d0dcc703.mp3 +0 -0
  232. package/dist/2d9c9ae572663301cb7d.js +0 -75391
  233. package/dist/CHANGELOG.md +0 -701
  234. package/dist/carbonio-head.svg +0 -200
  235. package/dist/carbonio.svg +0 -10
  236. package/dist/commit +0 -1
  237. package/dist/component.json +0 -13
  238. package/dist/favicon.png +0 -0
  239. package/dist/files/roboto-cyrillic-300-normal.woff +0 -0
  240. package/dist/files/roboto-cyrillic-300-normal.woff2 +0 -0
  241. package/dist/files/roboto-cyrillic-400-normal.woff +0 -0
  242. package/dist/files/roboto-cyrillic-400-normal.woff2 +0 -0
  243. package/dist/files/roboto-cyrillic-500-normal.woff +0 -0
  244. package/dist/files/roboto-cyrillic-500-normal.woff2 +0 -0
  245. package/dist/files/roboto-cyrillic-700-normal.woff +0 -0
  246. package/dist/files/roboto-cyrillic-700-normal.woff2 +0 -0
  247. package/dist/files/roboto-cyrillic-ext-300-normal.woff +0 -0
  248. package/dist/files/roboto-cyrillic-ext-300-normal.woff2 +0 -0
  249. package/dist/files/roboto-cyrillic-ext-400-normal.woff +0 -0
  250. package/dist/files/roboto-cyrillic-ext-400-normal.woff2 +0 -0
  251. package/dist/files/roboto-cyrillic-ext-500-normal.woff +0 -0
  252. package/dist/files/roboto-cyrillic-ext-500-normal.woff2 +0 -0
  253. package/dist/files/roboto-cyrillic-ext-700-normal.woff +0 -0
  254. package/dist/files/roboto-cyrillic-ext-700-normal.woff2 +0 -0
  255. package/dist/files/roboto-greek-300-normal.woff +0 -0
  256. package/dist/files/roboto-greek-300-normal.woff2 +0 -0
  257. package/dist/files/roboto-greek-400-normal.woff +0 -0
  258. package/dist/files/roboto-greek-400-normal.woff2 +0 -0
  259. package/dist/files/roboto-greek-500-normal.woff +0 -0
  260. package/dist/files/roboto-greek-500-normal.woff2 +0 -0
  261. package/dist/files/roboto-greek-700-normal.woff +0 -0
  262. package/dist/files/roboto-greek-700-normal.woff2 +0 -0
  263. package/dist/files/roboto-greek-ext-300-normal.woff +0 -0
  264. package/dist/files/roboto-greek-ext-300-normal.woff2 +0 -0
  265. package/dist/files/roboto-greek-ext-400-normal.woff +0 -0
  266. package/dist/files/roboto-greek-ext-400-normal.woff2 +0 -0
  267. package/dist/files/roboto-greek-ext-500-normal.woff +0 -0
  268. package/dist/files/roboto-greek-ext-500-normal.woff2 +0 -0
  269. package/dist/files/roboto-greek-ext-700-normal.woff +0 -0
  270. package/dist/files/roboto-greek-ext-700-normal.woff2 +0 -0
  271. package/dist/files/roboto-latin-300-normal.woff +0 -0
  272. package/dist/files/roboto-latin-300-normal.woff2 +0 -0
  273. package/dist/files/roboto-latin-400-normal.woff +0 -0
  274. package/dist/files/roboto-latin-400-normal.woff2 +0 -0
  275. package/dist/files/roboto-latin-500-normal.woff +0 -0
  276. package/dist/files/roboto-latin-500-normal.woff2 +0 -0
  277. package/dist/files/roboto-latin-700-normal.woff +0 -0
  278. package/dist/files/roboto-latin-700-normal.woff2 +0 -0
  279. package/dist/files/roboto-latin-ext-300-normal.woff +0 -0
  280. package/dist/files/roboto-latin-ext-300-normal.woff2 +0 -0
  281. package/dist/files/roboto-latin-ext-400-normal.woff +0 -0
  282. package/dist/files/roboto-latin-ext-400-normal.woff2 +0 -0
  283. package/dist/files/roboto-latin-ext-500-normal.woff +0 -0
  284. package/dist/files/roboto-latin-ext-500-normal.woff2 +0 -0
  285. package/dist/files/roboto-latin-ext-700-normal.woff +0 -0
  286. package/dist/files/roboto-latin-ext-700-normal.woff2 +0 -0
  287. package/dist/files/roboto-vietnamese-300-normal.woff +0 -0
  288. package/dist/files/roboto-vietnamese-300-normal.woff2 +0 -0
  289. package/dist/files/roboto-vietnamese-400-normal.woff +0 -0
  290. package/dist/files/roboto-vietnamese-400-normal.woff2 +0 -0
  291. package/dist/files/roboto-vietnamese-500-normal.woff +0 -0
  292. package/dist/files/roboto-vietnamese-500-normal.woff2 +0 -0
  293. package/dist/files/roboto-vietnamese-700-normal.woff +0 -0
  294. package/dist/files/roboto-vietnamese-700-normal.woff2 +0 -0
  295. package/dist/i18n/ar.json +0 -1
  296. package/dist/i18n/de.json +0 -438
  297. package/dist/i18n/en-US.json +0 -1
  298. package/dist/i18n/en.json +0 -438
  299. package/dist/i18n/es-419.json +0 -1
  300. package/dist/i18n/es.json +0 -438
  301. package/dist/i18n/fa.json +0 -1
  302. package/dist/i18n/fi.json +0 -12
  303. package/dist/i18n/fr.json +0 -438
  304. package/dist/i18n/hi.json +0 -438
  305. package/dist/i18n/hr.json +0 -1
  306. package/dist/i18n/hu.json +0 -31
  307. package/dist/i18n/id.json +0 -438
  308. package/dist/i18n/it.json +0 -438
  309. package/dist/i18n/ja.json +0 -438
  310. package/dist/i18n/ky.json +0 -6
  311. package/dist/i18n/nl.json +0 -438
  312. package/dist/i18n/pl.json +0 -438
  313. package/dist/i18n/pt-PT.json +0 -1
  314. package/dist/i18n/pt.json +0 -438
  315. package/dist/i18n/pt_BR.json +0 -438
  316. package/dist/i18n/ro.json +0 -9
  317. package/dist/i18n/ru.json +0 -438
  318. package/dist/i18n/th.json +0 -438
  319. package/dist/i18n/tr.json +0 -438
  320. package/dist/i18n/uk.json +0 -186
  321. package/dist/i18n/vi.json +0 -396
  322. package/dist/i18n/zh_Hans.json +0 -412
  323. package/dist/index.html +0 -25
  324. package/dist/notification.mp3 +0 -0
  325. package/dist/package/PKGBUILD +0 -45
  326. package/dist/plugins/help/js/i18n/keynav/de.js +0 -90
  327. package/dist/plugins/help/js/i18n/keynav/en.js +0 -90
  328. package/dist/plugins/help/js/i18n/keynav/es.js +0 -90
  329. package/dist/plugins/help/js/i18n/keynav/fr_FR.js +0 -90
  330. package/dist/plugins/help/js/i18n/keynav/hi.js +0 -90
  331. package/dist/plugins/help/js/i18n/keynav/it.js +0 -90
  332. package/dist/plugins/help/js/i18n/keynav/ja.js +0 -90
  333. package/dist/plugins/help/js/i18n/keynav/nl.js +0 -90
  334. package/dist/plugins/help/js/i18n/keynav/pl.js +0 -90
  335. package/dist/plugins/help/js/i18n/keynav/pt_BR.js +0 -90
  336. package/dist/plugins/help/js/i18n/keynav/ro.js +0 -90
  337. package/dist/plugins/help/js/i18n/keynav/ru.js +0 -90
  338. package/dist/plugins/help/js/i18n/keynav/th_TH.js +0 -90
  339. package/dist/plugins/help/js/i18n/keynav/tr.js +0 -90
  340. package/dist/plugins/help/js/i18n/keynav/vi.js +0 -90
  341. package/dist/skins/content/dark/content.css +0 -59
  342. package/dist/skins/content/dark/content.min.css +0 -8
  343. package/dist/skins/content/default/content.css +0 -49
  344. package/dist/skins/content/default/content.min.css +0 -8
  345. package/dist/skins/content/document/content.css +0 -53
  346. package/dist/skins/content/document/content.min.css +0 -8
  347. package/dist/skins/content/writer/content.css +0 -50
  348. package/dist/skins/content/writer/content.min.css +0 -8
  349. package/dist/skins/ui/oxide/content.css +0 -615
  350. package/dist/skins/ui/oxide/content.inline.css +0 -608
  351. package/dist/skins/ui/oxide/content.inline.min.css +0 -8
  352. package/dist/skins/ui/oxide/content.min.css +0 -8
  353. package/dist/skins/ui/oxide/content.mobile.css +0 -29
  354. package/dist/skins/ui/oxide/content.mobile.min.css +0 -8
  355. package/dist/skins/ui/oxide/fonts/tinymce-mobile.woff +0 -0
  356. package/dist/skins/ui/oxide/skin.css +0 -2884
  357. package/dist/skins/ui/oxide/skin.min.css +0 -8
  358. package/dist/skins/ui/oxide/skin.mobile.css +0 -673
  359. package/dist/skins/ui/oxide/skin.mobile.min.css +0 -8
  360. package/dist/skins/ui/oxide-dark/content.css +0 -596
  361. package/dist/skins/ui/oxide-dark/content.inline.css +0 -608
  362. package/dist/skins/ui/oxide-dark/content.inline.min.css +0 -8
  363. package/dist/skins/ui/oxide-dark/content.min.css +0 -8
  364. package/dist/skins/ui/oxide-dark/content.mobile.css +0 -29
  365. package/dist/skins/ui/oxide-dark/content.mobile.min.css +0 -8
  366. package/dist/skins/ui/oxide-dark/fonts/tinymce-mobile.woff +0 -0
  367. package/dist/skins/ui/oxide-dark/skin.css +0 -2884
  368. package/dist/skins/ui/oxide-dark/skin.min.css +0 -8
  369. package/dist/skins/ui/oxide-dark/skin.mobile.css +0 -673
  370. package/dist/skins/ui/oxide-dark/skin.mobile.min.css +0 -8
  371. package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css +0 -21
  372. package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.css.map +0 -1
  373. package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js +0 -13399
  374. package/dist/src_boot_bootstrapper_tsx-node_modules_moment_locale_sync_recursive_.d07f086d.chunk.js.map +0 -1
  375. package/dist/src_workers_folder_ts.2df69eae.chunk.js +0 -537
  376. package/dist/src_workers_folder_ts.2df69eae.chunk.js.map +0 -1
  377. package/dist/src_workers_tag_ts.59a752d7.chunk.js +0 -113
  378. package/dist/src_workers_tag_ts.59a752d7.chunk.js.map +0 -1
  379. package/dist/style.a7eb9e6c.css +0 -389
  380. package/dist/style.a7eb9e6c.css.map +0 -1
  381. package/dist/tinymce/langs/de.js +0 -1
  382. package/dist/tinymce/langs/es.js +0 -1
  383. package/dist/tinymce/langs/fr_FR.js +0 -1
  384. package/dist/tinymce/langs/hi.js +0 -1
  385. package/dist/tinymce/langs/it.js +0 -1
  386. package/dist/tinymce/langs/ja.js +0 -1
  387. package/dist/tinymce/langs/nl.js +0 -1
  388. package/dist/tinymce/langs/pl.js +0 -1
  389. package/dist/tinymce/langs/pt_BR.js +0 -1
  390. package/dist/tinymce/langs/ro.js +0 -1
  391. package/dist/tinymce/langs/ru.js +0 -1
  392. package/dist/tinymce/langs/th_TH.js +0 -1
  393. package/dist/tinymce/langs/tr.js +0 -1
  394. package/dist/tinymce/langs/vi.js +0 -1
  395. package/dist/tinymce/langs/zh-Hans.js +0 -1
  396. package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js +0 -412
  397. package/dist/vendors-node_modules_date-fns__lib_isSameUTCWeek_index_js-node_modules_date-fns_locale__lib_b-41ea83.3e405109.chunk.js.map +0 -1
  398. package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js +0 -787
  399. package/dist/vendors-node_modules_date-fns_locale_de_index_js.42fc0cb6.chunk.js.map +0 -1
  400. package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js +0 -693
  401. package/dist/vendors-node_modules_date-fns_locale_en-US_index_js.1575ad91.chunk.js.map +0 -1
  402. package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js +0 -685
  403. package/dist/vendors-node_modules_date-fns_locale_es_index_js.a054d7dc.chunk.js.map +0 -1
  404. package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js +0 -644
  405. package/dist/vendors-node_modules_date-fns_locale_fr_index_js.20eefc5f.chunk.js.map +0 -1
  406. package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js +0 -741
  407. package/dist/vendors-node_modules_date-fns_locale_hi_index_js.016d9c1b.chunk.js.map +0 -1
  408. package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js +0 -531
  409. package/dist/vendors-node_modules_date-fns_locale_it_index_js.b1509e74.chunk.js.map +0 -1
  410. package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js +0 -703
  411. package/dist/vendors-node_modules_date-fns_locale_ja_index_js.7ee709ea.chunk.js.map +0 -1
  412. package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js +0 -638
  413. package/dist/vendors-node_modules_date-fns_locale_nl_index_js.03ea6284.chunk.js.map +0 -1
  414. package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js +0 -623
  415. package/dist/vendors-node_modules_date-fns_locale_pl_index_js.b1a781fa.chunk.js.map +0 -1
  416. package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js +0 -682
  417. package/dist/vendors-node_modules_date-fns_locale_pt-BR_index_js.695bc207.chunk.js.map +0 -1
  418. package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js +0 -678
  419. package/dist/vendors-node_modules_date-fns_locale_pt_index_js.09460edb.chunk.js.map +0 -1
  420. package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js +0 -670
  421. package/dist/vendors-node_modules_date-fns_locale_ro_index_js.53425395.chunk.js.map +0 -1
  422. package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js +0 -707
  423. package/dist/vendors-node_modules_date-fns_locale_ru_index_js.ab8b44d9.chunk.js.map +0 -1
  424. package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js +0 -672
  425. package/dist/vendors-node_modules_date-fns_locale_th_index_js.9f2448ee.chunk.js.map +0 -1
  426. package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js +0 -677
  427. package/dist/vendors-node_modules_date-fns_locale_tr_index_js.c47c86fa.chunk.js.map +0 -1
  428. package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js +0 -765
  429. package/dist/vendors-node_modules_date-fns_locale_vi_index_js.d02adf1c.chunk.js.map +0 -1
  430. package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js +0 -521
  431. package/dist/vendors-node_modules_date-fns_locale_zh-CN_index_js.505f5507.chunk.js.map +0 -1
  432. package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js +0 -19112
  433. package/dist/vendors-node_modules_lodash_lodash_js-node_modules_core-js_modules_es_array_push_js.8ced7511.chunk.js.map +0 -1
  434. package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js +0 -219343
  435. package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.88e81e25.chunk.js.map +0 -1
  436. package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css +0 -4104
  437. package/dist/vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css.map +0 -1
  438. package/dist/yap.json +0 -11
  439. package/dist/zapp-shell.bundle.js +0 -30430
  440. package/dist/zapp-shell.bundle.js.map +0 -1
  441. package/types/account/index.d.ts +0 -179
  442. package/types/apps/index.d.ts +0 -198
  443. package/types/boards/index.d.ts +0 -31
  444. package/types/exports/index.d.ts +0 -256
  445. package/types/folder/index.d.ts +0 -33
  446. package/types/i18n/index.d.ts +0 -19
  447. package/types/index.d.ts +0 -20
  448. package/types/integrations/index.d.ts +0 -41
  449. package/types/loginConfig/index.d.ts +0 -17
  450. package/types/misc/index.d.ts +0 -309
  451. package/types/network/entities.d.ts +0 -106
  452. package/types/network/index.d.ts +0 -239
  453. package/types/network/soap.d.ts +0 -106
  454. package/types/notification/index.d.ts +0 -31
  455. package/types/search/index.d.ts +0 -18
  456. package/types/search/items.d.ts +0 -13
  457. package/types/settings/index.d.ts +0 -10
  458. package/types/styled-components.d.ts +0 -18
  459. package/types/tags/index.d.ts +0 -21
  460. package/types/theme/index.d.ts +0 -9
  461. package/types/workers/index.d.ts +0 -24
@@ -1,4104 +0,0 @@
1
- /*!*************************************************************************************************************************************************************************************************************************************************************************!*\
2
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./node_modules/tinymce/skins/ui/oxide/skin.min.css ***!
3
- \*************************************************************************************************************************************************************************************************************************************************************************/
4
- .tox {
5
- box-shadow: none;
6
- box-sizing: content-box;
7
- color: #222f3e;
8
- cursor: auto;
9
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
10
- font-size: 16px;
11
- font-style: normal;
12
- font-weight: 400;
13
- line-height: normal;
14
- -webkit-tap-highlight-color: transparent;
15
- text-decoration: none;
16
- text-shadow: none;
17
- text-transform: none;
18
- vertical-align: initial;
19
- white-space: normal;
20
- }
21
- .tox :not(svg):not(rect) {
22
- box-sizing: inherit;
23
- color: inherit;
24
- cursor: inherit;
25
- direction: inherit;
26
- font-family: inherit;
27
- font-size: inherit;
28
- font-style: inherit;
29
- font-weight: inherit;
30
- line-height: inherit;
31
- -webkit-tap-highlight-color: inherit;
32
- text-align: inherit;
33
- text-decoration: inherit;
34
- text-shadow: inherit;
35
- text-transform: inherit;
36
- vertical-align: inherit;
37
- white-space: inherit;
38
- }
39
- .tox :not(svg):not(rect) {
40
- background: 0 0;
41
- border: 0;
42
- box-shadow: none;
43
- float: none;
44
- height: auto;
45
- margin: 0;
46
- max-width: none;
47
- outline: 0;
48
- padding: 0;
49
- position: static;
50
- width: auto;
51
- }
52
- .tox:not([dir=rtl]) {
53
- direction: ltr;
54
- text-align: left;
55
- }
56
- .tox[dir=rtl] {
57
- direction: rtl;
58
- text-align: right;
59
- }
60
- .tox-tinymce {
61
- border: 2px solid #eee;
62
- border-radius: 10px;
63
- box-shadow: none;
64
- box-sizing: border-box;
65
- display: flex;
66
- flex-direction: column;
67
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
68
- overflow: hidden;
69
- position: relative;
70
- visibility: inherit !important;
71
- }
72
- .tox.tox-tinymce-inline {
73
- border: none;
74
- box-shadow: none;
75
- overflow: initial;
76
- }
77
- .tox.tox-tinymce-inline .tox-editor-container {
78
- overflow: initial;
79
- }
80
- .tox.tox-tinymce-inline .tox-editor-header {
81
- background-color: #fff;
82
- border: 2px solid #eee;
83
- border-radius: 10px;
84
- box-shadow: none;
85
- overflow: hidden;
86
- }
87
- .tox-tinymce-aux {
88
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
89
- z-index: 1300;
90
- }
91
- .tox-tinymce :focus,
92
- .tox-tinymce-aux :focus {
93
- outline: 0;
94
- }
95
- button::-moz-focus-inner {
96
- border: 0;
97
- }
98
- .tox[dir=rtl] .tox-icon--flip svg {
99
- transform: rotateY(180deg);
100
- }
101
- .tox .accessibility-issue__header {
102
- align-items: center;
103
- display: flex;
104
- margin-bottom: 4px;
105
- }
106
- .tox .accessibility-issue__description {
107
- align-items: stretch;
108
- border-radius: 6px;
109
- display: flex;
110
- justify-content: space-between;
111
- }
112
- .tox .accessibility-issue__description > div {
113
- padding-bottom: 4px;
114
- }
115
- .tox .accessibility-issue__description > div > div {
116
- align-items: center;
117
- display: flex;
118
- margin-bottom: 4px;
119
- }
120
- .tox .accessibility-issue__description > div > div .tox-icon svg {
121
- display: block;
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, 101, 216, 0.1);
128
- color: #222f3e;
129
- }
130
- .tox .tox-dialog__body-content .accessibility-issue--info .tox-form__group h2 {
131
- color: #006ce7;
132
- }
133
- .tox .tox-dialog__body-content .accessibility-issue--info .tox-icon svg {
134
- fill: #006ce7;
135
- }
136
- .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon {
137
- background-color: #006ce7;
138
- color: #fff;
139
- }
140
- .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:focus,
141
- .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:hover {
142
- background-color: #0060ce;
143
- }
144
- .tox .tox-dialog__body-content .accessibility-issue--info a.tox-button--naked.tox-button--icon:active {
145
- background-color: #0054b4;
146
- }
147
- .tox .tox-dialog__body-content .accessibility-issue--warn .accessibility-issue__description {
148
- background-color: rgba(255, 165, 0, 0.08);
149
- color: #222f3e;
150
- }
151
- .tox .tox-dialog__body-content .accessibility-issue--warn .tox-form__group h2 {
152
- color: #8f5d00;
153
- }
154
- .tox .tox-dialog__body-content .accessibility-issue--warn .tox-icon svg {
155
- fill: #8f5d00;
156
- }
157
- .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon {
158
- background-color: #ffe89d;
159
- color: #222f3e;
160
- }
161
- .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:focus,
162
- .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:hover {
163
- background-color: #f2d574;
164
- color: #222f3e;
165
- }
166
- .tox .tox-dialog__body-content .accessibility-issue--warn a.tox-button--naked.tox-button--icon:active {
167
- background-color: #e8c657;
168
- color: #222f3e;
169
- }
170
- .tox .tox-dialog__body-content .accessibility-issue--error .accessibility-issue__description {
171
- background-color: rgba(204, 0, 0, 0.1);
172
- color: #222f3e;
173
- }
174
- .tox .tox-dialog__body-content .accessibility-issue--error .tox-form__group h2 {
175
- color: #c00;
176
- }
177
- .tox .tox-dialog__body-content .accessibility-issue--error .tox-icon svg {
178
- fill: #c00;
179
- }
180
- .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon {
181
- background-color: #f2bfbf;
182
- color: #222f3e;
183
- }
184
- .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:focus,
185
- .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:hover {
186
- background-color: #e9a4a4;
187
- color: #222f3e;
188
- }
189
- .tox .tox-dialog__body-content .accessibility-issue--error a.tox-button--naked.tox-button--icon:active {
190
- background-color: #ee9494;
191
- color: #222f3e;
192
- }
193
- .tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description {
194
- background-color: rgba(120, 171, 70, 0.1);
195
- color: #222f3e;
196
- }
197
- .tox .tox-dialog__body-content .accessibility-issue--success .accessibility-issue__description > :last-child {
198
- display: none;
199
- }
200
- .tox .tox-dialog__body-content .accessibility-issue--success .tox-form__group h2 {
201
- color: #527530;
202
- }
203
- .tox .tox-dialog__body-content .accessibility-issue--success .tox-icon svg {
204
- fill: #527530;
205
- }
206
- .tox .tox-dialog__body-content .accessibility-issue__header .tox-form__group h1,
207
- .tox .tox-dialog__body-content .tox-form__group .accessibility-issue__description h2 {
208
- font-size: 14px;
209
- margin-top: 0;
210
- }
211
- .tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header .tox-button {
212
- margin-left: 4px;
213
- }
214
- .tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__header > :nth-last-child(2) {
215
- margin-left: auto;
216
- }
217
- .tox:not([dir=rtl]) .tox-dialog__body-content .accessibility-issue__description {
218
- padding: 4px 4px 4px 8px;
219
- }
220
- .tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header .tox-button {
221
- margin-right: 4px;
222
- }
223
- .tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__header > :nth-last-child(2) {
224
- margin-right: auto;
225
- }
226
- .tox[dir=rtl] .tox-dialog__body-content .accessibility-issue__description {
227
- padding: 4px 8px 4px 4px;
228
- }
229
- .tox .tox-advtemplate .tox-form__grid {
230
- flex: 1;
231
- }
232
- .tox .tox-advtemplate .tox-form__grid > div:first-child {
233
- display: flex;
234
- flex-direction: column;
235
- width: 30%;
236
- }
237
- .tox .tox-advtemplate .tox-form__grid > div:first-child > div:nth-child(2) {
238
- flex-basis: 0;
239
- flex-grow: 1;
240
- overflow: auto;
241
- }
242
- @media only screen and (max-width: 767px) {
243
- body:not(.tox-force-desktop) .tox .tox-advtemplate .tox-form__grid > div:first-child {
244
- width: 100%;
245
- }
246
- }
247
- .tox .tox-advtemplate iframe {
248
- border-color: #eee;
249
- border-radius: 10px;
250
- border-style: solid;
251
- border-width: 1px;
252
- margin: 0 10px;
253
- }
254
- .tox .tox-anchorbar {
255
- display: flex;
256
- flex: 0 0 auto;
257
- }
258
- .tox .tox-bottom-anchorbar {
259
- display: flex;
260
- flex: 0 0 auto;
261
- }
262
- .tox .tox-bar {
263
- display: flex;
264
- flex: 0 0 auto;
265
- }
266
- .tox .tox-button {
267
- background-color: #006ce7;
268
- background-image: none;
269
- background-position: 0 0;
270
- background-repeat: repeat;
271
- border-color: #006ce7;
272
- border-radius: 6px;
273
- border-style: solid;
274
- border-width: 1px;
275
- box-shadow: none;
276
- box-sizing: border-box;
277
- color: #fff;
278
- cursor: pointer;
279
- display: inline-block;
280
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
281
- font-size: 14px;
282
- font-style: normal;
283
- font-weight: 700;
284
- letter-spacing: normal;
285
- line-height: 24px;
286
- margin: 0;
287
- outline: 0;
288
- padding: 4px 16px;
289
- position: relative;
290
- text-align: center;
291
- text-decoration: none;
292
- text-transform: none;
293
- white-space: nowrap;
294
- }
295
- .tox .tox-button::before {
296
- border-radius: 6px;
297
- bottom: -1px;
298
- box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px #006ce7, 0 0 0 3px rgba(0, 108, 231, 0.25);
299
- content: '';
300
- left: -1px;
301
- opacity: 0;
302
- pointer-events: none;
303
- position: absolute;
304
- right: -1px;
305
- top: -1px;
306
- }
307
- .tox .tox-button[disabled] {
308
- background-color: #006ce7;
309
- background-image: none;
310
- border-color: #006ce7;
311
- box-shadow: none;
312
- color: rgba(255, 255, 255, 0.5);
313
- cursor: not-allowed;
314
- }
315
- .tox .tox-button:focus:not(:disabled) {
316
- background-color: #0060ce;
317
- background-image: none;
318
- border-color: #0060ce;
319
- box-shadow: none;
320
- color: #fff;
321
- }
322
- .tox .tox-button:focus-visible:not(:disabled)::before {
323
- opacity: 1;
324
- }
325
- .tox .tox-button:hover:not(:disabled) {
326
- background-color: #0060ce;
327
- background-image: none;
328
- border-color: #0060ce;
329
- box-shadow: none;
330
- color: #fff;
331
- }
332
- .tox .tox-button:active:not(:disabled) {
333
- background-color: #0054b4;
334
- background-image: none;
335
- border-color: #0054b4;
336
- box-shadow: none;
337
- color: #fff;
338
- }
339
- .tox .tox-button.tox-button--enabled {
340
- background-color: #0054b4;
341
- background-image: none;
342
- border-color: #0054b4;
343
- box-shadow: none;
344
- color: #fff;
345
- }
346
- .tox .tox-button.tox-button--enabled[disabled] {
347
- background-color: #0054b4;
348
- background-image: none;
349
- border-color: #0054b4;
350
- box-shadow: none;
351
- color: rgba(255, 255, 255, 0.5);
352
- cursor: not-allowed;
353
- }
354
- .tox .tox-button.tox-button--enabled:focus:not(:disabled) {
355
- background-color: #00489b;
356
- background-image: none;
357
- border-color: #00489b;
358
- box-shadow: none;
359
- color: #fff;
360
- }
361
- .tox .tox-button.tox-button--enabled:hover:not(:disabled) {
362
- background-color: #00489b;
363
- background-image: none;
364
- border-color: #00489b;
365
- box-shadow: none;
366
- color: #fff;
367
- }
368
- .tox .tox-button.tox-button--enabled:active:not(:disabled) {
369
- background-color: #003c81;
370
- background-image: none;
371
- border-color: #003c81;
372
- box-shadow: none;
373
- color: #fff;
374
- }
375
- .tox .tox-button--icon-and-text,
376
- .tox .tox-button.tox-button--icon-and-text,
377
- .tox .tox-button.tox-button--secondary.tox-button--icon-and-text {
378
- display: flex;
379
- padding: 5px 4px;
380
- }
381
- .tox .tox-button--icon-and-text .tox-icon svg,
382
- .tox .tox-button.tox-button--icon-and-text .tox-icon svg,
383
- .tox .tox-button.tox-button--secondary.tox-button--icon-and-text .tox-icon svg {
384
- display: block;
385
- fill: currentColor;
386
- }
387
- .tox .tox-button--secondary {
388
- background-color: #f0f0f0;
389
- background-image: none;
390
- background-position: 0 0;
391
- background-repeat: repeat;
392
- border-color: #f0f0f0;
393
- border-radius: 6px;
394
- border-style: solid;
395
- border-width: 1px;
396
- box-shadow: none;
397
- color: #222f3e;
398
- font-size: 14px;
399
- font-style: normal;
400
- font-weight: 700;
401
- letter-spacing: normal;
402
- outline: 0;
403
- padding: 4px 16px;
404
- text-decoration: none;
405
- text-transform: none;
406
- }
407
- .tox .tox-button--secondary[disabled] {
408
- background-color: #f0f0f0;
409
- background-image: none;
410
- border-color: #f0f0f0;
411
- box-shadow: none;
412
- color: rgba(34, 47, 62, 0.5);
413
- }
414
- .tox .tox-button--secondary:focus:not(:disabled) {
415
- background-color: #e3e3e3;
416
- background-image: none;
417
- border-color: #e3e3e3;
418
- box-shadow: none;
419
- color: #222f3e;
420
- }
421
- .tox .tox-button--secondary:hover:not(:disabled) {
422
- background-color: #e3e3e3;
423
- background-image: none;
424
- border-color: #e3e3e3;
425
- box-shadow: none;
426
- color: #222f3e;
427
- }
428
- .tox .tox-button--secondary:active:not(:disabled) {
429
- background-color: #d6d6d6;
430
- background-image: none;
431
- border-color: #d6d6d6;
432
- box-shadow: none;
433
- color: #222f3e;
434
- }
435
- .tox .tox-button--secondary.tox-button--enabled {
436
- background-color: #a8c8ed;
437
- background-image: none;
438
- border-color: #a8c8ed;
439
- box-shadow: none;
440
- color: #222f3e;
441
- }
442
- .tox .tox-button--secondary.tox-button--enabled[disabled] {
443
- background-color: #a8c8ed;
444
- background-image: none;
445
- border-color: #a8c8ed;
446
- box-shadow: none;
447
- color: rgba(34, 47, 62, 0.5);
448
- }
449
- .tox .tox-button--secondary.tox-button--enabled:focus:not(:disabled) {
450
- background-color: #93bbe9;
451
- background-image: none;
452
- border-color: #93bbe9;
453
- box-shadow: none;
454
- color: #222f3e;
455
- }
456
- .tox .tox-button--secondary.tox-button--enabled:hover:not(:disabled) {
457
- background-color: #93bbe9;
458
- background-image: none;
459
- border-color: #93bbe9;
460
- box-shadow: none;
461
- color: #222f3e;
462
- }
463
- .tox .tox-button--secondary.tox-button--enabled:active:not(:disabled) {
464
- background-color: #7daee4;
465
- background-image: none;
466
- border-color: #7daee4;
467
- box-shadow: none;
468
- color: #222f3e;
469
- }
470
- .tox .tox-button--icon,
471
- .tox .tox-button.tox-button--icon,
472
- .tox .tox-button.tox-button--secondary.tox-button--icon {
473
- padding: 4px;
474
- }
475
- .tox .tox-button--icon .tox-icon svg,
476
- .tox .tox-button.tox-button--icon .tox-icon svg,
477
- .tox .tox-button.tox-button--secondary.tox-button--icon .tox-icon svg {
478
- display: block;
479
- fill: currentColor;
480
- }
481
- .tox .tox-button-link {
482
- background: 0;
483
- border: none;
484
- box-sizing: border-box;
485
- cursor: pointer;
486
- display: inline-block;
487
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
488
- font-size: 16px;
489
- font-weight: 400;
490
- line-height: 1.3;
491
- margin: 0;
492
- padding: 0;
493
- white-space: nowrap;
494
- }
495
- .tox .tox-button-link--sm {
496
- font-size: 14px;
497
- }
498
- .tox .tox-button--naked {
499
- background-color: transparent;
500
- border-color: transparent;
501
- box-shadow: unset;
502
- color: #222f3e;
503
- }
504
- .tox .tox-button--naked[disabled] {
505
- background-color: rgba(34, 47, 62, 0.12);
506
- border-color: transparent;
507
- box-shadow: unset;
508
- color: rgba(34, 47, 62, 0.5);
509
- }
510
- .tox .tox-button--naked:hover:not(:disabled) {
511
- background-color: rgba(34, 47, 62, 0.12);
512
- border-color: transparent;
513
- box-shadow: unset;
514
- color: #222f3e;
515
- }
516
- .tox .tox-button--naked:focus:not(:disabled) {
517
- background-color: rgba(34, 47, 62, 0.12);
518
- border-color: transparent;
519
- box-shadow: unset;
520
- color: #222f3e;
521
- }
522
- .tox .tox-button--naked:active:not(:disabled) {
523
- background-color: rgba(34, 47, 62, 0.18);
524
- border-color: transparent;
525
- box-shadow: unset;
526
- color: #222f3e;
527
- }
528
- .tox .tox-button--naked .tox-icon svg {
529
- fill: currentColor;
530
- }
531
- .tox .tox-button--naked.tox-button--icon:hover:not(:disabled) {
532
- color: #222f3e;
533
- }
534
- .tox .tox-checkbox {
535
- align-items: center;
536
- border-radius: 6px;
537
- cursor: pointer;
538
- display: flex;
539
- height: 36px;
540
- min-width: 36px;
541
- }
542
- .tox .tox-checkbox__input {
543
- height: 1px;
544
- overflow: hidden;
545
- position: absolute;
546
- top: auto;
547
- width: 1px;
548
- }
549
- .tox .tox-checkbox__icons {
550
- align-items: center;
551
- border-radius: 6px;
552
- box-shadow: 0 0 0 2px transparent;
553
- box-sizing: content-box;
554
- display: flex;
555
- height: 24px;
556
- justify-content: center;
557
- padding: calc(4px - 1px);
558
- width: 24px;
559
- }
560
- .tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
561
- display: block;
562
- fill: rgba(34, 47, 62, 0.3);
563
- }
564
- .tox .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
565
- display: none;
566
- fill: #006ce7;
567
- }
568
- .tox .tox-checkbox__icons .tox-checkbox-icon__checked svg {
569
- display: none;
570
- fill: #006ce7;
571
- }
572
- .tox .tox-checkbox--disabled {
573
- color: rgba(34, 47, 62, 0.5);
574
- cursor: not-allowed;
575
- }
576
- .tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__checked svg {
577
- fill: rgba(34, 47, 62, 0.5);
578
- }
579
- .tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
580
- fill: rgba(34, 47, 62, 0.5);
581
- }
582
- .tox .tox-checkbox--disabled .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
583
- fill: rgba(34, 47, 62, 0.5);
584
- }
585
- .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
586
- display: none;
587
- }
588
- .tox input.tox-checkbox__input:checked + .tox-checkbox__icons .tox-checkbox-icon__checked svg {
589
- display: block;
590
- }
591
- .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
592
- display: none;
593
- }
594
- .tox input.tox-checkbox__input:indeterminate + .tox-checkbox__icons .tox-checkbox-icon__indeterminate svg {
595
- display: block;
596
- }
597
- .tox input.tox-checkbox__input:focus + .tox-checkbox__icons {
598
- border-radius: 6px;
599
- box-shadow: inset 0 0 0 1px #006ce7;
600
- padding: calc(4px - 1px);
601
- }
602
- .tox:not([dir=rtl]) .tox-checkbox__label {
603
- margin-left: 4px;
604
- }
605
- .tox:not([dir=rtl]) .tox-checkbox__input {
606
- left: -10000px;
607
- }
608
- .tox:not([dir=rtl]) .tox-bar .tox-checkbox {
609
- margin-left: 4px;
610
- }
611
- .tox[dir=rtl] .tox-checkbox__label {
612
- margin-right: 4px;
613
- }
614
- .tox[dir=rtl] .tox-checkbox__input {
615
- right: -10000px;
616
- }
617
- .tox[dir=rtl] .tox-bar .tox-checkbox {
618
- margin-right: 4px;
619
- }
620
- .tox .tox-collection--toolbar .tox-collection__group {
621
- display: flex;
622
- padding: 0;
623
- }
624
- .tox .tox-collection--grid .tox-collection__group {
625
- display: flex;
626
- flex-wrap: wrap;
627
- max-height: 208px;
628
- overflow-x: hidden;
629
- overflow-y: auto;
630
- padding: 0;
631
- }
632
- .tox .tox-collection--list .tox-collection__group {
633
- border-bottom-width: 0;
634
- border-color: #e3e3e3;
635
- border-left-width: 0;
636
- border-right-width: 0;
637
- border-style: solid;
638
- border-top-width: 1px;
639
- padding: 4px 0;
640
- }
641
- .tox .tox-collection--list .tox-collection__group:first-child {
642
- border-top-width: 0;
643
- }
644
- .tox .tox-collection__group-heading {
645
- background-color: #fcfcfc;
646
- color: rgba(34, 47, 62, 0.7);
647
- cursor: default;
648
- font-size: 12px;
649
- font-style: normal;
650
- font-weight: 400;
651
- margin-bottom: 4px;
652
- margin-top: -4px;
653
- padding: 4px 8px;
654
- text-transform: none;
655
- -webkit-touch-callout: none;
656
- -webkit-user-select: none;
657
- -moz-user-select: none;
658
- user-select: none;
659
- }
660
- .tox .tox-collection__item {
661
- align-items: center;
662
- border-radius: 3px;
663
- color: #222f3e;
664
- display: flex;
665
- -webkit-touch-callout: none;
666
- -webkit-user-select: none;
667
- -moz-user-select: none;
668
- user-select: none;
669
- }
670
- .tox .tox-collection--list .tox-collection__item {
671
- padding: 4px 8px;
672
- }
673
- .tox .tox-collection--toolbar .tox-collection__item {
674
- border-radius: 3px;
675
- padding: 4px;
676
- }
677
- .tox .tox-collection--grid .tox-collection__item {
678
- border-radius: 3px;
679
- padding: 4px;
680
- }
681
- .tox .tox-collection--list .tox-collection__item--enabled {
682
- background-color: #fff;
683
- color: #222f3e;
684
- }
685
- .tox .tox-collection--list .tox-collection__item--active {
686
- background-color: #cce2fa;
687
- }
688
- .tox .tox-collection--toolbar .tox-collection__item--enabled {
689
- background-color: #a6ccf7;
690
- color: #222f3e;
691
- }
692
- .tox .tox-collection--toolbar .tox-collection__item--active {
693
- background-color: #cce2fa;
694
- }
695
- .tox .tox-collection--grid .tox-collection__item--enabled {
696
- background-color: #a6ccf7;
697
- color: #222f3e;
698
- }
699
- .tox .tox-collection--grid .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
700
- background-color: #cce2fa;
701
- color: #222f3e;
702
- }
703
- .tox .tox-collection--list .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
704
- color: #222f3e;
705
- }
706
- .tox .tox-collection--toolbar .tox-collection__item--active:not(.tox-collection__item--state-disabled) {
707
- color: #222f3e;
708
- }
709
- .tox .tox-collection__item-checkmark,
710
- .tox .tox-collection__item-icon {
711
- align-items: center;
712
- display: flex;
713
- height: 24px;
714
- justify-content: center;
715
- width: 24px;
716
- }
717
- .tox .tox-collection__item-checkmark svg,
718
- .tox .tox-collection__item-icon svg {
719
- fill: currentColor;
720
- }
721
- .tox .tox-collection--toolbar-lg .tox-collection__item-icon {
722
- height: 48px;
723
- width: 48px;
724
- }
725
- .tox .tox-collection__item-label {
726
- color: currentColor;
727
- display: inline-block;
728
- flex: 1;
729
- font-size: 14px;
730
- font-style: normal;
731
- font-weight: 400;
732
- line-height: 24px;
733
- max-width: 100%;
734
- text-transform: none;
735
- word-break: break-all;
736
- }
737
- .tox .tox-collection__item-accessory {
738
- color: rgba(34, 47, 62, 0.7);
739
- display: inline-block;
740
- font-size: 14px;
741
- height: 24px;
742
- line-height: 24px;
743
- text-transform: none;
744
- }
745
- .tox .tox-collection__item-caret {
746
- align-items: center;
747
- display: flex;
748
- min-height: 24px;
749
- }
750
- .tox .tox-collection__item-caret::after {
751
- content: '';
752
- font-size: 0;
753
- min-height: inherit;
754
- }
755
- .tox .tox-collection__item-caret svg {
756
- fill: #222f3e;
757
- }
758
- .tox .tox-collection__item--state-disabled {
759
- background-color: transparent;
760
- color: rgba(34, 47, 62, 0.5);
761
- cursor: not-allowed;
762
- }
763
- .tox .tox-collection__item--state-disabled .tox-collection__item-caret svg {
764
- fill: rgba(34, 47, 62, 0.5);
765
- }
766
- .tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-checkmark svg {
767
- display: none;
768
- }
769
- .tox .tox-collection--list .tox-collection__item:not(.tox-collection__item--enabled) .tox-collection__item-accessory + .tox-collection__item-checkmark {
770
- display: none;
771
- }
772
- .tox .tox-collection--horizontal {
773
- background-color: #fff;
774
- border: 1px solid #e3e3e3;
775
- border-radius: 6px;
776
- box-shadow: 0 0 2px 0 rgba(34, 47, 62, 0.2), 0 4px 8px 0 rgba(34, 47, 62, 0.15);
777
- display: flex;
778
- flex: 0 0 auto;
779
- flex-shrink: 0;
780
- flex-wrap: nowrap;
781
- margin-bottom: 0;
782
- overflow-x: auto;
783
- padding: 0;
784
- }
785
- .tox .tox-collection--horizontal .tox-collection__group {
786
- align-items: center;
787
- display: flex;
788
- flex-wrap: nowrap;
789
- margin: 0;
790
- padding: 0 4px;
791
- }
792
- .tox .tox-collection--horizontal .tox-collection__item {
793
- height: 28px;
794
- margin: 6px 1px 5px 0;
795
- padding: 0 4px;
796
- }
797
- .tox .tox-collection--horizontal .tox-collection__item-label {
798
- white-space: nowrap;
799
- }
800
- .tox .tox-collection--horizontal .tox-collection__item-caret {
801
- margin-left: 4px;
802
- }
803
- .tox .tox-collection__item-container {
804
- display: flex;
805
- }
806
- .tox .tox-collection__item-container--row {
807
- align-items: center;
808
- flex: 1 1 auto;
809
- flex-direction: row;
810
- }
811
- .tox .tox-collection__item-container--row.tox-collection__item-container--align-left {
812
- margin-right: auto;
813
- }
814
- .tox .tox-collection__item-container--row.tox-collection__item-container--align-right {
815
- justify-content: flex-end;
816
- margin-left: auto;
817
- }
818
- .tox .tox-collection__item-container--row.tox-collection__item-container--valign-top {
819
- align-items: flex-start;
820
- margin-bottom: auto;
821
- }
822
- .tox .tox-collection__item-container--row.tox-collection__item-container--valign-middle {
823
- align-items: center;
824
- }
825
- .tox .tox-collection__item-container--row.tox-collection__item-container--valign-bottom {
826
- align-items: flex-end;
827
- margin-top: auto;
828
- }
829
- .tox .tox-collection__item-container--column {
830
- align-self: center;
831
- flex: 1 1 auto;
832
- flex-direction: column;
833
- }
834
- .tox .tox-collection__item-container--column.tox-collection__item-container--align-left {
835
- align-items: flex-start;
836
- }
837
- .tox .tox-collection__item-container--column.tox-collection__item-container--align-right {
838
- align-items: flex-end;
839
- }
840
- .tox .tox-collection__item-container--column.tox-collection__item-container--valign-top {
841
- align-self: flex-start;
842
- }
843
- .tox .tox-collection__item-container--column.tox-collection__item-container--valign-middle {
844
- align-self: center;
845
- }
846
- .tox .tox-collection__item-container--column.tox-collection__item-container--valign-bottom {
847
- align-self: flex-end;
848
- }
849
- .tox:not([dir=rtl]) .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
850
- border-right: 1px solid transparent;
851
- }
852
- .tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > :not(:first-child) {
853
- margin-left: 8px;
854
- }
855
- .tox:not([dir=rtl]) .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
856
- margin-left: 4px;
857
- }
858
- .tox:not([dir=rtl]) .tox-collection__item-accessory {
859
- margin-left: 16px;
860
- text-align: right;
861
- }
862
- .tox:not([dir=rtl]) .tox-collection .tox-collection__item-caret {
863
- margin-left: 16px;
864
- }
865
- .tox[dir=rtl] .tox-collection--horizontal .tox-collection__group:not(:last-of-type) {
866
- border-left: 1px solid transparent;
867
- }
868
- .tox[dir=rtl] .tox-collection--list .tox-collection__item > :not(:first-child) {
869
- margin-right: 8px;
870
- }
871
- .tox[dir=rtl] .tox-collection--list .tox-collection__item > .tox-collection__item-label:first-child {
872
- margin-right: 4px;
873
- }
874
- .tox[dir=rtl] .tox-collection__item-accessory {
875
- margin-right: 16px;
876
- text-align: left;
877
- }
878
- .tox[dir=rtl] .tox-collection .tox-collection__item-caret {
879
- margin-right: 16px;
880
- transform: rotateY(180deg);
881
- }
882
- .tox[dir=rtl] .tox-collection--horizontal .tox-collection__item-caret {
883
- margin-right: 4px;
884
- }
885
- .tox .tox-color-picker-container {
886
- display: flex;
887
- flex-direction: row;
888
- height: 225px;
889
- margin: 0;
890
- }
891
- .tox .tox-sv-palette {
892
- box-sizing: border-box;
893
- display: flex;
894
- height: 100%;
895
- }
896
- .tox .tox-sv-palette-spectrum {
897
- height: 100%;
898
- }
899
- .tox .tox-sv-palette,
900
- .tox .tox-sv-palette-spectrum {
901
- width: 225px;
902
- }
903
- .tox .tox-sv-palette-thumb {
904
- background: 0 0;
905
- border: 1px solid #000;
906
- border-radius: 50%;
907
- box-sizing: content-box;
908
- height: 12px;
909
- position: absolute;
910
- width: 12px;
911
- }
912
- .tox .tox-sv-palette-inner-thumb {
913
- border: 1px solid #fff;
914
- border-radius: 50%;
915
- height: 10px;
916
- position: absolute;
917
- width: 10px;
918
- }
919
- .tox .tox-hue-slider {
920
- box-sizing: border-box;
921
- height: 100%;
922
- width: 25px;
923
- }
924
- .tox .tox-hue-slider-spectrum {
925
- background: linear-gradient(to bottom, red, #ff0080, #f0f, #8000ff, #00f, #0080ff, #0ff, #00ff80, #0f0, #80ff00, #ff0, #ff8000, red);
926
- height: 100%;
927
- width: 100%;
928
- }
929
- .tox .tox-hue-slider,
930
- .tox .tox-hue-slider-spectrum {
931
- width: 20px;
932
- }
933
- .tox .tox-hue-slider-spectrum:focus,
934
- .tox .tox-sv-palette-spectrum:focus {
935
- outline: #08f solid;
936
- }
937
- .tox .tox-hue-slider-thumb {
938
- background: #fff;
939
- border: 1px solid #000;
940
- box-sizing: content-box;
941
- height: 4px;
942
- width: 100%;
943
- }
944
- .tox .tox-rgb-form {
945
- display: flex;
946
- flex-direction: column;
947
- justify-content: space-between;
948
- }
949
- .tox .tox-rgb-form div {
950
- align-items: center;
951
- display: flex;
952
- justify-content: space-between;
953
- margin-bottom: 5px;
954
- width: inherit;
955
- }
956
- .tox .tox-rgb-form input {
957
- width: 6em;
958
- }
959
- .tox .tox-rgb-form input.tox-invalid {
960
- border: 1px solid red !important;
961
- }
962
- .tox .tox-rgb-form .tox-rgba-preview {
963
- border: 1px solid #000;
964
- flex-grow: 2;
965
- margin-bottom: 0;
966
- }
967
- .tox:not([dir=rtl]) .tox-sv-palette {
968
- margin-right: 15px;
969
- }
970
- .tox:not([dir=rtl]) .tox-hue-slider {
971
- margin-right: 15px;
972
- }
973
- .tox:not([dir=rtl]) .tox-hue-slider-thumb {
974
- margin-left: -1px;
975
- }
976
- .tox:not([dir=rtl]) .tox-rgb-form label {
977
- margin-right: 0.5em;
978
- }
979
- .tox[dir=rtl] .tox-sv-palette {
980
- margin-left: 15px;
981
- }
982
- .tox[dir=rtl] .tox-hue-slider {
983
- margin-left: 15px;
984
- }
985
- .tox[dir=rtl] .tox-hue-slider-thumb {
986
- margin-right: -1px;
987
- }
988
- .tox[dir=rtl] .tox-rgb-form label {
989
- margin-left: 0.5em;
990
- }
991
- .tox .tox-toolbar .tox-swatches,
992
- .tox .tox-toolbar__overflow .tox-swatches,
993
- .tox .tox-toolbar__primary .tox-swatches {
994
- margin: 5px 0 6px 11px;
995
- }
996
- .tox .tox-collection--list .tox-collection__group .tox-swatches-menu {
997
- border: 0;
998
- margin: -4px -4px;
999
- }
1000
- .tox .tox-swatches__row {
1001
- display: flex;
1002
- }
1003
- .tox .tox-swatch {
1004
- height: 30px;
1005
- transition: transform 0.15s, box-shadow 0.15s;
1006
- width: 30px;
1007
- }
1008
- .tox .tox-swatch:focus,
1009
- .tox .tox-swatch:hover {
1010
- box-shadow: 0 0 0 1px rgba(127, 127, 127, 0.3) inset;
1011
- transform: scale(0.8);
1012
- }
1013
- .tox .tox-swatch--remove {
1014
- align-items: center;
1015
- display: flex;
1016
- justify-content: center;
1017
- }
1018
- .tox .tox-swatch--remove svg path {
1019
- stroke: #e74c3c;
1020
- }
1021
- .tox .tox-swatches__picker-btn {
1022
- align-items: center;
1023
- background-color: transparent;
1024
- border: 0;
1025
- cursor: pointer;
1026
- display: flex;
1027
- height: 30px;
1028
- justify-content: center;
1029
- outline: 0;
1030
- padding: 0;
1031
- width: 30px;
1032
- }
1033
- .tox .tox-swatches__picker-btn svg {
1034
- fill: #222f3e;
1035
- height: 24px;
1036
- width: 24px;
1037
- }
1038
- .tox .tox-swatches__picker-btn:hover {
1039
- background: #cce2fa;
1040
- }
1041
- .tox div.tox-swatch:not(.tox-swatch--remove) svg {
1042
- display: none;
1043
- fill: #222f3e;
1044
- height: 24px;
1045
- margin: calc((30px - 24px)/2) calc((30px - 24px)/2);
1046
- width: 24px;
1047
- }
1048
- .tox div.tox-swatch:not(.tox-swatch--remove) svg path {
1049
- fill: #fff;
1050
- paint-order: stroke;
1051
- stroke: #222f3e;
1052
- stroke-width: 2px;
1053
- }
1054
- .tox div.tox-swatch:not(.tox-swatch--remove).tox-collection__item--enabled svg {
1055
- display: block;
1056
- }
1057
- .tox:not([dir=rtl]) .tox-swatches__picker-btn {
1058
- margin-left: auto;
1059
- }
1060
- .tox[dir=rtl] .tox-swatches__picker-btn {
1061
- margin-right: auto;
1062
- }
1063
- .tox .tox-comment-thread {
1064
- background: #fff;
1065
- position: relative;
1066
- }
1067
- .tox .tox-comment-thread > :not(:first-child) {
1068
- margin-top: 8px;
1069
- }
1070
- .tox .tox-comment {
1071
- background: #fff;
1072
- border: 1px solid #eee;
1073
- border-radius: 6px;
1074
- box-shadow: 0 4px 8px 0 rgba(34, 47, 62, 0.1);
1075
- padding: 8px 8px 16px 8px;
1076
- position: relative;
1077
- }
1078
- .tox .tox-comment__header {
1079
- align-items: center;
1080
- color: #222f3e;
1081
- display: flex;
1082
- justify-content: space-between;
1083
- }
1084
- .tox .tox-comment__date {
1085
- color: #222f3e;
1086
- font-size: 12px;
1087
- line-height: 18px;
1088
- }
1089
- .tox .tox-comment__body {
1090
- color: #222f3e;
1091
- font-size: 14px;
1092
- font-style: normal;
1093
- font-weight: 400;
1094
- line-height: 1.3;
1095
- margin-top: 8px;
1096
- position: relative;
1097
- text-transform: initial;
1098
- }
1099
- .tox .tox-comment__body textarea {
1100
- resize: none;
1101
- white-space: normal;
1102
- width: 100%;
1103
- }
1104
- .tox .tox-comment__expander {
1105
- padding-top: 8px;
1106
- }
1107
- .tox .tox-comment__expander p {
1108
- color: rgba(34, 47, 62, 0.7);
1109
- font-size: 14px;
1110
- font-style: normal;
1111
- }
1112
- .tox .tox-comment__body p {
1113
- margin: 0;
1114
- }
1115
- .tox .tox-comment__buttonspacing {
1116
- padding-top: 16px;
1117
- text-align: center;
1118
- }
1119
- .tox .tox-comment-thread__overlay::after {
1120
- background: #fff;
1121
- bottom: 0;
1122
- content: "";
1123
- display: flex;
1124
- left: 0;
1125
- opacity: 0.9;
1126
- position: absolute;
1127
- right: 0;
1128
- top: 0;
1129
- z-index: 5;
1130
- }
1131
- .tox .tox-comment__reply {
1132
- display: flex;
1133
- flex-shrink: 0;
1134
- flex-wrap: wrap;
1135
- justify-content: flex-end;
1136
- margin-top: 8px;
1137
- }
1138
- .tox .tox-comment__reply > :first-child {
1139
- margin-bottom: 8px;
1140
- width: 100%;
1141
- }
1142
- .tox .tox-comment__edit {
1143
- display: flex;
1144
- flex-wrap: wrap;
1145
- justify-content: flex-end;
1146
- margin-top: 16px;
1147
- }
1148
- .tox .tox-comment__gradient::after {
1149
- background: linear-gradient(rgba(255, 255, 255, 0), #fff);
1150
- bottom: 0;
1151
- content: "";
1152
- display: block;
1153
- height: 5em;
1154
- margin-top: -40px;
1155
- position: absolute;
1156
- width: 100%;
1157
- }
1158
- .tox .tox-comment__overlay {
1159
- background: #fff;
1160
- bottom: 0;
1161
- display: flex;
1162
- flex-direction: column;
1163
- flex-grow: 1;
1164
- left: 0;
1165
- opacity: 0.9;
1166
- position: absolute;
1167
- right: 0;
1168
- text-align: center;
1169
- top: 0;
1170
- z-index: 5;
1171
- }
1172
- .tox .tox-comment__loading-text {
1173
- align-items: center;
1174
- color: #222f3e;
1175
- display: flex;
1176
- flex-direction: column;
1177
- position: relative;
1178
- }
1179
- .tox .tox-comment__loading-text > div {
1180
- padding-bottom: 16px;
1181
- }
1182
- .tox .tox-comment__overlaytext {
1183
- bottom: 0;
1184
- flex-direction: column;
1185
- font-size: 14px;
1186
- left: 0;
1187
- padding: 1em;
1188
- position: absolute;
1189
- right: 0;
1190
- top: 0;
1191
- z-index: 10;
1192
- }
1193
- .tox .tox-comment__overlaytext p {
1194
- background-color: #fff;
1195
- box-shadow: 0 0 8px 8px #fff;
1196
- color: #222f3e;
1197
- text-align: center;
1198
- }
1199
- .tox .tox-comment__overlaytext div:nth-of-type(2) {
1200
- font-size: 0.8em;
1201
- }
1202
- .tox .tox-comment__busy-spinner {
1203
- align-items: center;
1204
- background-color: #fff;
1205
- bottom: 0;
1206
- display: flex;
1207
- justify-content: center;
1208
- left: 0;
1209
- position: absolute;
1210
- right: 0;
1211
- top: 0;
1212
- z-index: 20;
1213
- }
1214
- .tox .tox-comment__scroll {
1215
- display: flex;
1216
- flex-direction: column;
1217
- flex-shrink: 1;
1218
- overflow: auto;
1219
- }
1220
- .tox .tox-conversations {
1221
- margin: 8px;
1222
- }
1223
- .tox:not([dir=rtl]) .tox-comment__edit {
1224
- margin-left: 8px;
1225
- }
1226
- .tox:not([dir=rtl]) .tox-comment__buttonspacing > :last-child,
1227
- .tox:not([dir=rtl]) .tox-comment__edit > :last-child,
1228
- .tox:not([dir=rtl]) .tox-comment__reply > :last-child {
1229
- margin-left: 8px;
1230
- }
1231
- .tox[dir=rtl] .tox-comment__edit {
1232
- margin-right: 8px;
1233
- }
1234
- .tox[dir=rtl] .tox-comment__buttonspacing > :last-child,
1235
- .tox[dir=rtl] .tox-comment__edit > :last-child,
1236
- .tox[dir=rtl] .tox-comment__reply > :last-child {
1237
- margin-right: 8px;
1238
- }
1239
- .tox .tox-user {
1240
- align-items: center;
1241
- display: flex;
1242
- }
1243
- .tox .tox-user__avatar svg {
1244
- fill: rgba(34, 47, 62, 0.7);
1245
- }
1246
- .tox .tox-user__avatar img {
1247
- border-radius: 50%;
1248
- height: 36px;
1249
- -o-object-fit: cover;
1250
- object-fit: cover;
1251
- vertical-align: middle;
1252
- width: 36px;
1253
- }
1254
- .tox .tox-user__name {
1255
- color: #222f3e;
1256
- font-size: 14px;
1257
- font-style: normal;
1258
- font-weight: 700;
1259
- line-height: 18px;
1260
- text-transform: none;
1261
- }
1262
- .tox:not([dir=rtl]) .tox-user__avatar img,
1263
- .tox:not([dir=rtl]) .tox-user__avatar svg {
1264
- margin-right: 8px;
1265
- }
1266
- .tox:not([dir=rtl]) .tox-user__avatar + .tox-user__name {
1267
- margin-left: 8px;
1268
- }
1269
- .tox[dir=rtl] .tox-user__avatar img,
1270
- .tox[dir=rtl] .tox-user__avatar svg {
1271
- margin-left: 8px;
1272
- }
1273
- .tox[dir=rtl] .tox-user__avatar + .tox-user__name {
1274
- margin-right: 8px;
1275
- }
1276
- .tox .tox-dialog-wrap {
1277
- align-items: center;
1278
- bottom: 0;
1279
- display: flex;
1280
- justify-content: center;
1281
- left: 0;
1282
- position: fixed;
1283
- right: 0;
1284
- top: 0;
1285
- z-index: 1100;
1286
- }
1287
- .tox .tox-dialog-wrap__backdrop {
1288
- background-color: rgba(255, 255, 255, 0.75);
1289
- bottom: 0;
1290
- left: 0;
1291
- position: absolute;
1292
- right: 0;
1293
- top: 0;
1294
- z-index: 1;
1295
- }
1296
- .tox .tox-dialog-wrap__backdrop--opaque {
1297
- background-color: #fff;
1298
- }
1299
- .tox .tox-dialog {
1300
- background-color: #fff;
1301
- border-color: #eee;
1302
- border-radius: 10px;
1303
- border-style: solid;
1304
- border-width: 0;
1305
- box-shadow: 0 16px 16px -10px rgba(34, 47, 62, 0.15), 0 0 40px 1px rgba(34, 47, 62, 0.15);
1306
- display: flex;
1307
- flex-direction: column;
1308
- max-height: 100%;
1309
- max-width: 480px;
1310
- overflow: hidden;
1311
- position: relative;
1312
- width: 95vw;
1313
- z-index: 2;
1314
- }
1315
- @media only screen and (max-width: 767px) {
1316
- body:not(.tox-force-desktop) .tox .tox-dialog {
1317
- align-self: flex-start;
1318
- margin: 8px auto;
1319
- max-height: calc(100vh - 8px * 2);
1320
- width: calc(100vw - 16px);
1321
- }
1322
- }
1323
- .tox .tox-dialog-inline {
1324
- z-index: 1100;
1325
- }
1326
- .tox .tox-dialog__header {
1327
- align-items: center;
1328
- background-color: #fff;
1329
- border-bottom: none;
1330
- color: #222f3e;
1331
- display: flex;
1332
- font-size: 16px;
1333
- justify-content: space-between;
1334
- padding: 8px 16px 0 16px;
1335
- position: relative;
1336
- }
1337
- .tox .tox-dialog__header .tox-button {
1338
- z-index: 1;
1339
- }
1340
- .tox .tox-dialog__draghandle {
1341
- cursor: grab;
1342
- height: 100%;
1343
- left: 0;
1344
- position: absolute;
1345
- top: 0;
1346
- width: 100%;
1347
- }
1348
- .tox .tox-dialog__draghandle:active {
1349
- cursor: grabbing;
1350
- }
1351
- .tox .tox-dialog__dismiss {
1352
- margin-left: auto;
1353
- }
1354
- .tox .tox-dialog__title {
1355
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
1356
- font-size: 20px;
1357
- font-style: normal;
1358
- font-weight: 400;
1359
- line-height: 1.3;
1360
- margin: 0;
1361
- text-transform: none;
1362
- }
1363
- .tox .tox-dialog__body {
1364
- color: #222f3e;
1365
- display: flex;
1366
- flex: 1;
1367
- font-size: 16px;
1368
- font-style: normal;
1369
- font-weight: 400;
1370
- line-height: 1.3;
1371
- min-width: 0;
1372
- text-align: left;
1373
- text-transform: none;
1374
- }
1375
- @media only screen and (max-width: 767px) {
1376
- body:not(.tox-force-desktop) .tox .tox-dialog__body {
1377
- flex-direction: column;
1378
- }
1379
- }
1380
- .tox .tox-dialog__body-nav {
1381
- align-items: flex-start;
1382
- display: flex;
1383
- flex-direction: column;
1384
- flex-shrink: 0;
1385
- padding: 16px 16px;
1386
- }
1387
- @media only screen and (min-width: 768px) {
1388
- .tox .tox-dialog__body-nav {
1389
- max-width: 11em;
1390
- }
1391
- }
1392
- @media only screen and (max-width: 767px) {
1393
- body:not(.tox-force-desktop) .tox .tox-dialog__body-nav {
1394
- flex-direction: row;
1395
- -webkit-overflow-scrolling: touch;
1396
- overflow-x: auto;
1397
- padding-bottom: 0;
1398
- }
1399
- }
1400
- .tox .tox-dialog__body-nav-item {
1401
- border-bottom: 2px solid transparent;
1402
- color: rgba(34, 47, 62, 0.7);
1403
- display: inline-block;
1404
- flex-shrink: 0;
1405
- font-size: 14px;
1406
- line-height: 1.3;
1407
- margin-bottom: 8px;
1408
- max-width: 13em;
1409
- text-decoration: none;
1410
- }
1411
- .tox .tox-dialog__body-nav-item:focus {
1412
- background-color: rgba(0, 108, 231, 0.1);
1413
- }
1414
- .tox .tox-dialog__body-nav-item--active {
1415
- border-bottom: 2px solid #006ce7;
1416
- color: #006ce7;
1417
- }
1418
- .tox .tox-dialog__body-content {
1419
- box-sizing: border-box;
1420
- display: flex;
1421
- flex: 1;
1422
- flex-direction: column;
1423
- max-height: 650px;
1424
- overflow: auto;
1425
- -webkit-overflow-scrolling: touch;
1426
- padding: 16px 16px;
1427
- }
1428
- .tox .tox-dialog__body-content > * {
1429
- margin-bottom: 0;
1430
- margin-top: 16px;
1431
- }
1432
- .tox .tox-dialog__body-content > :first-child {
1433
- margin-top: 0;
1434
- }
1435
- .tox .tox-dialog__body-content > :last-child {
1436
- margin-bottom: 0;
1437
- }
1438
- .tox .tox-dialog__body-content > :only-child {
1439
- margin-bottom: 0;
1440
- margin-top: 0;
1441
- }
1442
- .tox .tox-dialog__body-content a {
1443
- color: #006ce7;
1444
- cursor: pointer;
1445
- text-decoration: underline;
1446
- }
1447
- .tox .tox-dialog__body-content a:focus,
1448
- .tox .tox-dialog__body-content a:hover {
1449
- color: #003c81;
1450
- text-decoration: underline;
1451
- }
1452
- .tox .tox-dialog__body-content a:focus-visible {
1453
- border-radius: 1px;
1454
- outline: 2px solid #006ce7;
1455
- outline-offset: 2px;
1456
- }
1457
- .tox .tox-dialog__body-content a:active {
1458
- color: #00244e;
1459
- text-decoration: underline;
1460
- }
1461
- .tox .tox-dialog__body-content svg {
1462
- fill: #222f3e;
1463
- }
1464
- .tox .tox-dialog__body-content strong {
1465
- font-weight: 700;
1466
- }
1467
- .tox .tox-dialog__body-content ul {
1468
- list-style-type: disc;
1469
- }
1470
- .tox .tox-dialog__body-content dd,
1471
- .tox .tox-dialog__body-content ol,
1472
- .tox .tox-dialog__body-content ul {
1473
- padding-inline-start: 2.5rem;
1474
- }
1475
- .tox .tox-dialog__body-content dl,
1476
- .tox .tox-dialog__body-content ol,
1477
- .tox .tox-dialog__body-content ul {
1478
- margin-bottom: 16px;
1479
- }
1480
- .tox .tox-dialog__body-content dd,
1481
- .tox .tox-dialog__body-content dl,
1482
- .tox .tox-dialog__body-content dt,
1483
- .tox .tox-dialog__body-content ol,
1484
- .tox .tox-dialog__body-content ul {
1485
- display: block;
1486
- margin-inline-end: 0;
1487
- margin-inline-start: 0;
1488
- }
1489
- .tox .tox-dialog__body-content .tox-form__group h1 {
1490
- color: #222f3e;
1491
- font-size: 20px;
1492
- font-style: normal;
1493
- font-weight: 700;
1494
- letter-spacing: normal;
1495
- margin-bottom: 16px;
1496
- margin-top: 2rem;
1497
- text-transform: none;
1498
- }
1499
- .tox .tox-dialog__body-content .tox-form__group h2 {
1500
- color: #222f3e;
1501
- font-size: 16px;
1502
- font-style: normal;
1503
- font-weight: 700;
1504
- letter-spacing: normal;
1505
- margin-bottom: 16px;
1506
- margin-top: 2rem;
1507
- text-transform: none;
1508
- }
1509
- .tox .tox-dialog__body-content .tox-form__group p {
1510
- margin-bottom: 16px;
1511
- }
1512
- .tox .tox-dialog__body-content .tox-form__group h1:first-child,
1513
- .tox .tox-dialog__body-content .tox-form__group h2:first-child,
1514
- .tox .tox-dialog__body-content .tox-form__group p:first-child {
1515
- margin-top: 0;
1516
- }
1517
- .tox .tox-dialog__body-content .tox-form__group h1:last-child,
1518
- .tox .tox-dialog__body-content .tox-form__group h2:last-child,
1519
- .tox .tox-dialog__body-content .tox-form__group p:last-child {
1520
- margin-bottom: 0;
1521
- }
1522
- .tox .tox-dialog__body-content .tox-form__group h1:only-child,
1523
- .tox .tox-dialog__body-content .tox-form__group h2:only-child,
1524
- .tox .tox-dialog__body-content .tox-form__group p:only-child {
1525
- margin-bottom: 0;
1526
- margin-top: 0;
1527
- }
1528
- .tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--center {
1529
- text-align: center;
1530
- }
1531
- .tox .tox-dialog__body-content .tox-form__group .tox-label.tox-label--end {
1532
- text-align: end;
1533
- }
1534
- .tox .tox-dialog--width-lg {
1535
- height: 650px;
1536
- max-width: 1200px;
1537
- }
1538
- .tox .tox-dialog--fullscreen {
1539
- height: 100%;
1540
- max-width: 100%;
1541
- }
1542
- .tox .tox-dialog--fullscreen .tox-dialog__body-content {
1543
- max-height: 100%;
1544
- }
1545
- .tox .tox-dialog--width-md {
1546
- max-width: 800px;
1547
- }
1548
- .tox .tox-dialog--width-md .tox-dialog__body-content {
1549
- overflow: auto;
1550
- }
1551
- .tox .tox-dialog__body-content--centered {
1552
- text-align: center;
1553
- }
1554
- .tox .tox-dialog__footer {
1555
- align-items: center;
1556
- background-color: #fff;
1557
- border-top: none;
1558
- display: flex;
1559
- justify-content: space-between;
1560
- padding: 8px 16px;
1561
- }
1562
- .tox .tox-dialog__footer-end,
1563
- .tox .tox-dialog__footer-start {
1564
- display: flex;
1565
- }
1566
- .tox .tox-dialog__busy-spinner {
1567
- align-items: center;
1568
- background-color: rgba(255, 255, 255, 0.75);
1569
- bottom: 0;
1570
- display: flex;
1571
- justify-content: center;
1572
- left: 0;
1573
- position: absolute;
1574
- right: 0;
1575
- top: 0;
1576
- z-index: 3;
1577
- }
1578
- .tox .tox-dialog__table {
1579
- border-collapse: collapse;
1580
- width: 100%;
1581
- }
1582
- .tox .tox-dialog__table thead th {
1583
- font-weight: 700;
1584
- padding-bottom: 8px;
1585
- }
1586
- .tox .tox-dialog__table thead th:first-child {
1587
- padding-right: 8px;
1588
- }
1589
- .tox .tox-dialog__table tbody tr {
1590
- border-bottom: 1px solid #626262;
1591
- }
1592
- .tox .tox-dialog__table tbody tr:last-child {
1593
- border-bottom: none;
1594
- }
1595
- .tox .tox-dialog__table td {
1596
- padding-bottom: 8px;
1597
- padding-top: 8px;
1598
- }
1599
- .tox .tox-dialog__table td:first-child {
1600
- padding-right: 8px;
1601
- }
1602
- .tox .tox-dialog__iframe {
1603
- min-height: 200px;
1604
- }
1605
- .tox .tox-dialog__iframe.tox-dialog__iframe--opaque {
1606
- background: #fff;
1607
- }
1608
- .tox .tox-navobj-bordered {
1609
- position: relative;
1610
- }
1611
- .tox .tox-navobj-bordered::before {
1612
- border: 1px solid #eee;
1613
- border-radius: 6px;
1614
- content: '';
1615
- inset: 0;
1616
- opacity: 1;
1617
- pointer-events: none;
1618
- position: absolute;
1619
- z-index: 1;
1620
- }
1621
- .tox .tox-navobj-bordered-focus.tox-navobj-bordered::before {
1622
- border-color: #006ce7;
1623
- box-shadow: 0 0 0 2px rgba(0, 108, 231, 0.25);
1624
- outline: 0;
1625
- }
1626
- .tox .tox-dialog__popups {
1627
- position: absolute;
1628
- width: 100%;
1629
- z-index: 1100;
1630
- }
1631
- .tox .tox-dialog__body-iframe {
1632
- display: flex;
1633
- flex: 1;
1634
- flex-direction: column;
1635
- }
1636
- .tox .tox-dialog__body-iframe .tox-navobj {
1637
- display: flex;
1638
- flex: 1;
1639
- }
1640
- .tox .tox-dialog__body-iframe .tox-navobj :nth-child(2) {
1641
- flex: 1;
1642
- height: 100%;
1643
- }
1644
- .tox .tox-dialog-dock-fadeout {
1645
- opacity: 0;
1646
- visibility: hidden;
1647
- }
1648
- .tox .tox-dialog-dock-fadein {
1649
- opacity: 1;
1650
- visibility: visible;
1651
- }
1652
- .tox .tox-dialog-dock-transition {
1653
- transition: visibility 0s linear 0.3s, opacity 0.3s ease;
1654
- }
1655
- .tox .tox-dialog-dock-transition.tox-dialog-dock-fadein {
1656
- transition-delay: 0s;
1657
- }
1658
- @media only screen and (max-width: 767px) {
1659
- body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav {
1660
- margin-right: 0;
1661
- }
1662
- }
1663
- @media only screen and (max-width: 767px) {
1664
- body:not(.tox-force-desktop) .tox:not([dir=rtl]) .tox-dialog__body-nav-item:not(:first-child) {
1665
- margin-left: 8px;
1666
- }
1667
- }
1668
- .tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-end > *,
1669
- .tox:not([dir=rtl]) .tox-dialog__footer .tox-dialog__footer-start > * {
1670
- margin-left: 8px;
1671
- }
1672
- .tox[dir=rtl] .tox-dialog__body {
1673
- text-align: right;
1674
- }
1675
- @media only screen and (max-width: 767px) {
1676
- body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav {
1677
- margin-left: 0;
1678
- }
1679
- }
1680
- @media only screen and (max-width: 767px) {
1681
- body:not(.tox-force-desktop) .tox[dir=rtl] .tox-dialog__body-nav-item:not(:first-child) {
1682
- margin-right: 8px;
1683
- }
1684
- }
1685
- .tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-end > *,
1686
- .tox[dir=rtl] .tox-dialog__footer .tox-dialog__footer-start > * {
1687
- margin-right: 8px;
1688
- }
1689
- body.tox-dialog__disable-scroll {
1690
- overflow: hidden;
1691
- }
1692
- .tox .tox-dropzone-container {
1693
- display: flex;
1694
- flex: 1;
1695
- }
1696
- .tox .tox-dropzone {
1697
- align-items: center;
1698
- background: #fff;
1699
- border: 2px dashed #eee;
1700
- box-sizing: border-box;
1701
- display: flex;
1702
- flex-direction: column;
1703
- flex-grow: 1;
1704
- justify-content: center;
1705
- min-height: 100px;
1706
- padding: 10px;
1707
- }
1708
- .tox .tox-dropzone p {
1709
- color: rgba(34, 47, 62, 0.7);
1710
- margin: 0 0 16px 0;
1711
- }
1712
- .tox .tox-edit-area {
1713
- display: flex;
1714
- flex: 1;
1715
- overflow: hidden;
1716
- position: relative;
1717
- }
1718
- .tox .tox-edit-area::before {
1719
- border: 2px solid #2d6adf;
1720
- border-radius: 4px;
1721
- content: '';
1722
- inset: 0;
1723
- opacity: 0;
1724
- pointer-events: none;
1725
- position: absolute;
1726
- transition: opacity 0.15s;
1727
- z-index: 1;
1728
- }
1729
- .tox .tox-edit-area__iframe {
1730
- background-color: #fff;
1731
- border: 0;
1732
- box-sizing: border-box;
1733
- flex: 1;
1734
- height: 100%;
1735
- position: absolute;
1736
- width: 100%;
1737
- }
1738
- .tox.tox-edit-focus .tox-edit-area::before {
1739
- opacity: 1;
1740
- }
1741
- .tox.tox-inline-edit-area {
1742
- border: 1px dotted #eee;
1743
- }
1744
- .tox .tox-editor-container {
1745
- display: flex;
1746
- flex: 1 1 auto;
1747
- flex-direction: column;
1748
- overflow: hidden;
1749
- }
1750
- .tox .tox-editor-header {
1751
- display: grid;
1752
- grid-template-columns: 1fr min-content;
1753
- z-index: 2;
1754
- }
1755
- .tox:not(.tox-tinymce-inline) .tox-editor-header {
1756
- background-color: #fff;
1757
- border-bottom: none;
1758
- box-shadow: 0 2px 2px -2px rgba(34, 47, 62, 0.1), 0 8px 8px -4px rgba(34, 47, 62, 0.07);
1759
- padding: 4px 0;
1760
- }
1761
- .tox:not(.tox-tinymce-inline) .tox-editor-header:not(.tox-editor-dock-transition) {
1762
- transition: box-shadow 0.5s;
1763
- }
1764
- .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-bottom .tox-editor-header {
1765
- border-top: 1px solid #e3e3e3;
1766
- box-shadow: none;
1767
- }
1768
- .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on .tox-editor-header {
1769
- background-color: #fff;
1770
- box-shadow: 0 2px 2px -2px rgba(34, 47, 62, 0.2), 0 8px 8px -4px rgba(34, 47, 62, 0.15);
1771
- padding: 4px 0;
1772
- }
1773
- .tox:not(.tox-tinymce-inline).tox-tinymce--toolbar-sticky-on.tox-tinymce--toolbar-bottom .tox-editor-header {
1774
- box-shadow: 0 2px 2px -2px rgba(34, 47, 62, 0.2), 0 8px 8px -4px rgba(34, 47, 62, 0.15);
1775
- }
1776
- .tox.tox:not(.tox-tinymce-inline) .tox-editor-header.tox-editor-header--empty {
1777
- background: 0 0;
1778
- border: none;
1779
- box-shadow: none;
1780
- padding: 0;
1781
- }
1782
- .tox-editor-dock-fadeout {
1783
- opacity: 0;
1784
- visibility: hidden;
1785
- }
1786
- .tox-editor-dock-fadein {
1787
- opacity: 1;
1788
- visibility: visible;
1789
- }
1790
- .tox-editor-dock-transition {
1791
- transition: visibility 0s linear 0.25s, opacity 0.25s ease;
1792
- }
1793
- .tox-editor-dock-transition.tox-editor-dock-fadein {
1794
- transition-delay: 0s;
1795
- }
1796
- .tox .tox-control-wrap {
1797
- flex: 1;
1798
- position: relative;
1799
- }
1800
- .tox .tox-control-wrap:not(.tox-control-wrap--status-invalid) .tox-control-wrap__status-icon-invalid,
1801
- .tox .tox-control-wrap:not(.tox-control-wrap--status-unknown) .tox-control-wrap__status-icon-unknown,
1802
- .tox .tox-control-wrap:not(.tox-control-wrap--status-valid) .tox-control-wrap__status-icon-valid {
1803
- display: none;
1804
- }
1805
- .tox .tox-control-wrap svg {
1806
- display: block;
1807
- }
1808
- .tox .tox-control-wrap__status-icon-wrap {
1809
- position: absolute;
1810
- top: 50%;
1811
- transform: translateY(-50%);
1812
- }
1813
- .tox .tox-control-wrap__status-icon-invalid svg {
1814
- fill: #c00;
1815
- }
1816
- .tox .tox-control-wrap__status-icon-unknown svg {
1817
- fill: orange;
1818
- }
1819
- .tox .tox-control-wrap__status-icon-valid svg {
1820
- fill: green;
1821
- }
1822
- .tox:not([dir=rtl]) .tox-control-wrap--status-invalid .tox-textfield,
1823
- .tox:not([dir=rtl]) .tox-control-wrap--status-unknown .tox-textfield,
1824
- .tox:not([dir=rtl]) .tox-control-wrap--status-valid .tox-textfield {
1825
- padding-right: 32px;
1826
- }
1827
- .tox:not([dir=rtl]) .tox-control-wrap__status-icon-wrap {
1828
- right: 4px;
1829
- }
1830
- .tox[dir=rtl] .tox-control-wrap--status-invalid .tox-textfield,
1831
- .tox[dir=rtl] .tox-control-wrap--status-unknown .tox-textfield,
1832
- .tox[dir=rtl] .tox-control-wrap--status-valid .tox-textfield {
1833
- padding-left: 32px;
1834
- }
1835
- .tox[dir=rtl] .tox-control-wrap__status-icon-wrap {
1836
- left: 4px;
1837
- }
1838
- .tox .tox-autocompleter {
1839
- max-width: 25em;
1840
- }
1841
- .tox .tox-autocompleter .tox-menu {
1842
- box-sizing: border-box;
1843
- max-width: 25em;
1844
- }
1845
- .tox .tox-autocompleter .tox-autocompleter-highlight {
1846
- font-weight: 700;
1847
- }
1848
- .tox .tox-color-input {
1849
- display: flex;
1850
- position: relative;
1851
- z-index: 1;
1852
- }
1853
- .tox .tox-color-input .tox-textfield {
1854
- z-index: -1;
1855
- }
1856
- .tox .tox-color-input span {
1857
- border-color: rgba(34, 47, 62, 0.2);
1858
- border-radius: 6px;
1859
- border-style: solid;
1860
- border-width: 1px;
1861
- box-shadow: none;
1862
- box-sizing: border-box;
1863
- height: 24px;
1864
- position: absolute;
1865
- top: 6px;
1866
- width: 24px;
1867
- }
1868
- .tox .tox-color-input span:focus:not([aria-disabled=true]),
1869
- .tox .tox-color-input span:hover:not([aria-disabled=true]) {
1870
- border-color: #006ce7;
1871
- cursor: pointer;
1872
- }
1873
- .tox .tox-color-input span::before {
1874
- background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%), linear-gradient(-45deg, rgba(0, 0, 0, 0.25) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.25) 75%), linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.25) 75%);
1875
- background-position: 0 0, 0 6px, 6px -6px, -6px 0;
1876
- background-size: 12px 12px;
1877
- border: 1px solid #fff;
1878
- border-radius: 6px;
1879
- box-sizing: border-box;
1880
- content: '';
1881
- height: 24px;
1882
- left: -1px;
1883
- position: absolute;
1884
- top: -1px;
1885
- width: 24px;
1886
- z-index: -1;
1887
- }
1888
- .tox .tox-color-input span[aria-disabled=true] {
1889
- cursor: not-allowed;
1890
- }
1891
- .tox:not([dir=rtl]) .tox-color-input .tox-textfield {
1892
- padding-left: 36px;
1893
- }
1894
- .tox:not([dir=rtl]) .tox-color-input span {
1895
- left: 6px;
1896
- }
1897
- .tox[dir=rtl] .tox-color-input .tox-textfield {
1898
- padding-right: 36px;
1899
- }
1900
- .tox[dir=rtl] .tox-color-input span {
1901
- right: 6px;
1902
- }
1903
- .tox .tox-label,
1904
- .tox .tox-toolbar-label {
1905
- color: rgba(34, 47, 62, 0.7);
1906
- display: block;
1907
- font-size: 14px;
1908
- font-style: normal;
1909
- font-weight: 400;
1910
- line-height: 1.3;
1911
- padding: 0 8px 0 0;
1912
- text-transform: none;
1913
- white-space: nowrap;
1914
- }
1915
- .tox .tox-toolbar-label {
1916
- padding: 0 8px;
1917
- }
1918
- .tox[dir=rtl] .tox-label {
1919
- padding: 0 0 0 8px;
1920
- }
1921
- .tox .tox-form {
1922
- display: flex;
1923
- flex: 1;
1924
- flex-direction: column;
1925
- }
1926
- .tox .tox-form__group {
1927
- box-sizing: border-box;
1928
- margin-bottom: 4px;
1929
- }
1930
- .tox .tox-form-group--maximize {
1931
- flex: 1;
1932
- }
1933
- .tox .tox-form__group--error {
1934
- color: #c00;
1935
- }
1936
- .tox .tox-form__group--collection {
1937
- display: flex;
1938
- }
1939
- .tox .tox-form__grid {
1940
- display: flex;
1941
- flex-direction: row;
1942
- flex-wrap: wrap;
1943
- justify-content: space-between;
1944
- }
1945
- .tox .tox-form__grid--2col > .tox-form__group {
1946
- width: calc(50% - (8px / 2));
1947
- }
1948
- .tox .tox-form__grid--3col > .tox-form__group {
1949
- width: calc(100% / 3 - (8px / 2));
1950
- }
1951
- .tox .tox-form__grid--4col > .tox-form__group {
1952
- width: calc(25% - (8px / 2));
1953
- }
1954
- .tox .tox-form__controls-h-stack {
1955
- align-items: center;
1956
- display: flex;
1957
- }
1958
- .tox .tox-form__group--inline {
1959
- align-items: center;
1960
- display: flex;
1961
- }
1962
- .tox .tox-form__group--stretched {
1963
- display: flex;
1964
- flex: 1;
1965
- flex-direction: column;
1966
- }
1967
- .tox .tox-form__group--stretched .tox-textarea {
1968
- flex: 1;
1969
- }
1970
- .tox .tox-form__group--stretched .tox-navobj {
1971
- display: flex;
1972
- flex: 1;
1973
- }
1974
- .tox .tox-form__group--stretched .tox-navobj :nth-child(2) {
1975
- flex: 1;
1976
- height: 100%;
1977
- }
1978
- .tox:not([dir=rtl]) .tox-form__controls-h-stack > :not(:first-child) {
1979
- margin-left: 4px;
1980
- }
1981
- .tox[dir=rtl] .tox-form__controls-h-stack > :not(:first-child) {
1982
- margin-right: 4px;
1983
- }
1984
- .tox .tox-lock.tox-locked .tox-lock-icon__unlock,
1985
- .tox .tox-lock:not(.tox-locked) .tox-lock-icon__lock {
1986
- display: none;
1987
- }
1988
- .tox .tox-listboxfield .tox-listbox--select,
1989
- .tox .tox-textarea,
1990
- .tox .tox-textarea-wrap .tox-textarea:focus,
1991
- .tox .tox-textfield,
1992
- .tox .tox-toolbar-textfield {
1993
- -webkit-appearance: none;
1994
- -moz-appearance: none;
1995
- appearance: none;
1996
- background-color: #fff;
1997
- border-color: #eee;
1998
- border-radius: 6px;
1999
- border-style: solid;
2000
- border-width: 1px;
2001
- box-shadow: none;
2002
- box-sizing: border-box;
2003
- color: #222f3e;
2004
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
2005
- font-size: 16px;
2006
- line-height: 24px;
2007
- margin: 0;
2008
- min-height: 34px;
2009
- outline: 0;
2010
- padding: 5px 5.5px;
2011
- resize: none;
2012
- width: 100%;
2013
- }
2014
- .tox .tox-textarea[disabled],
2015
- .tox .tox-textfield[disabled] {
2016
- background-color: #f2f2f2;
2017
- color: rgba(34, 47, 62, 0.85);
2018
- cursor: not-allowed;
2019
- }
2020
- .tox .tox-custom-editor:focus-within,
2021
- .tox .tox-listboxfield .tox-listbox--select:focus,
2022
- .tox .tox-textarea-wrap:focus-within,
2023
- .tox .tox-textarea:focus,
2024
- .tox .tox-textfield:focus {
2025
- background-color: #fff;
2026
- border-color: #006ce7;
2027
- box-shadow: 0 0 0 2px rgba(0, 108, 231, 0.25);
2028
- outline: 0;
2029
- }
2030
- .tox .tox-toolbar-textfield {
2031
- border-width: 0;
2032
- margin-bottom: 3px;
2033
- margin-top: 2px;
2034
- max-width: 250px;
2035
- }
2036
- .tox .tox-naked-btn {
2037
- background-color: transparent;
2038
- border: 0;
2039
- border-color: transparent;
2040
- box-shadow: unset;
2041
- color: #006ce7;
2042
- cursor: pointer;
2043
- display: block;
2044
- margin: 0;
2045
- padding: 0;
2046
- }
2047
- .tox .tox-naked-btn svg {
2048
- display: block;
2049
- fill: #222f3e;
2050
- }
2051
- .tox:not([dir=rtl]) .tox-toolbar-textfield + * {
2052
- margin-left: 4px;
2053
- }
2054
- .tox[dir=rtl] .tox-toolbar-textfield + * {
2055
- margin-right: 4px;
2056
- }
2057
- .tox .tox-listboxfield {
2058
- cursor: pointer;
2059
- position: relative;
2060
- }
2061
- .tox .tox-listboxfield .tox-listbox--select[disabled] {
2062
- background-color: #f2f2f2;
2063
- color: rgba(34, 47, 62, 0.85);
2064
- cursor: not-allowed;
2065
- }
2066
- .tox .tox-listbox__select-label {
2067
- cursor: default;
2068
- flex: 1;
2069
- margin: 0 4px;
2070
- }
2071
- .tox .tox-listbox__select-chevron {
2072
- align-items: center;
2073
- display: flex;
2074
- justify-content: center;
2075
- width: 16px;
2076
- }
2077
- .tox .tox-listbox__select-chevron svg {
2078
- fill: #222f3e;
2079
- }
2080
- .tox .tox-listboxfield .tox-listbox--select {
2081
- align-items: center;
2082
- display: flex;
2083
- }
2084
- .tox:not([dir=rtl]) .tox-listboxfield svg {
2085
- right: 8px;
2086
- }
2087
- .tox[dir=rtl] .tox-listboxfield svg {
2088
- left: 8px;
2089
- }
2090
- .tox .tox-selectfield {
2091
- cursor: pointer;
2092
- position: relative;
2093
- }
2094
- .tox .tox-selectfield select {
2095
- -webkit-appearance: none;
2096
- -moz-appearance: none;
2097
- appearance: none;
2098
- background-color: #fff;
2099
- border-color: #eee;
2100
- border-radius: 6px;
2101
- border-style: solid;
2102
- border-width: 1px;
2103
- box-shadow: none;
2104
- box-sizing: border-box;
2105
- color: #222f3e;
2106
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
2107
- font-size: 16px;
2108
- line-height: 24px;
2109
- margin: 0;
2110
- min-height: 34px;
2111
- outline: 0;
2112
- padding: 5px 5.5px;
2113
- resize: none;
2114
- width: 100%;
2115
- }
2116
- .tox .tox-selectfield select[disabled] {
2117
- background-color: #f2f2f2;
2118
- color: rgba(34, 47, 62, 0.85);
2119
- cursor: not-allowed;
2120
- }
2121
- .tox .tox-selectfield select::-ms-expand {
2122
- display: none;
2123
- }
2124
- .tox .tox-selectfield select:focus {
2125
- background-color: #fff;
2126
- border-color: #006ce7;
2127
- box-shadow: 0 0 0 2px rgba(0, 108, 231, 0.25);
2128
- outline: 0;
2129
- }
2130
- .tox .tox-selectfield svg {
2131
- pointer-events: none;
2132
- position: absolute;
2133
- top: 50%;
2134
- transform: translateY(-50%);
2135
- }
2136
- .tox:not([dir=rtl]) .tox-selectfield select[size="0"],
2137
- .tox:not([dir=rtl]) .tox-selectfield select[size="1"] {
2138
- padding-right: 24px;
2139
- }
2140
- .tox:not([dir=rtl]) .tox-selectfield svg {
2141
- right: 8px;
2142
- }
2143
- .tox[dir=rtl] .tox-selectfield select[size="0"],
2144
- .tox[dir=rtl] .tox-selectfield select[size="1"] {
2145
- padding-left: 24px;
2146
- }
2147
- .tox[dir=rtl] .tox-selectfield svg {
2148
- left: 8px;
2149
- }
2150
- .tox .tox-textarea-wrap {
2151
- border-color: #eee;
2152
- border-radius: 6px;
2153
- border-style: solid;
2154
- border-width: 1px;
2155
- display: flex;
2156
- flex: 1;
2157
- overflow: hidden;
2158
- }
2159
- .tox .tox-textarea {
2160
- -webkit-appearance: textarea;
2161
- -moz-appearance: textarea;
2162
- appearance: textarea;
2163
- white-space: pre-wrap;
2164
- }
2165
- .tox .tox-textarea-wrap .tox-textarea {
2166
- border: none;
2167
- }
2168
- .tox .tox-textarea-wrap .tox-textarea:focus {
2169
- border: none;
2170
- }
2171
- .tox-fullscreen {
2172
- border: 0;
2173
- height: 100%;
2174
- margin: 0;
2175
- overflow: hidden;
2176
- overscroll-behavior: none;
2177
- padding: 0;
2178
- touch-action: pinch-zoom;
2179
- width: 100%;
2180
- }
2181
- .tox.tox-tinymce.tox-fullscreen .tox-statusbar__resize-handle {
2182
- display: none;
2183
- }
2184
- .tox-shadowhost.tox-fullscreen,
2185
- .tox.tox-tinymce.tox-fullscreen {
2186
- left: 0;
2187
- position: fixed;
2188
- top: 0;
2189
- z-index: 1200;
2190
- }
2191
- .tox.tox-tinymce.tox-fullscreen {
2192
- background-color: transparent;
2193
- }
2194
- .tox-fullscreen .tox.tox-tinymce-aux,
2195
- .tox-fullscreen ~ .tox.tox-tinymce-aux {
2196
- z-index: 1201;
2197
- }
2198
- .tox .tox-help__more-link {
2199
- list-style: none;
2200
- margin-top: 1em;
2201
- }
2202
- .tox .tox-imagepreview {
2203
- background-color: #666;
2204
- height: 380px;
2205
- overflow: hidden;
2206
- position: relative;
2207
- width: 100%;
2208
- }
2209
- .tox .tox-imagepreview.tox-imagepreview__loaded {
2210
- overflow: auto;
2211
- }
2212
- .tox .tox-imagepreview__container {
2213
- display: flex;
2214
- left: 100vw;
2215
- position: absolute;
2216
- top: 100vw;
2217
- }
2218
- .tox .tox-imagepreview__image {
2219
- background: url(data:image/gif;base64,R0lGODdhDAAMAIABAMzMzP///ywAAAAADAAMAAACFoQfqYeabNyDMkBQb81Uat85nxguUAEAOw==);
2220
- }
2221
- .tox .tox-image-tools .tox-spacer {
2222
- flex: 1;
2223
- }
2224
- .tox .tox-image-tools .tox-bar {
2225
- align-items: center;
2226
- display: flex;
2227
- height: 60px;
2228
- justify-content: center;
2229
- }
2230
- .tox .tox-image-tools .tox-imagepreview,
2231
- .tox .tox-image-tools .tox-imagepreview + .tox-bar {
2232
- margin-top: 8px;
2233
- }
2234
- .tox .tox-image-tools .tox-croprect-block {
2235
- background: #000;
2236
- opacity: 0.5;
2237
- position: absolute;
2238
- zoom: 1;
2239
- }
2240
- .tox .tox-image-tools .tox-croprect-handle {
2241
- border: 2px solid #fff;
2242
- height: 20px;
2243
- left: 0;
2244
- position: absolute;
2245
- top: 0;
2246
- width: 20px;
2247
- }
2248
- .tox .tox-image-tools .tox-croprect-handle-move {
2249
- border: 0;
2250
- cursor: move;
2251
- position: absolute;
2252
- }
2253
- .tox .tox-image-tools .tox-croprect-handle-nw {
2254
- border-width: 2px 0 0 2px;
2255
- cursor: nw-resize;
2256
- left: 100px;
2257
- margin: -2px 0 0 -2px;
2258
- top: 100px;
2259
- }
2260
- .tox .tox-image-tools .tox-croprect-handle-ne {
2261
- border-width: 2px 2px 0 0;
2262
- cursor: ne-resize;
2263
- left: 200px;
2264
- margin: -2px 0 0 -20px;
2265
- top: 100px;
2266
- }
2267
- .tox .tox-image-tools .tox-croprect-handle-sw {
2268
- border-width: 0 0 2px 2px;
2269
- cursor: sw-resize;
2270
- left: 100px;
2271
- margin: -20px 2px 0 -2px;
2272
- top: 200px;
2273
- }
2274
- .tox .tox-image-tools .tox-croprect-handle-se {
2275
- border-width: 0 2px 2px 0;
2276
- cursor: se-resize;
2277
- left: 200px;
2278
- margin: -20px 0 0 -20px;
2279
- top: 200px;
2280
- }
2281
- .tox .tox-insert-table-picker {
2282
- display: flex;
2283
- flex-wrap: wrap;
2284
- width: 170px;
2285
- }
2286
- .tox .tox-insert-table-picker > div {
2287
- border-color: #eee;
2288
- border-style: solid;
2289
- border-width: 0 1px 1px 0;
2290
- box-sizing: border-box;
2291
- height: 17px;
2292
- width: 17px;
2293
- }
2294
- .tox .tox-collection--list .tox-collection__group .tox-insert-table-picker {
2295
- margin: -4px -4px;
2296
- }
2297
- .tox .tox-insert-table-picker .tox-insert-table-picker__selected {
2298
- background-color: rgba(0, 108, 231, 0.5);
2299
- border-color: rgba(0, 108, 231, 0.5);
2300
- }
2301
- .tox .tox-insert-table-picker__label {
2302
- color: rgba(34, 47, 62, 0.7);
2303
- display: block;
2304
- font-size: 14px;
2305
- padding: 4px;
2306
- text-align: center;
2307
- width: 100%;
2308
- }
2309
- .tox:not([dir=rtl]) .tox-insert-table-picker > div:nth-child(10n) {
2310
- border-right: 0;
2311
- }
2312
- .tox[dir=rtl] .tox-insert-table-picker > div:nth-child(10n+1) {
2313
- border-right: 0;
2314
- }
2315
- .tox .tox-menu {
2316
- background-color: #fff;
2317
- border: 1px solid transparent;
2318
- border-radius: 6px;
2319
- box-shadow: 0 0 2px 0 rgba(34, 47, 62, 0.2), 0 4px 8px 0 rgba(34, 47, 62, 0.15);
2320
- display: inline-block;
2321
- overflow: hidden;
2322
- vertical-align: top;
2323
- z-index: 1150;
2324
- }
2325
- .tox .tox-menu.tox-collection.tox-collection--list {
2326
- padding: 0 4px;
2327
- }
2328
- .tox .tox-menu.tox-collection.tox-collection--toolbar {
2329
- padding: 8px;
2330
- }
2331
- .tox .tox-menu.tox-collection.tox-collection--grid {
2332
- padding: 8px;
2333
- }
2334
- @media only screen and (min-width: 768px) {
2335
- .tox .tox-menu .tox-collection__item-label {
2336
- overflow-wrap: break-word;
2337
- word-break: normal;
2338
- }
2339
- .tox .tox-dialog__popups .tox-menu .tox-collection__item-label {
2340
- word-break: break-all;
2341
- }
2342
- }
2343
- .tox .tox-menu__label blockquote,
2344
- .tox .tox-menu__label code,
2345
- .tox .tox-menu__label h1,
2346
- .tox .tox-menu__label h2,
2347
- .tox .tox-menu__label h3,
2348
- .tox .tox-menu__label h4,
2349
- .tox .tox-menu__label h5,
2350
- .tox .tox-menu__label h6,
2351
- .tox .tox-menu__label p {
2352
- margin: 0;
2353
- }
2354
- .tox .tox-menubar {
2355
- background: repeating-linear-gradient(transparent 0 1px, transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;
2356
- background-color: #fff;
2357
- display: flex;
2358
- flex: 0 0 auto;
2359
- flex-shrink: 0;
2360
- flex-wrap: wrap;
2361
- grid-column: 1/-1;
2362
- grid-row: 1;
2363
- padding: 0 11px 0 12px;
2364
- }
2365
- .tox .tox-promotion + .tox-menubar {
2366
- grid-column: 1;
2367
- }
2368
- .tox .tox-promotion {
2369
- background: repeating-linear-gradient(transparent 0 1px, transparent 1px 39px) center top 39px/100% calc(100% - 39px) no-repeat;
2370
- background-color: #fff;
2371
- grid-column: 2;
2372
- grid-row: 1;
2373
- padding-inline-end: 8px;
2374
- padding-inline-start: 4px;
2375
- padding-top: 5px;
2376
- }
2377
- .tox .tox-promotion-link {
2378
- align-items: unsafe center;
2379
- background-color: #e8f1f8;
2380
- border-radius: 5px;
2381
- color: #086be6;
2382
- cursor: pointer;
2383
- display: flex;
2384
- font-size: 14px;
2385
- height: 26.6px;
2386
- padding: 4px 8px;
2387
- white-space: nowrap;
2388
- }
2389
- .tox .tox-promotion-link:hover {
2390
- background-color: #b4d7ff;
2391
- }
2392
- .tox .tox-promotion-link:focus {
2393
- background-color: #d9edf7;
2394
- }
2395
- .tox .tox-mbtn {
2396
- align-items: center;
2397
- background: 0 0;
2398
- border: 0;
2399
- border-radius: 3px;
2400
- box-shadow: none;
2401
- color: #222f3e;
2402
- display: flex;
2403
- flex: 0 0 auto;
2404
- font-size: 14px;
2405
- font-style: normal;
2406
- font-weight: 400;
2407
- height: 28px;
2408
- justify-content: center;
2409
- margin: 5px 1px 6px 0;
2410
- outline: 0;
2411
- overflow: hidden;
2412
- padding: 0 4px;
2413
- text-transform: none;
2414
- width: auto;
2415
- }
2416
- .tox .tox-mbtn[disabled] {
2417
- background-color: transparent;
2418
- border: 0;
2419
- box-shadow: none;
2420
- color: rgba(34, 47, 62, 0.5);
2421
- cursor: not-allowed;
2422
- }
2423
- .tox .tox-mbtn:focus:not(:disabled) {
2424
- background: #cce2fa;
2425
- border: 0;
2426
- box-shadow: none;
2427
- color: #222f3e;
2428
- }
2429
- .tox .tox-mbtn--active {
2430
- background: #a6ccf7;
2431
- border: 0;
2432
- box-shadow: none;
2433
- color: #222f3e;
2434
- }
2435
- .tox .tox-mbtn:hover:not(:disabled):not(.tox-mbtn--active) {
2436
- background: #cce2fa;
2437
- border: 0;
2438
- box-shadow: none;
2439
- color: #222f3e;
2440
- }
2441
- .tox .tox-mbtn__select-label {
2442
- cursor: default;
2443
- font-weight: 400;
2444
- margin: 0 4px;
2445
- }
2446
- .tox .tox-mbtn[disabled] .tox-mbtn__select-label {
2447
- cursor: not-allowed;
2448
- }
2449
- .tox .tox-mbtn__select-chevron {
2450
- align-items: center;
2451
- display: flex;
2452
- justify-content: center;
2453
- width: 16px;
2454
- display: none;
2455
- }
2456
- .tox .tox-notification {
2457
- border-radius: 6px;
2458
- border-style: solid;
2459
- border-width: 1px;
2460
- box-shadow: none;
2461
- box-sizing: border-box;
2462
- display: grid;
2463
- font-size: 14px;
2464
- font-weight: 400;
2465
- grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
2466
- margin-top: 4px;
2467
- opacity: 0;
2468
- padding: 4px;
2469
- transition: transform 0.1s ease-in, opacity 150ms ease-in;
2470
- }
2471
- .tox .tox-notification p {
2472
- font-size: 14px;
2473
- font-weight: 400;
2474
- }
2475
- .tox .tox-notification a {
2476
- cursor: pointer;
2477
- text-decoration: underline;
2478
- }
2479
- .tox .tox-notification--in {
2480
- opacity: 1;
2481
- }
2482
- .tox .tox-notification--success {
2483
- background-color: #e4eeda;
2484
- border-color: #d7e6c8;
2485
- color: #222f3e;
2486
- }
2487
- .tox .tox-notification--success p {
2488
- color: #222f3e;
2489
- }
2490
- .tox .tox-notification--success a {
2491
- color: #517342;
2492
- }
2493
- .tox .tox-notification--success svg {
2494
- fill: #222f3e;
2495
- }
2496
- .tox .tox-notification--error {
2497
- background-color: #f5cccc;
2498
- border-color: #f0b3b3;
2499
- color: #222f3e;
2500
- }
2501
- .tox .tox-notification--error p {
2502
- color: #222f3e;
2503
- }
2504
- .tox .tox-notification--error a {
2505
- color: #77181f;
2506
- }
2507
- .tox .tox-notification--error svg {
2508
- fill: #222f3e;
2509
- }
2510
- .tox .tox-notification--warn,
2511
- .tox .tox-notification--warning {
2512
- background-color: #fff5cc;
2513
- border-color: #fff0b3;
2514
- color: #222f3e;
2515
- }
2516
- .tox .tox-notification--warn p,
2517
- .tox .tox-notification--warning p {
2518
- color: #222f3e;
2519
- }
2520
- .tox .tox-notification--warn a,
2521
- .tox .tox-notification--warning a {
2522
- color: #7a6e25;
2523
- }
2524
- .tox .tox-notification--warn svg,
2525
- .tox .tox-notification--warning svg {
2526
- fill: #222f3e;
2527
- }
2528
- .tox .tox-notification--info {
2529
- background-color: #d6e7fb;
2530
- border-color: #c1dbf9;
2531
- color: #222f3e;
2532
- }
2533
- .tox .tox-notification--info p {
2534
- color: #222f3e;
2535
- }
2536
- .tox .tox-notification--info a {
2537
- color: #2a64a6;
2538
- }
2539
- .tox .tox-notification--info svg {
2540
- fill: #222f3e;
2541
- }
2542
- .tox .tox-notification__body {
2543
- align-self: center;
2544
- color: #222f3e;
2545
- font-size: 14px;
2546
- grid-column-end: 3;
2547
- grid-column-start: 2;
2548
- grid-row-end: 2;
2549
- grid-row-start: 1;
2550
- text-align: center;
2551
- white-space: normal;
2552
- word-break: break-all;
2553
- word-break: break-word;
2554
- }
2555
- .tox .tox-notification__body > * {
2556
- margin: 0;
2557
- }
2558
- .tox .tox-notification__body > * + * {
2559
- margin-top: 1rem;
2560
- }
2561
- .tox .tox-notification__icon {
2562
- align-self: center;
2563
- grid-column-end: 2;
2564
- grid-column-start: 1;
2565
- grid-row-end: 2;
2566
- grid-row-start: 1;
2567
- justify-self: end;
2568
- }
2569
- .tox .tox-notification__icon svg {
2570
- display: block;
2571
- }
2572
- .tox .tox-notification__dismiss {
2573
- align-self: start;
2574
- grid-column-end: 4;
2575
- grid-column-start: 3;
2576
- grid-row-end: 2;
2577
- grid-row-start: 1;
2578
- justify-self: end;
2579
- }
2580
- .tox .tox-notification .tox-progress-bar {
2581
- grid-column-end: 4;
2582
- grid-column-start: 1;
2583
- grid-row-end: 3;
2584
- grid-row-start: 2;
2585
- justify-self: center;
2586
- }
2587
- .tox .tox-pop {
2588
- display: inline-block;
2589
- position: relative;
2590
- }
2591
- .tox .tox-pop--resizing {
2592
- transition: width 0.1s ease;
2593
- }
2594
- .tox .tox-pop--resizing .tox-toolbar,
2595
- .tox .tox-pop--resizing .tox-toolbar__group {
2596
- flex-wrap: nowrap;
2597
- }
2598
- .tox .tox-pop--transition {
2599
- transition: 0.15s ease;
2600
- transition-property: left, right, top, bottom;
2601
- }
2602
- .tox .tox-pop--transition::after,
2603
- .tox .tox-pop--transition::before {
2604
- transition: all 0.15s, visibility 0s, opacity 75ms ease 75ms;
2605
- }
2606
- .tox .tox-pop__dialog {
2607
- background-color: #fff;
2608
- border: 1px solid #eee;
2609
- border-radius: 6px;
2610
- box-shadow: 0 0 2px 0 rgba(34, 47, 62, 0.2), 0 4px 8px 0 rgba(34, 47, 62, 0.15);
2611
- min-width: 0;
2612
- overflow: hidden;
2613
- }
2614
- .tox .tox-pop__dialog > :not(.tox-toolbar) {
2615
- margin: 4px 4px 4px 8px;
2616
- }
2617
- .tox .tox-pop__dialog .tox-toolbar {
2618
- background-color: transparent;
2619
- margin-bottom: -1px;
2620
- }
2621
- .tox .tox-pop::after,
2622
- .tox .tox-pop::before {
2623
- border-style: solid;
2624
- content: '';
2625
- display: block;
2626
- height: 0;
2627
- opacity: 1;
2628
- position: absolute;
2629
- width: 0;
2630
- }
2631
- .tox .tox-pop.tox-pop--inset::after,
2632
- .tox .tox-pop.tox-pop--inset::before {
2633
- opacity: 0;
2634
- transition: all 0s 0.15s, visibility 0s, opacity 75ms ease;
2635
- }
2636
- .tox .tox-pop.tox-pop--bottom::after,
2637
- .tox .tox-pop.tox-pop--bottom::before {
2638
- left: 50%;
2639
- top: 100%;
2640
- }
2641
- .tox .tox-pop.tox-pop--bottom::after {
2642
- border-color: #fff transparent transparent transparent;
2643
- border-width: 8px;
2644
- margin-left: -8px;
2645
- margin-top: -1px;
2646
- }
2647
- .tox .tox-pop.tox-pop--bottom::before {
2648
- border-color: #eee transparent transparent transparent;
2649
- border-width: 9px;
2650
- margin-left: -9px;
2651
- }
2652
- .tox .tox-pop.tox-pop--top::after,
2653
- .tox .tox-pop.tox-pop--top::before {
2654
- left: 50%;
2655
- top: 0;
2656
- transform: translateY(-100%);
2657
- }
2658
- .tox .tox-pop.tox-pop--top::after {
2659
- border-color: transparent transparent #fff transparent;
2660
- border-width: 8px;
2661
- margin-left: -8px;
2662
- margin-top: 1px;
2663
- }
2664
- .tox .tox-pop.tox-pop--top::before {
2665
- border-color: transparent transparent #eee transparent;
2666
- border-width: 9px;
2667
- margin-left: -9px;
2668
- }
2669
- .tox .tox-pop.tox-pop--left::after,
2670
- .tox .tox-pop.tox-pop--left::before {
2671
- left: 0;
2672
- top: calc(50% - 1px);
2673
- transform: translateY(-50%);
2674
- }
2675
- .tox .tox-pop.tox-pop--left::after {
2676
- border-color: transparent #fff transparent transparent;
2677
- border-width: 8px;
2678
- margin-left: -15px;
2679
- }
2680
- .tox .tox-pop.tox-pop--left::before {
2681
- border-color: transparent #eee transparent transparent;
2682
- border-width: 10px;
2683
- margin-left: -19px;
2684
- }
2685
- .tox .tox-pop.tox-pop--right::after,
2686
- .tox .tox-pop.tox-pop--right::before {
2687
- left: 100%;
2688
- top: calc(50% + 1px);
2689
- transform: translateY(-50%);
2690
- }
2691
- .tox .tox-pop.tox-pop--right::after {
2692
- border-color: transparent transparent transparent #fff;
2693
- border-width: 8px;
2694
- margin-left: -1px;
2695
- }
2696
- .tox .tox-pop.tox-pop--right::before {
2697
- border-color: transparent transparent transparent #eee;
2698
- border-width: 10px;
2699
- margin-left: -1px;
2700
- }
2701
- .tox .tox-pop.tox-pop--align-left::after,
2702
- .tox .tox-pop.tox-pop--align-left::before {
2703
- left: 20px;
2704
- }
2705
- .tox .tox-pop.tox-pop--align-right::after,
2706
- .tox .tox-pop.tox-pop--align-right::before {
2707
- left: calc(100% - 20px);
2708
- }
2709
- .tox .tox-sidebar-wrap {
2710
- display: flex;
2711
- flex-direction: row;
2712
- flex-grow: 1;
2713
- min-height: 0;
2714
- }
2715
- .tox .tox-sidebar {
2716
- background-color: #fff;
2717
- display: flex;
2718
- flex-direction: row;
2719
- justify-content: flex-end;
2720
- }
2721
- .tox .tox-sidebar__slider {
2722
- display: flex;
2723
- overflow: hidden;
2724
- }
2725
- .tox .tox-sidebar__pane-container {
2726
- display: flex;
2727
- }
2728
- .tox .tox-sidebar__pane {
2729
- display: flex;
2730
- }
2731
- .tox .tox-sidebar--sliding-closed {
2732
- opacity: 0;
2733
- }
2734
- .tox .tox-sidebar--sliding-open {
2735
- opacity: 1;
2736
- }
2737
- .tox .tox-sidebar--sliding-growing,
2738
- .tox .tox-sidebar--sliding-shrinking {
2739
- transition: width 0.5s ease, opacity 0.5s ease;
2740
- }
2741
- .tox .tox-selector {
2742
- background-color: #4099ff;
2743
- border-color: #4099ff;
2744
- border-style: solid;
2745
- border-width: 1px;
2746
- box-sizing: border-box;
2747
- display: inline-block;
2748
- height: 10px;
2749
- position: absolute;
2750
- width: 10px;
2751
- }
2752
- .tox.tox-platform-touch .tox-selector {
2753
- height: 12px;
2754
- width: 12px;
2755
- }
2756
- .tox .tox-slider {
2757
- align-items: center;
2758
- display: flex;
2759
- flex: 1;
2760
- height: 24px;
2761
- justify-content: center;
2762
- position: relative;
2763
- }
2764
- .tox .tox-slider__rail {
2765
- background-color: transparent;
2766
- border: 1px solid #eee;
2767
- border-radius: 6px;
2768
- height: 10px;
2769
- min-width: 120px;
2770
- width: 100%;
2771
- }
2772
- .tox .tox-slider__handle {
2773
- background-color: #006ce7;
2774
- border: 2px solid #0054b4;
2775
- border-radius: 6px;
2776
- box-shadow: none;
2777
- height: 24px;
2778
- left: 50%;
2779
- position: absolute;
2780
- top: 50%;
2781
- transform: translateX(-50%) translateY(-50%);
2782
- width: 14px;
2783
- }
2784
- .tox .tox-form__controls-h-stack > .tox-slider:not(:first-of-type) {
2785
- margin-inline-start: 8px;
2786
- }
2787
- .tox .tox-form__controls-h-stack > .tox-form__group + .tox-slider {
2788
- margin-inline-start: 32px;
2789
- }
2790
- .tox .tox-form__controls-h-stack > .tox-slider + .tox-form__group {
2791
- margin-inline-start: 32px;
2792
- }
2793
- .tox .tox-source-code {
2794
- overflow: auto;
2795
- }
2796
- .tox .tox-spinner {
2797
- display: flex;
2798
- }
2799
- .tox .tox-spinner > div {
2800
- animation: tam-bouncing-dots 1.5s ease-in-out 0s infinite both;
2801
- background-color: rgba(34, 47, 62, 0.7);
2802
- border-radius: 100%;
2803
- height: 8px;
2804
- width: 8px;
2805
- }
2806
- .tox .tox-spinner > div:nth-child(1) {
2807
- animation-delay: -0.32s;
2808
- }
2809
- .tox .tox-spinner > div:nth-child(2) {
2810
- animation-delay: -0.16s;
2811
- }
2812
- @keyframes tam-bouncing-dots {
2813
- 0%,
2814
- 100%,
2815
- 80% {
2816
- transform: scale(0);
2817
- }
2818
- 40% {
2819
- transform: scale(1);
2820
- }
2821
- }
2822
- .tox:not([dir=rtl]) .tox-spinner > div:not(:first-child) {
2823
- margin-left: 4px;
2824
- }
2825
- .tox[dir=rtl] .tox-spinner > div:not(:first-child) {
2826
- margin-right: 4px;
2827
- }
2828
- .tox .tox-statusbar {
2829
- align-items: center;
2830
- background-color: #fff;
2831
- border-top: 1px solid #e3e3e3;
2832
- color: rgba(34, 47, 62, 0.7);
2833
- display: flex;
2834
- flex: 0 0 auto;
2835
- font-size: 14px;
2836
- font-weight: 400;
2837
- height: 25px;
2838
- overflow: hidden;
2839
- padding: 0 8px;
2840
- position: relative;
2841
- text-transform: none;
2842
- }
2843
- .tox .tox-statusbar__path {
2844
- display: flex;
2845
- flex: 1 1 auto;
2846
- overflow: hidden;
2847
- text-overflow: ellipsis;
2848
- white-space: nowrap;
2849
- }
2850
- .tox .tox-statusbar__right-container {
2851
- display: flex;
2852
- justify-content: flex-end;
2853
- white-space: nowrap;
2854
- }
2855
- .tox .tox-statusbar__help-text {
2856
- text-align: center;
2857
- }
2858
- .tox .tox-statusbar__text-container {
2859
- display: flex;
2860
- flex: 1 1 auto;
2861
- justify-content: space-between;
2862
- overflow: hidden;
2863
- }
2864
- @media only screen and (min-width: 768px) {
2865
- .tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols > .tox-statusbar__help-text,
2866
- .tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols > .tox-statusbar__path,
2867
- .tox .tox-statusbar__text-container.tox-statusbar__text-container-3-cols > .tox-statusbar__right-container {
2868
- flex: 0 0 calc(100% / 3);
2869
- }
2870
- }
2871
- .tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-end {
2872
- justify-content: flex-end;
2873
- }
2874
- .tox .tox-statusbar__text-container.tox-statusbar__text-container--flex-start {
2875
- justify-content: flex-start;
2876
- }
2877
- .tox .tox-statusbar__text-container.tox-statusbar__text-container--space-around {
2878
- justify-content: space-around;
2879
- }
2880
- .tox .tox-statusbar__path > * {
2881
- display: inline;
2882
- white-space: nowrap;
2883
- }
2884
- .tox .tox-statusbar__wordcount {
2885
- flex: 0 0 auto;
2886
- margin-left: 1ch;
2887
- }
2888
- @media only screen and (max-width: 767px) {
2889
- .tox .tox-statusbar__text-container .tox-statusbar__help-text {
2890
- display: none;
2891
- }
2892
- .tox .tox-statusbar__text-container .tox-statusbar__help-text:only-child {
2893
- display: block;
2894
- }
2895
- }
2896
- .tox .tox-statusbar a,
2897
- .tox .tox-statusbar__path-item,
2898
- .tox .tox-statusbar__wordcount {
2899
- color: rgba(34, 47, 62, 0.7);
2900
- text-decoration: none;
2901
- }
2902
- .tox .tox-statusbar a:focus:not(:disabled):not([aria-disabled=true]),
2903
- .tox .tox-statusbar a:hover:not(:disabled):not([aria-disabled=true]),
2904
- .tox .tox-statusbar__path-item:focus:not(:disabled):not([aria-disabled=true]),
2905
- .tox .tox-statusbar__path-item:hover:not(:disabled):not([aria-disabled=true]),
2906
- .tox .tox-statusbar__wordcount:focus:not(:disabled):not([aria-disabled=true]),
2907
- .tox .tox-statusbar__wordcount:hover:not(:disabled):not([aria-disabled=true]) {
2908
- color: #222f3e;
2909
- cursor: pointer;
2910
- }
2911
- .tox .tox-statusbar__branding svg {
2912
- fill: rgba(34, 47, 62, 0.8);
2913
- height: 1.14em;
2914
- vertical-align: -0.28em;
2915
- width: 3.6em;
2916
- }
2917
- .tox .tox-statusbar__branding a:focus:not(:disabled):not([aria-disabled=true]) svg,
2918
- .tox .tox-statusbar__branding a:hover:not(:disabled):not([aria-disabled=true]) svg {
2919
- fill: #222f3e;
2920
- }
2921
- .tox .tox-statusbar__resize-handle {
2922
- align-items: flex-end;
2923
- align-self: stretch;
2924
- cursor: nwse-resize;
2925
- display: flex;
2926
- flex: 0 0 auto;
2927
- justify-content: flex-end;
2928
- margin-left: auto;
2929
- margin-right: -8px;
2930
- padding-bottom: 3px;
2931
- padding-left: 1ch;
2932
- padding-right: 3px;
2933
- }
2934
- .tox .tox-statusbar__resize-handle svg {
2935
- display: block;
2936
- fill: rgba(34, 47, 62, 0.5);
2937
- }
2938
- .tox .tox-statusbar__resize-handle:focus svg {
2939
- background-color: #dee0e2;
2940
- border-radius: 1px 1px 5px 1px;
2941
- box-shadow: 0 0 0 2px #dee0e2;
2942
- }
2943
- .tox:not([dir=rtl]) .tox-statusbar__path > * {
2944
- margin-right: 4px;
2945
- }
2946
- .tox:not([dir=rtl]) .tox-statusbar__branding {
2947
- margin-left: 2ch;
2948
- }
2949
- .tox[dir=rtl] .tox-statusbar {
2950
- flex-direction: row-reverse;
2951
- }
2952
- .tox[dir=rtl] .tox-statusbar__path > * {
2953
- margin-left: 4px;
2954
- }
2955
- .tox .tox-throbber {
2956
- z-index: 1299;
2957
- }
2958
- .tox .tox-throbber__busy-spinner {
2959
- align-items: center;
2960
- background-color: rgba(255, 255, 255, 0.6);
2961
- bottom: 0;
2962
- display: flex;
2963
- justify-content: center;
2964
- left: 0;
2965
- position: absolute;
2966
- right: 0;
2967
- top: 0;
2968
- }
2969
- .tox .tox-tbtn {
2970
- align-items: center;
2971
- background: 0 0;
2972
- border: 0;
2973
- border-radius: 3px;
2974
- box-shadow: none;
2975
- color: #222f3e;
2976
- display: flex;
2977
- flex: 0 0 auto;
2978
- font-size: 14px;
2979
- font-style: normal;
2980
- font-weight: 400;
2981
- height: 28px;
2982
- justify-content: center;
2983
- margin: 6px 1px 5px 0;
2984
- outline: 0;
2985
- overflow: hidden;
2986
- padding: 0;
2987
- text-transform: none;
2988
- width: 34px;
2989
- }
2990
- .tox .tox-tbtn svg {
2991
- display: block;
2992
- fill: #222f3e;
2993
- }
2994
- .tox .tox-tbtn.tox-tbtn-more {
2995
- padding-left: 5px;
2996
- padding-right: 5px;
2997
- width: inherit;
2998
- }
2999
- .tox .tox-tbtn:focus {
3000
- background: #cce2fa;
3001
- border: 0;
3002
- box-shadow: none;
3003
- }
3004
- .tox .tox-tbtn:hover {
3005
- background: #cce2fa;
3006
- border: 0;
3007
- box-shadow: none;
3008
- color: #222f3e;
3009
- }
3010
- .tox .tox-tbtn:hover svg {
3011
- fill: #222f3e;
3012
- }
3013
- .tox .tox-tbtn:active {
3014
- background: #a6ccf7;
3015
- border: 0;
3016
- box-shadow: none;
3017
- color: #222f3e;
3018
- }
3019
- .tox .tox-tbtn:active svg {
3020
- fill: #222f3e;
3021
- }
3022
- .tox .tox-tbtn--disabled .tox-tbtn--enabled svg {
3023
- fill: rgba(34, 47, 62, 0.5);
3024
- }
3025
- .tox .tox-tbtn--disabled,
3026
- .tox .tox-tbtn--disabled:hover,
3027
- .tox .tox-tbtn:disabled,
3028
- .tox .tox-tbtn:disabled:hover {
3029
- background: 0 0;
3030
- border: 0;
3031
- box-shadow: none;
3032
- color: rgba(34, 47, 62, 0.5);
3033
- cursor: not-allowed;
3034
- }
3035
- .tox .tox-tbtn--disabled svg,
3036
- .tox .tox-tbtn--disabled:hover svg,
3037
- .tox .tox-tbtn:disabled svg,
3038
- .tox .tox-tbtn:disabled:hover svg {
3039
- fill: rgba(34, 47, 62, 0.5);
3040
- }
3041
- .tox .tox-tbtn--enabled,
3042
- .tox .tox-tbtn--enabled:hover {
3043
- background: #a6ccf7;
3044
- border: 0;
3045
- box-shadow: none;
3046
- color: #222f3e;
3047
- }
3048
- .tox .tox-tbtn--enabled:hover > *,
3049
- .tox .tox-tbtn--enabled > * {
3050
- transform: none;
3051
- }
3052
- .tox .tox-tbtn--enabled svg,
3053
- .tox .tox-tbtn--enabled:hover svg {
3054
- fill: #222f3e;
3055
- }
3056
- .tox .tox-tbtn--enabled.tox-tbtn--disabled svg,
3057
- .tox .tox-tbtn--enabled:hover.tox-tbtn--disabled svg {
3058
- fill: rgba(34, 47, 62, 0.5);
3059
- }
3060
- .tox .tox-tbtn:focus:not(.tox-tbtn--disabled) {
3061
- color: #222f3e;
3062
- }
3063
- .tox .tox-tbtn:focus:not(.tox-tbtn--disabled) svg {
3064
- fill: #222f3e;
3065
- }
3066
- .tox .tox-tbtn:active > * {
3067
- transform: none;
3068
- }
3069
- .tox .tox-tbtn--md {
3070
- height: 42px;
3071
- width: 51px;
3072
- }
3073
- .tox .tox-tbtn--lg {
3074
- flex-direction: column;
3075
- height: 56px;
3076
- width: 68px;
3077
- }
3078
- .tox .tox-tbtn--return {
3079
- align-self: stretch;
3080
- height: unset;
3081
- width: 16px;
3082
- }
3083
- .tox .tox-tbtn--labeled {
3084
- padding: 0 4px;
3085
- width: unset;
3086
- }
3087
- .tox .tox-tbtn__vlabel {
3088
- display: block;
3089
- font-size: 10px;
3090
- font-weight: 400;
3091
- letter-spacing: -0.025em;
3092
- margin-bottom: 4px;
3093
- white-space: nowrap;
3094
- }
3095
- .tox .tox-number-input {
3096
- border-radius: 3px;
3097
- display: flex;
3098
- margin: 6px 1px 5px 0;
3099
- padding: 0 4px;
3100
- width: auto;
3101
- }
3102
- .tox .tox-number-input .tox-input-wrapper {
3103
- background: #f7f7f7;
3104
- display: flex;
3105
- pointer-events: none;
3106
- text-align: center;
3107
- }
3108
- .tox .tox-number-input .tox-input-wrapper:focus {
3109
- background: #cce2fa;
3110
- }
3111
- .tox .tox-number-input input {
3112
- border-radius: 3px;
3113
- color: #222f3e;
3114
- font-size: 14px;
3115
- margin: 2px 0;
3116
- pointer-events: all;
3117
- width: 60px;
3118
- }
3119
- .tox .tox-number-input input:hover {
3120
- background: #cce2fa;
3121
- color: #222f3e;
3122
- }
3123
- .tox .tox-number-input input:focus {
3124
- background: #fff;
3125
- color: #222f3e;
3126
- }
3127
- .tox .tox-number-input input:disabled {
3128
- background: 0 0;
3129
- border: 0;
3130
- box-shadow: none;
3131
- color: rgba(34, 47, 62, 0.5);
3132
- cursor: not-allowed;
3133
- }
3134
- .tox .tox-number-input button {
3135
- background: #f7f7f7;
3136
- color: #222f3e;
3137
- height: 28px;
3138
- text-align: center;
3139
- width: 24px;
3140
- }
3141
- .tox .tox-number-input button svg {
3142
- display: block;
3143
- fill: #222f3e;
3144
- margin: 0 auto;
3145
- transform: scale(0.67);
3146
- }
3147
- .tox .tox-number-input button:focus {
3148
- background: #cce2fa;
3149
- }
3150
- .tox .tox-number-input button:hover {
3151
- background: #cce2fa;
3152
- border: 0;
3153
- box-shadow: none;
3154
- color: #222f3e;
3155
- }
3156
- .tox .tox-number-input button:hover svg {
3157
- fill: #222f3e;
3158
- }
3159
- .tox .tox-number-input button:active {
3160
- background: #a6ccf7;
3161
- border: 0;
3162
- box-shadow: none;
3163
- color: #222f3e;
3164
- }
3165
- .tox .tox-number-input button:active svg {
3166
- fill: #222f3e;
3167
- }
3168
- .tox .tox-number-input button:disabled {
3169
- background: 0 0;
3170
- border: 0;
3171
- box-shadow: none;
3172
- color: rgba(34, 47, 62, 0.5);
3173
- cursor: not-allowed;
3174
- }
3175
- .tox .tox-number-input button:disabled svg {
3176
- fill: rgba(34, 47, 62, 0.5);
3177
- }
3178
- .tox .tox-number-input button.minus {
3179
- border-radius: 3px 0 0 3px;
3180
- }
3181
- .tox .tox-number-input button.plus {
3182
- border-radius: 0 3px 3px 0;
3183
- }
3184
- .tox .tox-number-input:focus:not(:active) > .tox-input-wrapper,
3185
- .tox .tox-number-input:focus:not(:active) > button {
3186
- background: #cce2fa;
3187
- }
3188
- .tox .tox-tbtn--select {
3189
- margin: 6px 1px 5px 0;
3190
- padding: 0 4px;
3191
- width: auto;
3192
- }
3193
- .tox .tox-tbtn__select-label {
3194
- cursor: default;
3195
- font-weight: 400;
3196
- height: initial;
3197
- margin: 0 4px;
3198
- overflow: hidden;
3199
- text-overflow: ellipsis;
3200
- white-space: nowrap;
3201
- }
3202
- .tox .tox-tbtn__select-chevron {
3203
- align-items: center;
3204
- display: flex;
3205
- justify-content: center;
3206
- width: 16px;
3207
- }
3208
- .tox .tox-tbtn__select-chevron svg {
3209
- fill: rgba(34, 47, 62, 0.5);
3210
- }
3211
- .tox .tox-tbtn--bespoke {
3212
- background: #f7f7f7;
3213
- }
3214
- .tox .tox-tbtn--bespoke + .tox-tbtn--bespoke {
3215
- margin-inline-start: 4px;
3216
- }
3217
- .tox .tox-tbtn--bespoke .tox-tbtn__select-label {
3218
- overflow: hidden;
3219
- text-overflow: ellipsis;
3220
- white-space: nowrap;
3221
- width: 7em;
3222
- }
3223
- .tox .tox-tbtn--disabled .tox-tbtn__select-label,
3224
- .tox .tox-tbtn--select:disabled .tox-tbtn__select-label {
3225
- cursor: not-allowed;
3226
- }
3227
- .tox .tox-split-button {
3228
- border: 0;
3229
- border-radius: 3px;
3230
- box-sizing: border-box;
3231
- display: flex;
3232
- margin: 6px 1px 5px 0;
3233
- overflow: hidden;
3234
- }
3235
- .tox .tox-split-button:hover {
3236
- box-shadow: 0 0 0 1px #cce2fa inset;
3237
- }
3238
- .tox .tox-split-button:focus {
3239
- background: #cce2fa;
3240
- box-shadow: none;
3241
- color: #222f3e;
3242
- }
3243
- .tox .tox-split-button > * {
3244
- border-radius: 0;
3245
- }
3246
- .tox .tox-split-button__chevron {
3247
- width: 16px;
3248
- }
3249
- .tox .tox-split-button__chevron svg {
3250
- fill: rgba(34, 47, 62, 0.5);
3251
- }
3252
- .tox .tox-split-button .tox-tbtn {
3253
- margin: 0;
3254
- }
3255
- .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:focus,
3256
- .tox .tox-split-button.tox-tbtn--disabled .tox-tbtn:hover,
3257
- .tox .tox-split-button.tox-tbtn--disabled:focus,
3258
- .tox .tox-split-button.tox-tbtn--disabled:hover {
3259
- background: 0 0;
3260
- box-shadow: none;
3261
- color: rgba(34, 47, 62, 0.5);
3262
- }
3263
- .tox.tox-platform-touch .tox-split-button .tox-tbtn--select {
3264
- padding: 0 0;
3265
- }
3266
- .tox.tox-platform-touch .tox-split-button .tox-tbtn:not(.tox-tbtn--select):first-child {
3267
- width: 30px;
3268
- }
3269
- .tox.tox-platform-touch .tox-split-button__chevron {
3270
- width: 20px;
3271
- }
3272
- .tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-highlight-bg-color__color,
3273
- .tox .tox-split-button.tox-tbtn--disabled svg #tox-icon-text-color__color {
3274
- opacity: 0.6;
3275
- }
3276
- .tox .tox-toolbar-overlord {
3277
- background-color: #fff;
3278
- }
3279
- .tox .tox-toolbar,
3280
- .tox .tox-toolbar__overflow,
3281
- .tox .tox-toolbar__primary {
3282
- background-attachment: local;
3283
- background-color: #fff;
3284
- background-image: repeating-linear-gradient(#e3e3e3 0 1px, transparent 1px 39px);
3285
- background-position: center top 40px;
3286
- background-repeat: no-repeat;
3287
- background-size: calc(100% - 11px * 2) calc(100% - 41px);
3288
- display: flex;
3289
- flex: 0 0 auto;
3290
- flex-shrink: 0;
3291
- flex-wrap: wrap;
3292
- padding: 0 0;
3293
- transform: perspective(1px);
3294
- }
3295
- .tox .tox-toolbar-overlord > .tox-toolbar,
3296
- .tox .tox-toolbar-overlord > .tox-toolbar__overflow,
3297
- .tox .tox-toolbar-overlord > .tox-toolbar__primary {
3298
- background-position: center top 0;
3299
- background-size: calc(100% - 11px * 2) calc(100% - 0px);
3300
- }
3301
- .tox .tox-toolbar__overflow.tox-toolbar__overflow--closed {
3302
- height: 0;
3303
- opacity: 0;
3304
- padding-bottom: 0;
3305
- padding-top: 0;
3306
- visibility: hidden;
3307
- }
3308
- .tox .tox-toolbar__overflow--growing {
3309
- transition: height 0.3s ease, opacity 0.2s linear 0.1s;
3310
- }
3311
- .tox .tox-toolbar__overflow--shrinking {
3312
- transition: opacity 0.3s ease, height 0.2s linear 0.1s, visibility 0s linear 0.3s;
3313
- }
3314
- .tox .tox-anchorbar,
3315
- .tox .tox-toolbar-overlord {
3316
- grid-column: 1/-1;
3317
- }
3318
- .tox .tox-menubar + .tox-toolbar,
3319
- .tox .tox-menubar + .tox-toolbar-overlord {
3320
- border-top: 1px solid transparent;
3321
- margin-top: -1px;
3322
- padding-bottom: 1px;
3323
- padding-top: 1px;
3324
- }
3325
- .tox .tox-toolbar--scrolling {
3326
- flex-wrap: nowrap;
3327
- overflow-x: auto;
3328
- }
3329
- .tox .tox-pop .tox-toolbar {
3330
- border-width: 0;
3331
- }
3332
- .tox .tox-toolbar--no-divider {
3333
- background-image: none;
3334
- }
3335
- .tox .tox-toolbar-overlord .tox-toolbar:not(.tox-toolbar--scrolling):first-child,
3336
- .tox .tox-toolbar-overlord .tox-toolbar__primary {
3337
- background-position: center top 39px;
3338
- }
3339
- .tox .tox-editor-header > .tox-toolbar--scrolling,
3340
- .tox .tox-toolbar-overlord .tox-toolbar--scrolling:first-child {
3341
- background-image: none;
3342
- }
3343
- .tox.tox-tinymce-aux .tox-toolbar__overflow {
3344
- background-color: #fff;
3345
- background-position: center top 43px;
3346
- background-size: calc(100% - 8px * 2) calc(100% - 51px);
3347
- border: none;
3348
- border-radius: 6px;
3349
- box-shadow: 0 0 2px 0 rgba(34, 47, 62, 0.2), 0 4px 8px 0 rgba(34, 47, 62, 0.15);
3350
- overscroll-behavior: none;
3351
- padding: 4px 0;
3352
- }
3353
- .tox-pop .tox-pop__dialog .tox-toolbar {
3354
- background-position: center top 43px;
3355
- background-size: calc(100% - 11px * 2) calc(100% - 51px);
3356
- padding: 4px 0;
3357
- }
3358
- .tox .tox-toolbar__group {
3359
- align-items: center;
3360
- display: flex;
3361
- flex-wrap: wrap;
3362
- margin: 0 0;
3363
- padding: 0 11px 0 12px;
3364
- }
3365
- .tox .tox-toolbar__group--pull-right {
3366
- margin-left: auto;
3367
- }
3368
- .tox .tox-toolbar--scrolling .tox-toolbar__group {
3369
- flex-shrink: 0;
3370
- flex-wrap: nowrap;
3371
- }
3372
- .tox:not([dir=rtl]) .tox-toolbar__group:not(:last-of-type) {
3373
- border-right: 1px solid transparent;
3374
- }
3375
- .tox[dir=rtl] .tox-toolbar__group:not(:last-of-type) {
3376
- border-left: 1px solid transparent;
3377
- }
3378
- .tox .tox-tooltip {
3379
- display: inline-block;
3380
- padding: 8px;
3381
- position: relative;
3382
- }
3383
- .tox .tox-tooltip__body {
3384
- background-color: #222f3e;
3385
- border-radius: 6px;
3386
- box-shadow: 0 2px 4px rgba(34, 47, 62, 0.3);
3387
- color: rgba(255, 255, 255, 0.75);
3388
- font-size: 14px;
3389
- font-style: normal;
3390
- font-weight: 400;
3391
- padding: 4px 8px;
3392
- text-transform: none;
3393
- }
3394
- .tox .tox-tooltip__arrow {
3395
- position: absolute;
3396
- }
3397
- .tox .tox-tooltip--down .tox-tooltip__arrow {
3398
- border-left: 8px solid transparent;
3399
- border-right: 8px solid transparent;
3400
- border-top: 8px solid #222f3e;
3401
- bottom: 0;
3402
- left: 50%;
3403
- position: absolute;
3404
- transform: translateX(-50%);
3405
- }
3406
- .tox .tox-tooltip--up .tox-tooltip__arrow {
3407
- border-bottom: 8px solid #222f3e;
3408
- border-left: 8px solid transparent;
3409
- border-right: 8px solid transparent;
3410
- left: 50%;
3411
- position: absolute;
3412
- top: 0;
3413
- transform: translateX(-50%);
3414
- }
3415
- .tox .tox-tooltip--right .tox-tooltip__arrow {
3416
- border-bottom: 8px solid transparent;
3417
- border-left: 8px solid #222f3e;
3418
- border-top: 8px solid transparent;
3419
- position: absolute;
3420
- right: 0;
3421
- top: 50%;
3422
- transform: translateY(-50%);
3423
- }
3424
- .tox .tox-tooltip--left .tox-tooltip__arrow {
3425
- border-bottom: 8px solid transparent;
3426
- border-right: 8px solid #222f3e;
3427
- border-top: 8px solid transparent;
3428
- left: 0;
3429
- position: absolute;
3430
- top: 50%;
3431
- transform: translateY(-50%);
3432
- }
3433
- .tox .tox-tree {
3434
- display: flex;
3435
- flex-direction: column;
3436
- }
3437
- .tox .tox-tree .tox-trbtn {
3438
- align-items: center;
3439
- background: 0 0;
3440
- border: 0;
3441
- border-radius: 4px;
3442
- box-shadow: none;
3443
- color: #222f3e;
3444
- display: flex;
3445
- flex: 0 0 auto;
3446
- font-size: 14px;
3447
- font-style: normal;
3448
- font-weight: 400;
3449
- height: 28px;
3450
- margin-bottom: 4px;
3451
- margin-top: 4px;
3452
- outline: 0;
3453
- overflow: hidden;
3454
- padding: 0;
3455
- padding-left: 8px;
3456
- text-transform: none;
3457
- }
3458
- .tox .tox-tree .tox-trbtn .tox-tree__label {
3459
- cursor: default;
3460
- overflow: hidden;
3461
- text-overflow: ellipsis;
3462
- white-space: nowrap;
3463
- }
3464
- .tox .tox-tree .tox-trbtn svg {
3465
- display: block;
3466
- fill: #222f3e;
3467
- }
3468
- .tox .tox-tree .tox-trbtn:focus {
3469
- background: #cce2fa;
3470
- border: 0;
3471
- box-shadow: none;
3472
- }
3473
- .tox .tox-tree .tox-trbtn:hover {
3474
- background: #cce2fa;
3475
- border: 0;
3476
- box-shadow: none;
3477
- color: #222f3e;
3478
- }
3479
- .tox .tox-tree .tox-trbtn:hover svg {
3480
- fill: #222f3e;
3481
- }
3482
- .tox .tox-tree .tox-trbtn:active {
3483
- background: #a6ccf7;
3484
- border: 0;
3485
- box-shadow: none;
3486
- color: #222f3e;
3487
- }
3488
- .tox .tox-tree .tox-trbtn:active svg {
3489
- fill: #222f3e;
3490
- }
3491
- .tox .tox-tree .tox-trbtn--disabled,
3492
- .tox .tox-tree .tox-trbtn--disabled:hover,
3493
- .tox .tox-tree .tox-trbtn:disabled,
3494
- .tox .tox-tree .tox-trbtn:disabled:hover {
3495
- background: 0 0;
3496
- border: 0;
3497
- box-shadow: none;
3498
- color: rgba(34, 47, 62, 0.5);
3499
- cursor: not-allowed;
3500
- }
3501
- .tox .tox-tree .tox-trbtn--disabled svg,
3502
- .tox .tox-tree .tox-trbtn--disabled:hover svg,
3503
- .tox .tox-tree .tox-trbtn:disabled svg,
3504
- .tox .tox-tree .tox-trbtn:disabled:hover svg {
3505
- fill: rgba(34, 47, 62, 0.5);
3506
- }
3507
- .tox .tox-tree .tox-trbtn--enabled,
3508
- .tox .tox-tree .tox-trbtn--enabled:hover {
3509
- background: #a6ccf7;
3510
- border: 0;
3511
- box-shadow: none;
3512
- color: #222f3e;
3513
- }
3514
- .tox .tox-tree .tox-trbtn--enabled:hover > *,
3515
- .tox .tox-tree .tox-trbtn--enabled > * {
3516
- transform: none;
3517
- }
3518
- .tox .tox-tree .tox-trbtn--enabled svg,
3519
- .tox .tox-tree .tox-trbtn--enabled:hover svg {
3520
- fill: #222f3e;
3521
- }
3522
- .tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) {
3523
- color: #222f3e;
3524
- }
3525
- .tox .tox-tree .tox-trbtn:focus:not(.tox-trbtn--disabled) svg {
3526
- fill: #222f3e;
3527
- }
3528
- .tox .tox-tree .tox-trbtn:active > * {
3529
- transform: none;
3530
- }
3531
- .tox .tox-tree .tox-trbtn--return {
3532
- align-self: stretch;
3533
- height: unset;
3534
- width: 16px;
3535
- }
3536
- .tox .tox-tree .tox-trbtn--labeled {
3537
- padding: 0 4px;
3538
- width: unset;
3539
- }
3540
- .tox .tox-tree .tox-trbtn__vlabel {
3541
- display: block;
3542
- font-size: 10px;
3543
- font-weight: 400;
3544
- letter-spacing: -0.025em;
3545
- margin-bottom: 4px;
3546
- white-space: nowrap;
3547
- }
3548
- .tox .tox-tree .tox-tree--directory {
3549
- display: flex;
3550
- flex-direction: column;
3551
- }
3552
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label {
3553
- font-weight: 700;
3554
- }
3555
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn {
3556
- margin-left: auto;
3557
- }
3558
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn svg {
3559
- fill: transparent;
3560
- }
3561
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn.tox-mbtn--active svg,
3562
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-mbtn:focus svg {
3563
- fill: #222f3e;
3564
- }
3565
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:focus .tox-mbtn svg,
3566
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover .tox-mbtn svg {
3567
- fill: #222f3e;
3568
- }
3569
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) {
3570
- background-color: transparent;
3571
- color: #222f3e;
3572
- }
3573
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:hover:has(.tox-mbtn:hover) .tox-chevron svg {
3574
- fill: #222f3e;
3575
- }
3576
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label .tox-chevron {
3577
- margin-right: 6px;
3578
- }
3579
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,
3580
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--shrinking) .tox-chevron {
3581
- transition: transform 0.5s ease-in-out;
3582
- }
3583
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--growing) .tox-chevron,
3584
- .tox .tox-tree .tox-tree--directory .tox-tree--directory__label:has(+.tox-tree--directory__children--open) .tox-chevron {
3585
- transform: rotate(90deg);
3586
- }
3587
- .tox .tox-tree .tox-tree--leaf__label {
3588
- font-weight: 400;
3589
- }
3590
- .tox .tox-tree .tox-tree--leaf__label .tox-mbtn {
3591
- margin-left: auto;
3592
- }
3593
- .tox .tox-tree .tox-tree--leaf__label .tox-mbtn svg {
3594
- fill: transparent;
3595
- }
3596
- .tox .tox-tree .tox-tree--leaf__label .tox-mbtn.tox-mbtn--active svg,
3597
- .tox .tox-tree .tox-tree--leaf__label .tox-mbtn:focus svg {
3598
- fill: #222f3e;
3599
- }
3600
- .tox .tox-tree .tox-tree--leaf__label:hover .tox-mbtn svg {
3601
- fill: #222f3e;
3602
- }
3603
- .tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) {
3604
- background-color: transparent;
3605
- color: #222f3e;
3606
- }
3607
- .tox .tox-tree .tox-tree--leaf__label:hover:has(.tox-mbtn:hover) .tox-chevron svg {
3608
- fill: #222f3e;
3609
- }
3610
- .tox .tox-tree .tox-tree--directory__children {
3611
- overflow: hidden;
3612
- padding-left: 16px;
3613
- }
3614
- .tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--growing,
3615
- .tox .tox-tree .tox-tree--directory__children.tox-tree--directory__children--shrinking {
3616
- transition: height 0.5s ease-in-out;
3617
- }
3618
- .tox .tox-tree .tox-trbtn.tox-tree--leaf__label {
3619
- display: flex;
3620
- justify-content: space-between;
3621
- }
3622
- .tox .tox-view-wrap,
3623
- .tox .tox-view-wrap__slot-container {
3624
- background-color: #fff;
3625
- display: flex;
3626
- flex: 1;
3627
- flex-direction: column;
3628
- }
3629
- .tox .tox-view {
3630
- display: flex;
3631
- flex: 1 1 auto;
3632
- flex-direction: column;
3633
- overflow: hidden;
3634
- }
3635
- .tox .tox-view__header {
3636
- align-items: center;
3637
- display: flex;
3638
- font-size: 16px;
3639
- justify-content: space-between;
3640
- padding: 8px 8px 0 8px;
3641
- position: relative;
3642
- }
3643
- .tox .tox-view--mobile.tox-view__header,
3644
- .tox .tox-view--mobile.tox-view__toolbar {
3645
- padding: 8px;
3646
- }
3647
- .tox .tox-view--scrolling {
3648
- flex-wrap: nowrap;
3649
- overflow-x: auto;
3650
- }
3651
- .tox .tox-view__toolbar {
3652
- display: flex;
3653
- flex-direction: row;
3654
- gap: 8px;
3655
- justify-content: space-between;
3656
- padding: 8px 8px 0 8px;
3657
- }
3658
- .tox .tox-view__toolbar__group {
3659
- display: flex;
3660
- flex-direction: row;
3661
- gap: 12px;
3662
- }
3663
- .tox .tox-view__header-end,
3664
- .tox .tox-view__header-start {
3665
- display: flex;
3666
- }
3667
- .tox .tox-view__pane {
3668
- height: 100%;
3669
- padding: 8px;
3670
- width: 100%;
3671
- }
3672
- .tox .tox-view__pane_panel {
3673
- border: 1px solid #eee;
3674
- border-radius: 6px;
3675
- }
3676
- .tox:not([dir=rtl]) .tox-view__header .tox-view__header-end > *,
3677
- .tox:not([dir=rtl]) .tox-view__header .tox-view__header-start > * {
3678
- margin-left: 8px;
3679
- }
3680
- .tox[dir=rtl] .tox-view__header .tox-view__header-end > *,
3681
- .tox[dir=rtl] .tox-view__header .tox-view__header-start > * {
3682
- margin-right: 8px;
3683
- }
3684
- .tox .tox-well {
3685
- border: 1px solid #eee;
3686
- border-radius: 6px;
3687
- padding: 8px;
3688
- width: 100%;
3689
- }
3690
- .tox .tox-well > :first-child {
3691
- margin-top: 0;
3692
- }
3693
- .tox .tox-well > :last-child {
3694
- margin-bottom: 0;
3695
- }
3696
- .tox .tox-well > :only-child {
3697
- margin: 0;
3698
- }
3699
- .tox .tox-custom-editor {
3700
- border: 1px solid #eee;
3701
- border-radius: 6px;
3702
- display: flex;
3703
- flex: 1;
3704
- overflow: hidden;
3705
- position: relative;
3706
- }
3707
- .tox .tox-dialog-loading::before {
3708
- background-color: rgba(0, 0, 0, 0.5);
3709
- content: "";
3710
- height: 100%;
3711
- position: absolute;
3712
- width: 100%;
3713
- z-index: 1000;
3714
- }
3715
- .tox .tox-tab {
3716
- cursor: pointer;
3717
- }
3718
- .tox .tox-dialog__content-js {
3719
- display: flex;
3720
- flex: 1;
3721
- }
3722
- .tox .tox-dialog__body-content .tox-collection {
3723
- display: flex;
3724
- flex: 1;
3725
- }
3726
-
3727
- /*!***************************************************************************************************************************************************************************************************************************************************************************!*\
3728
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./node_modules/react-pdf/dist/esm/Page/TextLayer.css ***!
3729
- \***************************************************************************************************************************************************************************************************************************************************************************/
3730
- /* Copyright 2014 Mozilla Foundation
3731
- *
3732
- * Licensed under the Apache License, Version 2.0 (the "License");
3733
- * you may not use this file except in compliance with the License.
3734
- * You may obtain a copy of the License at
3735
- *
3736
- * http://www.apache.org/licenses/LICENSE-2.0
3737
- *
3738
- * Unless required by applicable law or agreed to in writing, software
3739
- * distributed under the License is distributed on an "AS IS" BASIS,
3740
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3741
- * See the License for the specific language governing permissions and
3742
- * limitations under the License.
3743
- */
3744
- :root {
3745
- --react-pdf-text-layer: 1;
3746
- }
3747
- .textLayer {
3748
- position: absolute;
3749
- text-align: initial;
3750
- left: 0;
3751
- top: 0;
3752
- right: 0;
3753
- bottom: 0;
3754
- overflow: hidden;
3755
- line-height: 1;
3756
- -webkit-text-size-adjust: none;
3757
- -moz-text-size-adjust: none;
3758
- text-size-adjust: none;
3759
- forced-color-adjust: none;
3760
- }
3761
- .textLayer span,
3762
- .textLayer br {
3763
- color: transparent;
3764
- position: absolute;
3765
- white-space: pre;
3766
- cursor: text;
3767
- transform-origin: 0% 0%;
3768
- }
3769
- /* Only necessary in Google Chrome, see issue 14205, and most unfortunately
3770
- * the problem doesn't show up in "text" reference tests. */
3771
- .textLayer span.markedContent {
3772
- top: 0;
3773
- height: 0;
3774
- }
3775
- .textLayer .highlight {
3776
- margin: -1px;
3777
- padding: 1px;
3778
- background-color: #b400aa;
3779
- border-radius: 4px;
3780
- }
3781
- .textLayer .highlight.appended {
3782
- position: initial;
3783
- }
3784
- .textLayer .highlight.begin {
3785
- border-radius: 4px 0 0 4px;
3786
- }
3787
- .textLayer .highlight.end {
3788
- border-radius: 0 4px 4px 0;
3789
- }
3790
- .textLayer .highlight.middle {
3791
- border-radius: 0;
3792
- }
3793
- .textLayer .highlight.selected {
3794
- background-color: #006400;
3795
- }
3796
- /* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
3797
- .textLayer br::-moz-selection {
3798
- background: transparent;
3799
- }
3800
- .textLayer br::selection {
3801
- background: transparent;
3802
- }
3803
- .textLayer .endOfContent {
3804
- display: block;
3805
- position: absolute;
3806
- left: 0;
3807
- top: 100%;
3808
- right: 0;
3809
- bottom: 0;
3810
- z-index: -1;
3811
- cursor: default;
3812
- -webkit-user-select: none;
3813
- -moz-user-select: none;
3814
- user-select: none;
3815
- }
3816
- .textLayer .endOfContent.active {
3817
- top: 0;
3818
- }
3819
-
3820
- /*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
3821
- !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/less-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./node_modules/react-pdf/dist/esm/Page/AnnotationLayer.css ***!
3822
- \*********************************************************************************************************************************************************************************************************************************************************************************/
3823
- /* Copyright 2014 Mozilla Foundation
3824
- *
3825
- * Licensed under the Apache License, Version 2.0 (the "License");
3826
- * you may not use this file except in compliance with the License.
3827
- * You may obtain a copy of the License at
3828
- *
3829
- * http://www.apache.org/licenses/LICENSE-2.0
3830
- *
3831
- * Unless required by applicable law or agreed to in writing, software
3832
- * distributed under the License is distributed on an "AS IS" BASIS,
3833
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3834
- * See the License for the specific language governing permissions and
3835
- * limitations under the License.
3836
- */
3837
- :root {
3838
- --react-pdf-annotation-layer: 1;
3839
- --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
3840
- --input-focus-border-color: Highlight;
3841
- --input-focus-outline: 1px solid Canvas;
3842
- --input-unfocused-border-color: transparent;
3843
- --input-disabled-border-color: transparent;
3844
- --input-hover-border-color: black;
3845
- }
3846
- @media (forced-colors: active) {
3847
- :root {
3848
- --input-focus-border-color: CanvasText;
3849
- --input-unfocused-border-color: ActiveText;
3850
- --input-disabled-border-color: GrayText;
3851
- --input-hover-border-color: Highlight;
3852
- }
3853
- .annotationLayer .textWidgetAnnotation input:required,
3854
- .annotationLayer .textWidgetAnnotation textarea:required,
3855
- .annotationLayer .choiceWidgetAnnotation select:required,
3856
- .annotationLayer .buttonWidgetAnnotation.checkBox input:required,
3857
- .annotationLayer .buttonWidgetAnnotation.radioButton input:required {
3858
- outline: 1.5px solid selectedItem;
3859
- }
3860
- }
3861
- .annotationLayer {
3862
- position: absolute;
3863
- top: 0;
3864
- left: 0;
3865
- pointer-events: none;
3866
- transform-origin: 0 0;
3867
- --scale-factor: 1;
3868
- }
3869
- .annotationLayer section {
3870
- position: absolute;
3871
- text-align: initial;
3872
- pointer-events: auto;
3873
- box-sizing: border-box;
3874
- transform-origin: 0 0;
3875
- }
3876
- .annotationLayer .linkAnnotation > a,
3877
- .annotationLayer .buttonWidgetAnnotation.pushButton > a {
3878
- position: absolute;
3879
- font-size: 1em;
3880
- top: 0;
3881
- left: 0;
3882
- width: 100%;
3883
- height: 100%;
3884
- }
3885
- .annotationLayer .buttonWidgetAnnotation.pushButton > canvas {
3886
- width: 100%;
3887
- height: 100%;
3888
- }
3889
- .annotationLayer .linkAnnotation > a:hover,
3890
- .annotationLayer .buttonWidgetAnnotation.pushButton > a:hover {
3891
- opacity: 0.2;
3892
- background: #ffff00;
3893
- box-shadow: 0 2px 10px #ffff00;
3894
- }
3895
- .annotationLayer .textAnnotation img {
3896
- position: absolute;
3897
- cursor: pointer;
3898
- width: 100%;
3899
- height: 100%;
3900
- }
3901
- .annotationLayer .textWidgetAnnotation input,
3902
- .annotationLayer .textWidgetAnnotation textarea,
3903
- .annotationLayer .choiceWidgetAnnotation select,
3904
- .annotationLayer .buttonWidgetAnnotation.checkBox input,
3905
- .annotationLayer .buttonWidgetAnnotation.radioButton input {
3906
- background-image: var(--annotation-unfocused-field-background);
3907
- border: 2px solid var(--input-unfocused-border-color);
3908
- box-sizing: border-box;
3909
- font: calc(9px * var(--scale-factor)) sans-serif;
3910
- height: 100%;
3911
- margin: 0;
3912
- vertical-align: top;
3913
- width: 100%;
3914
- }
3915
- .annotationLayer .textWidgetAnnotation input:required,
3916
- .annotationLayer .textWidgetAnnotation textarea:required,
3917
- .annotationLayer .choiceWidgetAnnotation select:required,
3918
- .annotationLayer .buttonWidgetAnnotation.checkBox input:required,
3919
- .annotationLayer .buttonWidgetAnnotation.radioButton input:required {
3920
- outline: 1.5px solid red;
3921
- }
3922
- .annotationLayer .choiceWidgetAnnotation select option {
3923
- padding: 0;
3924
- }
3925
- .annotationLayer .buttonWidgetAnnotation.radioButton input {
3926
- border-radius: 50%;
3927
- }
3928
- .annotationLayer .textWidgetAnnotation textarea {
3929
- resize: none;
3930
- }
3931
- .annotationLayer .textWidgetAnnotation input[disabled],
3932
- .annotationLayer .textWidgetAnnotation textarea[disabled],
3933
- .annotationLayer .choiceWidgetAnnotation select[disabled],
3934
- .annotationLayer .buttonWidgetAnnotation.checkBox input[disabled],
3935
- .annotationLayer .buttonWidgetAnnotation.radioButton input[disabled] {
3936
- background: none;
3937
- border: 2px solid var(--input-disabled-border-color);
3938
- cursor: not-allowed;
3939
- }
3940
- .annotationLayer .textWidgetAnnotation input:hover,
3941
- .annotationLayer .textWidgetAnnotation textarea:hover,
3942
- .annotationLayer .choiceWidgetAnnotation select:hover,
3943
- .annotationLayer .buttonWidgetAnnotation.checkBox input:hover,
3944
- .annotationLayer .buttonWidgetAnnotation.radioButton input:hover {
3945
- border: 2px solid var(--input-hover-border-color);
3946
- }
3947
- .annotationLayer .textWidgetAnnotation input:hover,
3948
- .annotationLayer .textWidgetAnnotation textarea:hover,
3949
- .annotationLayer .choiceWidgetAnnotation select:hover,
3950
- .annotationLayer .buttonWidgetAnnotation.checkBox input:hover {
3951
- border-radius: 2px;
3952
- }
3953
- .annotationLayer .textWidgetAnnotation input:focus,
3954
- .annotationLayer .textWidgetAnnotation textarea:focus,
3955
- .annotationLayer .choiceWidgetAnnotation select:focus {
3956
- background: none;
3957
- border: 2px solid var(--input-focus-border-color);
3958
- border-radius: 2px;
3959
- outline: var(--input-focus-outline);
3960
- }
3961
- .annotationLayer .buttonWidgetAnnotation.checkBox :focus,
3962
- .annotationLayer .buttonWidgetAnnotation.radioButton :focus {
3963
- background-image: none;
3964
- background-color: transparent;
3965
- }
3966
- .annotationLayer .buttonWidgetAnnotation.checkBox :focus {
3967
- border: 2px solid var(--input-focus-border-color);
3968
- border-radius: 2px;
3969
- outline: var(--input-focus-outline);
3970
- }
3971
- .annotationLayer .buttonWidgetAnnotation.radioButton :focus {
3972
- border: 2px solid var(--input-focus-border-color);
3973
- outline: var(--input-focus-outline);
3974
- }
3975
- .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
3976
- .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after,
3977
- .annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
3978
- background-color: CanvasText;
3979
- content: '';
3980
- display: block;
3981
- position: absolute;
3982
- }
3983
- .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before,
3984
- .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
3985
- height: 80%;
3986
- left: 45%;
3987
- width: 1px;
3988
- }
3989
- .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:before {
3990
- transform: rotate(45deg);
3991
- }
3992
- .annotationLayer .buttonWidgetAnnotation.checkBox input:checked:after {
3993
- transform: rotate(-45deg);
3994
- }
3995
- .annotationLayer .buttonWidgetAnnotation.radioButton input:checked:before {
3996
- border-radius: 50%;
3997
- height: 50%;
3998
- left: 30%;
3999
- top: 20%;
4000
- width: 50%;
4001
- }
4002
- .annotationLayer .textWidgetAnnotation input.comb {
4003
- font-family: monospace;
4004
- padding-left: 2px;
4005
- padding-right: 0;
4006
- }
4007
- .annotationLayer .textWidgetAnnotation input.comb:focus {
4008
- /*
4009
- * Letter spacing is placed on the right side of each character. Hence, the
4010
- * letter spacing of the last character may be placed outside the visible
4011
- * area, causing horizontal scrolling. We avoid this by extending the width
4012
- * when the element has focus and revert this when it loses focus.
4013
- */
4014
- width: 103%;
4015
- }
4016
- .annotationLayer .buttonWidgetAnnotation.checkBox input,
4017
- .annotationLayer .buttonWidgetAnnotation.radioButton input {
4018
- -webkit-appearance: none;
4019
- -moz-appearance: none;
4020
- appearance: none;
4021
- }
4022
- .annotationLayer .popupTriggerArea {
4023
- height: 100%;
4024
- width: 100%;
4025
- }
4026
- .annotationLayer .popupWrapper {
4027
- position: absolute;
4028
- font-size: calc(9px * var(--scale-factor));
4029
- width: 100%;
4030
- min-width: calc(180px * var(--scale-factor));
4031
- pointer-events: none;
4032
- }
4033
- .annotationLayer .popup {
4034
- position: absolute;
4035
- max-width: calc(180px * var(--scale-factor));
4036
- background-color: #ffff99;
4037
- box-shadow: 0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor)) #888888;
4038
- border-radius: calc(2px * var(--scale-factor));
4039
- padding: calc(6px * var(--scale-factor));
4040
- margin-left: calc(5px * var(--scale-factor));
4041
- cursor: pointer;
4042
- font: message-box;
4043
- white-space: normal;
4044
- word-wrap: break-word;
4045
- pointer-events: auto;
4046
- }
4047
- .annotationLayer .popup > * {
4048
- font-size: calc(9px * var(--scale-factor));
4049
- }
4050
- .annotationLayer .popup h1 {
4051
- display: inline-block;
4052
- }
4053
- .annotationLayer .popupDate {
4054
- display: inline-block;
4055
- margin-left: calc(5px * var(--scale-factor));
4056
- }
4057
- .annotationLayer .popupContent {
4058
- border-top: 1px solid #333333;
4059
- margin-top: calc(2px * var(--scale-factor));
4060
- padding-top: calc(2px * var(--scale-factor));
4061
- }
4062
- .annotationLayer .richText > * {
4063
- white-space: pre-wrap;
4064
- font-size: calc(9px * var(--scale-factor));
4065
- }
4066
- .annotationLayer .highlightAnnotation,
4067
- .annotationLayer .underlineAnnotation,
4068
- .annotationLayer .squigglyAnnotation,
4069
- .annotationLayer .strikeoutAnnotation,
4070
- .annotationLayer .freeTextAnnotation,
4071
- .annotationLayer .lineAnnotation svg line,
4072
- .annotationLayer .squareAnnotation svg rect,
4073
- .annotationLayer .circleAnnotation svg ellipse,
4074
- .annotationLayer .polylineAnnotation svg polyline,
4075
- .annotationLayer .polygonAnnotation svg polygon,
4076
- .annotationLayer .caretAnnotation,
4077
- .annotationLayer .inkAnnotation svg polyline,
4078
- .annotationLayer .stampAnnotation,
4079
- .annotationLayer .fileAttachmentAnnotation {
4080
- cursor: pointer;
4081
- }
4082
- .annotationLayer section svg {
4083
- position: absolute;
4084
- width: 100%;
4085
- height: 100%;
4086
- }
4087
- .annotationLayer .annotationTextContent {
4088
- position: absolute;
4089
- width: 100%;
4090
- height: 100%;
4091
- opacity: 0;
4092
- color: transparent;
4093
- -webkit-user-select: none;
4094
- -moz-user-select: none;
4095
- user-select: none;
4096
- pointer-events: none;
4097
- }
4098
- .annotationLayer .annotationTextContent span {
4099
- width: 100%;
4100
- display: inline-block;
4101
- }
4102
-
4103
-
4104
- /*# sourceMappingURL=vendors-node_modules_tinymce_skins_ui_oxide_skin_min_css-node_modules_reduxjs_toolkit_dist_re-f60063.css.map*/