create-nextjs-cms 0.5.56 → 0.5.60
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.
- package/package.json +4 -4
- package/templates/default/CHANGELOG.md +140 -140
- package/templates/default/_gitignore +1 -0
- package/templates/default/app/(rootLayout)/admins/page.tsx +7 -2
- package/templates/default/app/(rootLayout)/advanced/page.tsx +8 -2
- package/templates/default/app/(rootLayout)/browse/[section]/[page]/page.tsx +17 -3
- package/templates/default/app/(rootLayout)/categorized/[section]/page.tsx +9 -1
- package/templates/default/app/(rootLayout)/dashboard-new/page.tsx +7 -0
- package/templates/default/app/(rootLayout)/edit/[section]/[itemId]/page.tsx +11 -1
- package/templates/default/app/(rootLayout)/layout.tsx +8 -1
- package/templates/default/app/(rootLayout)/new/[section]/page.tsx +9 -1
- package/templates/default/app/(rootLayout)/section/[section]/page.tsx +10 -1
- package/templates/default/app/(rootLayout)/settings/page.tsx +7 -1
- package/templates/default/app/api/trpc/[trpc]/route.ts +1 -1
- package/templates/default/app/api/video/route.ts +1 -1
- package/templates/default/app/layout.tsx +1 -1
- package/templates/default/app/providers.tsx +4 -4
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/LICENSE +191 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/README.md +118 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/install/build.js +38 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/install/check.js +14 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/channel.js +177 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/colour.js +195 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/composite.js +212 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/constructor.js +499 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/index.d.ts +1971 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/index.js +16 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/input.js +809 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/is.js +143 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/libvips.js +207 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/operation.js +1016 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/output.js +1666 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/resize.js +595 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/sharp.js +121 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/lib/utility.js +291 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/package.json +202 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/binding.gyp +298 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/common.cc +1130 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/common.h +402 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/metadata.cc +346 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/metadata.h +90 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/operations.cc +499 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/operations.h +137 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/pipeline.cc +1814 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/pipeline.h +408 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/sharp.cc +43 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/stats.cc +186 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/stats.h +62 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/utilities.cc +288 -0
- package/templates/default/apps/cms/node_modules/next/node_modules/_tmp_40516_de1b9f7e36eccb968b79dbd2b8c388ea/src/utilities.h +22 -0
- package/templates/default/components/BrowsePage.tsx +4 -4
- package/templates/default/components/DashboardNewPage.tsx +252 -0
- package/templates/default/components/LogPage.tsx +2 -3
- package/templates/default/components/SettingsPage.tsx +1 -1
- package/templates/default/components/form/Form.tsx +5 -5
- package/templates/default/components/form/helpers/_section-hot-reload.js +1 -1
- package/templates/default/components/form/helpers/util.ts +5 -5
- package/templates/default/dynamic-schemas/schema.ts +381 -381
- package/templates/default/next-env.d.ts +1 -1
- package/templates/default/next.config.ts +24 -0
- package/templates/default/package.json +23 -17
- package/templates/default/{middleware.ts → proxy.ts} +3 -4
- package/templates/default/tsconfig.json +6 -3
- package/templates/default/app/api/placeholder/route.ts +0 -7
- package/templates/default/public/tinymce/CHANGELOG.md +0 -3940
- package/templates/default/public/tinymce/README.md +0 -77
- package/templates/default/public/tinymce/bower.json +0 -27
- package/templates/default/public/tinymce/composer.json +0 -52
- package/templates/default/public/tinymce/icons/default/icons.js +0 -239
- package/templates/default/public/tinymce/icons/default/icons.min.js +0 -1
- package/templates/default/public/tinymce/icons/default/index.js +0 -7
- package/templates/default/public/tinymce/license.md +0 -9
- package/templates/default/public/tinymce/models/dom/index.js +0 -7
- package/templates/default/public/tinymce/models/dom/model.js +0 -8980
- package/templates/default/public/tinymce/models/dom/model.min.js +0 -1
- package/templates/default/public/tinymce/notices.txt +0 -21
- package/templates/default/public/tinymce/package.json +0 -32
- package/templates/default/public/tinymce/plugins/accordion/index.js +0 -7
- package/templates/default/public/tinymce/plugins/accordion/plugin.js +0 -1373
- package/templates/default/public/tinymce/plugins/accordion/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/advlist/index.js +0 -7
- package/templates/default/public/tinymce/plugins/advlist/plugin.js +0 -473
- package/templates/default/public/tinymce/plugins/advlist/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/anchor/index.js +0 -7
- package/templates/default/public/tinymce/plugins/anchor/plugin.js +0 -237
- package/templates/default/public/tinymce/plugins/anchor/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/autolink/index.js +0 -7
- package/templates/default/public/tinymce/plugins/autolink/plugin.js +0 -315
- package/templates/default/public/tinymce/plugins/autolink/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/autoresize/index.js +0 -7
- package/templates/default/public/tinymce/plugins/autoresize/plugin.js +0 -221
- package/templates/default/public/tinymce/plugins/autoresize/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/autosave/index.js +0 -7
- package/templates/default/public/tinymce/plugins/autosave/plugin.js +0 -249
- package/templates/default/public/tinymce/plugins/autosave/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/charmap/index.js +0 -7
- package/templates/default/public/tinymce/plugins/charmap/plugin.js +0 -997
- package/templates/default/public/tinymce/plugins/charmap/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/code/index.js +0 -7
- package/templates/default/public/tinymce/plugins/code/plugin.js +0 -98
- package/templates/default/public/tinymce/plugins/code/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/codesample/index.js +0 -7
- package/templates/default/public/tinymce/plugins/codesample/plugin.js +0 -3655
- package/templates/default/public/tinymce/plugins/codesample/plugin.min.js +0 -9
- package/templates/default/public/tinymce/plugins/directionality/index.js +0 -7
- package/templates/default/public/tinymce/plugins/directionality/plugin.js +0 -634
- package/templates/default/public/tinymce/plugins/directionality/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/emoticons/index.js +0 -7
- package/templates/default/public/tinymce/plugins/emoticons/js/emojiimages.js +0 -1
- package/templates/default/public/tinymce/plugins/emoticons/js/emojiimages.min.js +0 -1
- package/templates/default/public/tinymce/plugins/emoticons/js/emojis.js +0 -1
- package/templates/default/public/tinymce/plugins/emoticons/js/emojis.min.js +0 -1
- package/templates/default/public/tinymce/plugins/emoticons/plugin.js +0 -809
- package/templates/default/public/tinymce/plugins/emoticons/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/fullscreen/index.js +0 -7
- package/templates/default/public/tinymce/plugins/fullscreen/plugin.js +0 -1607
- package/templates/default/public/tinymce/plugins/fullscreen/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/help/index.js +0 -7
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/ar.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/bg-BG.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/bg_BG.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/ca.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/cs.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/da.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/de.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/el.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/en.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/es.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/eu.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/fa.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/fi.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/fr-FR.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/fr_FR.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/he-IL.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/he_IL.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/hi.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/hr.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/hu-HU.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/hu_HU.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/id.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/it.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/ja.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/kk.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/ko-KR.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/ko_KR.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/ms.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/nb-NO.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/nb_NO.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/nl.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/pl.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/pt-BR.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/pt-PT.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/pt_BR.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/pt_PT.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/ro.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/ru.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/sk.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/sl-SI.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/sl_SI.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/sv-SE.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/sv_SE.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/th-TH.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/th_TH.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/tr.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/uk.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/vi.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/zh-CN.js +0 -87
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/zh-TW.js +0 -93
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/zh_CN.js +0 -87
- package/templates/default/public/tinymce/plugins/help/js/i18n/keynav/zh_TW.js +0 -93
- package/templates/default/public/tinymce/plugins/help/plugin.js +0 -826
- package/templates/default/public/tinymce/plugins/help/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/image/index.js +0 -7
- package/templates/default/public/tinymce/plugins/image/plugin.js +0 -1691
- package/templates/default/public/tinymce/plugins/image/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/importcss/index.js +0 -7
- package/templates/default/public/tinymce/plugins/importcss/plugin.js +0 -401
- package/templates/default/public/tinymce/plugins/importcss/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/insertdatetime/index.js +0 -7
- package/templates/default/public/tinymce/plugins/insertdatetime/plugin.js +0 -187
- package/templates/default/public/tinymce/plugins/insertdatetime/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/link/index.js +0 -7
- package/templates/default/public/tinymce/plugins/link/plugin.js +0 -1709
- package/templates/default/public/tinymce/plugins/link/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/lists/index.js +0 -7
- package/templates/default/public/tinymce/plugins/lists/plugin.js +0 -602
- package/templates/default/public/tinymce/plugins/lists/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/media/index.js +0 -7
- package/templates/default/public/tinymce/plugins/media/plugin.js +0 -1442
- package/templates/default/public/tinymce/plugins/media/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/nonbreaking/index.js +0 -7
- package/templates/default/public/tinymce/plugins/nonbreaking/plugin.js +0 -128
- package/templates/default/public/tinymce/plugins/nonbreaking/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/pagebreak/index.js +0 -7
- package/templates/default/public/tinymce/plugins/pagebreak/plugin.js +0 -123
- package/templates/default/public/tinymce/plugins/pagebreak/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/preview/index.js +0 -7
- package/templates/default/public/tinymce/plugins/preview/plugin.js +0 -843
- package/templates/default/public/tinymce/plugins/preview/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/quickbars/index.js +0 -7
- package/templates/default/public/tinymce/plugins/quickbars/plugin.js +0 -654
- package/templates/default/public/tinymce/plugins/quickbars/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/save/index.js +0 -7
- package/templates/default/public/tinymce/plugins/save/plugin.js +0 -136
- package/templates/default/public/tinymce/plugins/save/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/searchreplace/index.js +0 -7
- package/templates/default/public/tinymce/plugins/searchreplace/plugin.js +0 -1367
- package/templates/default/public/tinymce/plugins/searchreplace/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/table/index.js +0 -7
- package/templates/default/public/tinymce/plugins/table/plugin.js +0 -4008
- package/templates/default/public/tinymce/plugins/table/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/visualblocks/index.js +0 -7
- package/templates/default/public/tinymce/plugins/visualblocks/plugin.js +0 -106
- package/templates/default/public/tinymce/plugins/visualblocks/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/visualchars/index.js +0 -7
- package/templates/default/public/tinymce/plugins/visualchars/plugin.js +0 -808
- package/templates/default/public/tinymce/plugins/visualchars/plugin.min.js +0 -1
- package/templates/default/public/tinymce/plugins/wordcount/index.js +0 -7
- package/templates/default/public/tinymce/plugins/wordcount/plugin.js +0 -480
- package/templates/default/public/tinymce/plugins/wordcount/plugin.min.js +0 -1
- package/templates/default/public/tinymce/skins/content/dark/content.css +0 -75
- package/templates/default/public/tinymce/skins/content/dark/content.js +0 -10
- package/templates/default/public/tinymce/skins/content/dark/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/content/dark/content.min.ts +0 -3
- package/templates/default/public/tinymce/skins/content/dark/content.ts +0 -3
- package/templates/default/public/tinymce/skins/content/default/content.css +0 -70
- package/templates/default/public/tinymce/skins/content/default/content.js +0 -10
- package/templates/default/public/tinymce/skins/content/default/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/content/default/content.min.ts +0 -3
- package/templates/default/public/tinymce/skins/content/default/content.ts +0 -3
- package/templates/default/public/tinymce/skins/content/document/content.css +0 -75
- package/templates/default/public/tinymce/skins/content/document/content.js +0 -10
- package/templates/default/public/tinymce/skins/content/document/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/content/document/content.min.ts +0 -3
- package/templates/default/public/tinymce/skins/content/document/content.ts +0 -3
- package/templates/default/public/tinymce/skins/content/tinymce-5/content.css +0 -70
- package/templates/default/public/tinymce/skins/content/tinymce-5/content.js +0 -10
- package/templates/default/public/tinymce/skins/content/tinymce-5/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/content/tinymce-5/content.min.ts +0 -3
- package/templates/default/public/tinymce/skins/content/tinymce-5/content.ts +0 -3
- package/templates/default/public/tinymce/skins/content/tinymce-5-dark/content.css +0 -75
- package/templates/default/public/tinymce/skins/content/tinymce-5-dark/content.js +0 -10
- package/templates/default/public/tinymce/skins/content/tinymce-5-dark/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/content/tinymce-5-dark/content.min.ts +0 -3
- package/templates/default/public/tinymce/skins/content/tinymce-5-dark/content.ts +0 -3
- package/templates/default/public/tinymce/skins/content/writer/content.css +0 -71
- package/templates/default/public/tinymce/skins/content/writer/content.js +0 -10
- package/templates/default/public/tinymce/skins/content/writer/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/content/writer/content.min.ts +0 -3
- package/templates/default/public/tinymce/skins/content/writer/content.ts +0 -3
- package/templates/default/public/tinymce/skins/ui/oxide/content.css +0 -1037
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.css +0 -1031
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.js +0 -10
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.min.css +0 -10
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.min.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/oxide/content.inline.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/oxide/content.js +0 -10
- package/templates/default/public/tinymce/skins/ui/oxide/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/ui/oxide/content.min.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/oxide/content.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/oxide/skin.css +0 -5615
- package/templates/default/public/tinymce/skins/ui/oxide/skin.js +0 -1
- package/templates/default/public/tinymce/skins/ui/oxide/skin.min.css +0 -1
- package/templates/default/public/tinymce/skins/ui/oxide/skin.min.ts +0 -507
- package/templates/default/public/tinymce/skins/ui/oxide/skin.shadowdom.css +0 -30
- package/templates/default/public/tinymce/skins/ui/oxide/skin.shadowdom.js +0 -1
- package/templates/default/public/tinymce/skins/ui/oxide/skin.shadowdom.min.css +0 -1
- package/templates/default/public/tinymce/skins/ui/oxide/skin.shadowdom.min.ts +0 -9
- package/templates/default/public/tinymce/skins/ui/oxide/skin.shadowdom.ts +0 -9
- package/templates/default/public/tinymce/skins/ui/oxide/skin.ts +0 -507
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.css +0 -1025
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.css +0 -1031
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.js +0 -10
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.min.css +0 -10
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.min.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.inline.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.js +0 -10
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.min.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/oxide-dark/content.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.css +0 -5618
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.js +0 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.min.css +0 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.min.ts +0 -507
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.shadowdom.css +0 -30
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.shadowdom.js +0 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.css +0 -1
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.shadowdom.min.ts +0 -9
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.shadowdom.ts +0 -9
- package/templates/default/public/tinymce/skins/ui/oxide-dark/skin.ts +0 -507
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.css +0 -1037
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.css +0 -1031
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.js +0 -10
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.min.css +0 -10
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.min.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.inline.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.js +0 -10
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.min.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/tinymce-5/content.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.css +0 -5734
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.js +0 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.min.css +0 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.min.ts +0 -508
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.shadowdom.css +0 -30
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.shadowdom.js +0 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.css +0 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.shadowdom.min.ts +0 -9
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.shadowdom.ts +0 -9
- package/templates/default/public/tinymce/skins/ui/tinymce-5/skin.ts +0 -508
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.css +0 -1025
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.css +0 -1031
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.js +0 -10
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.min.css +0 -10
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.min.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.inline.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.js +0 -10
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.min.css +0 -10
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.min.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/content.ts +0 -116
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.css +0 -5734
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.js +0 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.min.css +0 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.min.ts +0 -508
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.css +0 -30
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.js +0 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.css +0 -1
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.min.ts +0 -9
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.shadowdom.ts +0 -9
- package/templates/default/public/tinymce/skins/ui/tinymce-5-dark/skin.ts +0 -508
- package/templates/default/public/tinymce/themes/silver/index.js +0 -7
- package/templates/default/public/tinymce/themes/silver/theme.js +0 -34748
- package/templates/default/public/tinymce/themes/silver/theme.min.js +0 -1
- package/templates/default/public/tinymce/tinymce.d.ts +0 -3413
- package/templates/default/public/tinymce/tinymce.js +0 -41518
- package/templates/default/public/tinymce/tinymce.min.js +0 -10
|
@@ -1,1025 +0,0 @@
|
|
|
1
|
-
/* This file is bundled with the code from the following third party libraries */
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* http://prismjs.com/
|
|
5
|
-
* Dracula Theme originally by Zeno Rocha [@zenorocha]
|
|
6
|
-
* https://draculatheme.com/
|
|
7
|
-
*
|
|
8
|
-
* Ported for PrismJS by Albert Vallverdu [@byverdu]
|
|
9
|
-
*/
|
|
10
|
-
@keyframes tox-rotation {
|
|
11
|
-
0% {
|
|
12
|
-
transform: rotate(0deg);
|
|
13
|
-
}
|
|
14
|
-
100% {
|
|
15
|
-
transform: rotate(360deg);
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
.mce-content-body .mce-item-anchor {
|
|
19
|
-
background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'8'%20height%3D'12'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200L8%200%208%2012%204.09117821%209%200%2012z'%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
|
|
20
|
-
}
|
|
21
|
-
.mce-content-body .mce-item-anchor:empty {
|
|
22
|
-
cursor: default;
|
|
23
|
-
display: inline-block;
|
|
24
|
-
height: 12px !important;
|
|
25
|
-
padding: 0 2px;
|
|
26
|
-
-webkit-user-modify: read-only;
|
|
27
|
-
-moz-user-modify: read-only;
|
|
28
|
-
-webkit-user-select: all;
|
|
29
|
-
user-select: all;
|
|
30
|
-
width: 8px !important;
|
|
31
|
-
}
|
|
32
|
-
.mce-content-body .mce-item-anchor:not(:empty) {
|
|
33
|
-
background-position-x: 2px;
|
|
34
|
-
display: inline-block;
|
|
35
|
-
padding-left: 12px;
|
|
36
|
-
}
|
|
37
|
-
.mce-content-body .mce-item-anchor[data-mce-selected] {
|
|
38
|
-
outline-offset: 1px;
|
|
39
|
-
}
|
|
40
|
-
.tox-comments-visible .tox-comment[contenteditable="false"]:not([data-mce-selected]),
|
|
41
|
-
.tox-comments-visible span.tox-comment img:not([data-mce-selected]),
|
|
42
|
-
.tox-comments-visible span.tox-comment > audio:not([data-mce-selected]),
|
|
43
|
-
.tox-comments-visible span.tox-comment > video:not([data-mce-selected]),
|
|
44
|
-
.tox-comments-visible span.tox-comment span.mce-preview-object:not([data-mce-selected]) {
|
|
45
|
-
outline: 3px solid #1b3b60;
|
|
46
|
-
}
|
|
47
|
-
.tox-comments-visible .tox-comment[contenteditable="false"][data-mce-annotation-active="true"]:not([data-mce-selected]) {
|
|
48
|
-
outline: 3px solid #006ce7;
|
|
49
|
-
}
|
|
50
|
-
.tox-comments-visible span.tox-comment:not([data-mce-selected]) {
|
|
51
|
-
background-color: #1b3b60;
|
|
52
|
-
outline: none;
|
|
53
|
-
}
|
|
54
|
-
.tox-comments-visible span.tox-comment[data-mce-annotation-active="true"]:not([data-mce-selected="inline-boundary"]) {
|
|
55
|
-
background-color: #1b3b60;
|
|
56
|
-
}
|
|
57
|
-
.tox-comments-visible span.tox-comment[data-mce-selected] {
|
|
58
|
-
background-color: #1b3b60;
|
|
59
|
-
border-radius: 3px;
|
|
60
|
-
box-shadow: 0 0 0 2px #006ce7;
|
|
61
|
-
}
|
|
62
|
-
.tox-comments-visible span.tox-comment[data-mce-selected]:has(img[data-mce-selected],
|
|
63
|
-
> audio[data-mce-selected],
|
|
64
|
-
> video[data-mce-selected],
|
|
65
|
-
span.mce-preview-object[data-mce-selected]) {
|
|
66
|
-
box-shadow: none;
|
|
67
|
-
}
|
|
68
|
-
.tox-comments-visible span.tox-comment[data-mce-selected] img:not([data-mce-selected]),
|
|
69
|
-
.tox-comments-visible span.tox-comment[data-mce-selected] > audio:not([data-mce-selected]),
|
|
70
|
-
.tox-comments-visible span.tox-comment[data-mce-selected] > video:not([data-mce-selected]),
|
|
71
|
-
.tox-comments-visible span.tox-comment[data-mce-selected] span.mce-preview-object:not([data-mce-selected]) {
|
|
72
|
-
box-shadow: 0 0 0 5px #006ce7;
|
|
73
|
-
}
|
|
74
|
-
.tox-comments-visible span.tox-comment[data-mce-annotation-active="true"] img:not([data-mce-selected]),
|
|
75
|
-
.tox-comments-visible span.tox-comment[data-mce-annotation-active="true"] > audio:not([data-mce-selected]),
|
|
76
|
-
.tox-comments-visible span.tox-comment[data-mce-annotation-active="true"] > video:not([data-mce-selected]),
|
|
77
|
-
.tox-comments-visible span.tox-comment[data-mce-annotation-active="true"] span.mce-preview-object:not([data-mce-selected]) {
|
|
78
|
-
outline: 3px solid #006ce7;
|
|
79
|
-
}
|
|
80
|
-
.tox-checklist > li:not(.tox-checklist--hidden) {
|
|
81
|
-
list-style: none;
|
|
82
|
-
margin: 0.25em 0;
|
|
83
|
-
}
|
|
84
|
-
.tox-checklist > li:not(.tox-checklist--hidden)::before {
|
|
85
|
-
content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-unchecked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2215%22%20height%3D%2215%22%20x%3D%22.5%22%20y%3D%22.5%22%20fill-rule%3D%22nonzero%22%20stroke%3D%22%236d737b%22%20rx%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
|
|
86
|
-
cursor: pointer;
|
|
87
|
-
height: 1em;
|
|
88
|
-
margin-left: -1.5em;
|
|
89
|
-
margin-top: 0.125em;
|
|
90
|
-
position: absolute;
|
|
91
|
-
width: 1em;
|
|
92
|
-
}
|
|
93
|
-
.tox-checklist li:not(.tox-checklist--hidden).tox-checklist--checked::before {
|
|
94
|
-
content: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cg%20id%3D%22checklist-checked%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Crect%20id%3D%22Rectangle%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%234099FF%22%20fill-rule%3D%22nonzero%22%20rx%3D%222%22%2F%3E%3Cpath%20id%3D%22Path%22%20fill%3D%22%23FFF%22%20fill-rule%3D%22nonzero%22%20d%3D%22M11.5703186%2C3.14417309%20C11.8516238%2C2.73724603%2012.4164781%2C2.62829933%2012.83558%2C2.89774797%20C13.260121%2C3.17069355%2013.3759736%2C3.72932262%2013.0909105%2C4.14168582%20L7.7580587%2C11.8560195%20C7.43776896%2C12.3193404%206.76483983%2C12.3852142%206.35607322%2C11.9948725%20L3.02491697%2C8.8138662%20C2.66090143%2C8.46625845%202.65798871%2C7.89594698%203.01850234%2C7.54483354%20C3.373942%2C7.19866177%203.94940006%2C7.19592841%204.30829608%2C7.5386474%20L6.85276923%2C9.9684299%20L11.5703186%2C3.14417309%20Z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
|
|
95
|
-
}
|
|
96
|
-
[dir=rtl] .tox-checklist > li:not(.tox-checklist--hidden)::before {
|
|
97
|
-
margin-left: 0;
|
|
98
|
-
margin-right: -1.5em;
|
|
99
|
-
}
|
|
100
|
-
/* stylelint-disable */
|
|
101
|
-
/* http://prismjs.com/ */
|
|
102
|
-
/**
|
|
103
|
-
* Dracula Theme originally by Zeno Rocha [@zenorocha]
|
|
104
|
-
* https://draculatheme.com/
|
|
105
|
-
*
|
|
106
|
-
* Ported for PrismJS by Albert Vallverdu [@byverdu]
|
|
107
|
-
*/
|
|
108
|
-
code[class*="language-"],
|
|
109
|
-
pre[class*="language-"] {
|
|
110
|
-
color: #f8f8f2;
|
|
111
|
-
background: none;
|
|
112
|
-
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
|
113
|
-
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
|
114
|
-
text-align: left;
|
|
115
|
-
white-space: pre;
|
|
116
|
-
word-spacing: normal;
|
|
117
|
-
word-break: normal;
|
|
118
|
-
word-wrap: normal;
|
|
119
|
-
line-height: 1.5;
|
|
120
|
-
tab-size: 4;
|
|
121
|
-
hyphens: none;
|
|
122
|
-
}
|
|
123
|
-
/* Code blocks */
|
|
124
|
-
pre[class*="language-"] {
|
|
125
|
-
padding: 1em;
|
|
126
|
-
margin: 0.5em 0;
|
|
127
|
-
overflow: auto;
|
|
128
|
-
border-radius: 0.3em;
|
|
129
|
-
}
|
|
130
|
-
:not(pre) > code[class*="language-"],
|
|
131
|
-
pre[class*="language-"] {
|
|
132
|
-
background: #282a36;
|
|
133
|
-
}
|
|
134
|
-
/* Inline code */
|
|
135
|
-
:not(pre) > code[class*="language-"] {
|
|
136
|
-
padding: 0.1em;
|
|
137
|
-
border-radius: 0.3em;
|
|
138
|
-
white-space: normal;
|
|
139
|
-
}
|
|
140
|
-
.token.comment,
|
|
141
|
-
.token.prolog,
|
|
142
|
-
.token.doctype,
|
|
143
|
-
.token.cdata {
|
|
144
|
-
color: #6272a4;
|
|
145
|
-
}
|
|
146
|
-
.token.punctuation {
|
|
147
|
-
color: #f8f8f2;
|
|
148
|
-
}
|
|
149
|
-
.namespace {
|
|
150
|
-
opacity: 0.7;
|
|
151
|
-
}
|
|
152
|
-
.token.property,
|
|
153
|
-
.token.tag,
|
|
154
|
-
.token.constant,
|
|
155
|
-
.token.symbol,
|
|
156
|
-
.token.deleted {
|
|
157
|
-
color: #ff79c6;
|
|
158
|
-
}
|
|
159
|
-
.token.boolean,
|
|
160
|
-
.token.number {
|
|
161
|
-
color: #bd93f9;
|
|
162
|
-
}
|
|
163
|
-
.token.selector,
|
|
164
|
-
.token.attr-name,
|
|
165
|
-
.token.string,
|
|
166
|
-
.token.char,
|
|
167
|
-
.token.builtin,
|
|
168
|
-
.token.inserted {
|
|
169
|
-
color: #50fa7b;
|
|
170
|
-
}
|
|
171
|
-
.token.operator,
|
|
172
|
-
.token.entity,
|
|
173
|
-
.token.url,
|
|
174
|
-
.language-css .token.string,
|
|
175
|
-
.style .token.string,
|
|
176
|
-
.token.variable {
|
|
177
|
-
color: #f8f8f2;
|
|
178
|
-
}
|
|
179
|
-
.token.atrule,
|
|
180
|
-
.token.attr-value,
|
|
181
|
-
.token.function,
|
|
182
|
-
.token.class-name {
|
|
183
|
-
color: #f1fa8c;
|
|
184
|
-
}
|
|
185
|
-
.token.keyword {
|
|
186
|
-
color: #8be9fd;
|
|
187
|
-
}
|
|
188
|
-
.token.regex,
|
|
189
|
-
.token.important {
|
|
190
|
-
color: #ffb86c;
|
|
191
|
-
}
|
|
192
|
-
.token.important,
|
|
193
|
-
.token.bold {
|
|
194
|
-
font-weight: bold;
|
|
195
|
-
}
|
|
196
|
-
.token.italic {
|
|
197
|
-
font-style: italic;
|
|
198
|
-
}
|
|
199
|
-
.token.entity {
|
|
200
|
-
cursor: help;
|
|
201
|
-
}
|
|
202
|
-
/* stylelint-enable */
|
|
203
|
-
.mce-content-body {
|
|
204
|
-
overflow-wrap: break-word;
|
|
205
|
-
word-wrap: break-word;
|
|
206
|
-
}
|
|
207
|
-
.mce-content-body .mce-visual-caret {
|
|
208
|
-
background-color: black;
|
|
209
|
-
background-color: currentColor;
|
|
210
|
-
position: absolute;
|
|
211
|
-
}
|
|
212
|
-
.mce-content-body .mce-visual-caret-hidden {
|
|
213
|
-
display: none;
|
|
214
|
-
}
|
|
215
|
-
.mce-content-body *[data-mce-caret] {
|
|
216
|
-
left: -1000px;
|
|
217
|
-
margin: 0;
|
|
218
|
-
padding: 0;
|
|
219
|
-
position: absolute;
|
|
220
|
-
right: auto;
|
|
221
|
-
top: 0;
|
|
222
|
-
}
|
|
223
|
-
.mce-content-body .mce-offscreen-selection {
|
|
224
|
-
left: -2000000px;
|
|
225
|
-
max-width: 1000000px;
|
|
226
|
-
position: absolute;
|
|
227
|
-
}
|
|
228
|
-
.mce-content-body *[contentEditable=false] {
|
|
229
|
-
cursor: default;
|
|
230
|
-
}
|
|
231
|
-
.mce-content-body *[contentEditable=true] {
|
|
232
|
-
cursor: text;
|
|
233
|
-
}
|
|
234
|
-
.tox-cursor-format-painter {
|
|
235
|
-
cursor: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%0A%20%20%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M15%2C6%20C15%2C5.45%2014.55%2C5%2014%2C5%20L6%2C5%20C5.45%2C5%205%2C5.45%205%2C6%20L5%2C10%20C5%2C10.55%205.45%2C11%206%2C11%20L14%2C11%20C14.55%2C11%2015%2C10.55%2015%2C10%20L15%2C9%20L16%2C9%20L16%2C12%20L9%2C12%20L9%2C19%20C9%2C19.55%209.45%2C20%2010%2C20%20L11%2C20%20C11.55%2C20%2012%2C19.55%2012%2C19%20L12%2C14%20L18%2C14%20L18%2C7%20L15%2C7%20L15%2C6%20Z%22%2F%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23000%22%20fill-rule%3D%22nonzero%22%20d%3D%22M1%2C1%20L8.25%2C1%20C8.66421356%2C1%209%2C1.33578644%209%2C1.75%20L9%2C1.75%20C9%2C2.16421356%208.66421356%2C2.5%208.25%2C2.5%20L2.5%2C2.5%20L2.5%2C8.25%20C2.5%2C8.66421356%202.16421356%2C9%201.75%2C9%20L1.75%2C9%20C1.33578644%2C9%201%2C8.66421356%201%2C8.25%20L1%2C1%20Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A"), default;
|
|
236
|
-
}
|
|
237
|
-
div.mce-footnotes hr {
|
|
238
|
-
margin-inline: 0 auto;
|
|
239
|
-
width: 25%;
|
|
240
|
-
}
|
|
241
|
-
div.mce-footnotes li > a.mce-footnotes-backlink {
|
|
242
|
-
-webkit-text-decoration: none;
|
|
243
|
-
text-decoration: none;
|
|
244
|
-
}
|
|
245
|
-
@media print {
|
|
246
|
-
sup.mce-footnote a {
|
|
247
|
-
color: black;
|
|
248
|
-
-webkit-text-decoration: none;
|
|
249
|
-
text-decoration: none;
|
|
250
|
-
}
|
|
251
|
-
div.mce-footnotes {
|
|
252
|
-
page-break-inside: avoid;
|
|
253
|
-
break-inside: avoid;
|
|
254
|
-
width: 100%;
|
|
255
|
-
}
|
|
256
|
-
div.mce-footnotes li > a.mce-footnotes-backlink {
|
|
257
|
-
display: none;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
/* stylelint-disable selector-type-no-unknown */
|
|
261
|
-
tiny-math-block {
|
|
262
|
-
display: flex;
|
|
263
|
-
justify-content: center;
|
|
264
|
-
margin: 16px 0 16px 0;
|
|
265
|
-
}
|
|
266
|
-
tiny-math-inline {
|
|
267
|
-
display: inline-block;
|
|
268
|
-
}
|
|
269
|
-
/* stylelint-enable selector-type-no-unknown */
|
|
270
|
-
.mce-content-body figure.align-left {
|
|
271
|
-
float: left;
|
|
272
|
-
}
|
|
273
|
-
.mce-content-body figure.align-right {
|
|
274
|
-
float: right;
|
|
275
|
-
}
|
|
276
|
-
.mce-content-body figure.image.align-center {
|
|
277
|
-
display: table;
|
|
278
|
-
margin-left: auto;
|
|
279
|
-
margin-right: auto;
|
|
280
|
-
}
|
|
281
|
-
.mce-preview-object {
|
|
282
|
-
border: 1px solid gray;
|
|
283
|
-
display: inline-block;
|
|
284
|
-
line-height: 0;
|
|
285
|
-
margin: 0 2px;
|
|
286
|
-
position: relative;
|
|
287
|
-
}
|
|
288
|
-
.mce-preview-object .mce-shim {
|
|
289
|
-
background: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
|
|
290
|
-
height: 100%;
|
|
291
|
-
left: 0;
|
|
292
|
-
position: absolute;
|
|
293
|
-
top: 0;
|
|
294
|
-
width: 100%;
|
|
295
|
-
}
|
|
296
|
-
.mce-preview-object[data-mce-selected="2"] .mce-shim {
|
|
297
|
-
display: none;
|
|
298
|
-
}
|
|
299
|
-
.mce-content-body .mce-mergetag {
|
|
300
|
-
cursor: default !important;
|
|
301
|
-
-webkit-user-select: none;
|
|
302
|
-
user-select: none;
|
|
303
|
-
}
|
|
304
|
-
.mce-content-body .mce-mergetag:hover {
|
|
305
|
-
background-color: rgba(0, 108, 231, 0.3);
|
|
306
|
-
}
|
|
307
|
-
.mce-content-body .mce-mergetag-affix {
|
|
308
|
-
background-color: rgba(0, 108, 231, 0.3);
|
|
309
|
-
color: #006ce7;
|
|
310
|
-
}
|
|
311
|
-
.mce-object {
|
|
312
|
-
background: transparent url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1zm1%202v14h14V5H5zm4.79%202.565l5.64%204.028a.5.5%200%200%201%200%20.814l-5.64%204.028a.5.5%200%200%201-.79-.407V7.972a.5.5%200%200%201%20.79-.407z%22%20fill%3D%22%23cccccc%22%2F%3E%3C%2Fsvg%3E%0A") no-repeat center;
|
|
313
|
-
border: 1px dashed #aaa;
|
|
314
|
-
}
|
|
315
|
-
.mce-pagebreak {
|
|
316
|
-
border: 1px dashed #aaa;
|
|
317
|
-
cursor: default;
|
|
318
|
-
display: block;
|
|
319
|
-
height: 5px;
|
|
320
|
-
margin-top: 15px;
|
|
321
|
-
page-break-before: always;
|
|
322
|
-
width: 100%;
|
|
323
|
-
}
|
|
324
|
-
@media print {
|
|
325
|
-
.mce-pagebreak {
|
|
326
|
-
border: 0;
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
.tiny-pageembed .mce-shim {
|
|
330
|
-
background: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
|
|
331
|
-
height: 100%;
|
|
332
|
-
left: 0;
|
|
333
|
-
position: absolute;
|
|
334
|
-
top: 0;
|
|
335
|
-
width: 100%;
|
|
336
|
-
}
|
|
337
|
-
.tiny-pageembed[data-mce-selected="2"] .mce-shim {
|
|
338
|
-
display: none;
|
|
339
|
-
}
|
|
340
|
-
.tiny-pageembed {
|
|
341
|
-
display: inline-block;
|
|
342
|
-
position: relative;
|
|
343
|
-
}
|
|
344
|
-
.tiny-pageembed--21by9,
|
|
345
|
-
.tiny-pageembed--16by9,
|
|
346
|
-
.tiny-pageembed--4by3,
|
|
347
|
-
.tiny-pageembed--1by1 {
|
|
348
|
-
display: block;
|
|
349
|
-
overflow: hidden;
|
|
350
|
-
padding: 0;
|
|
351
|
-
position: relative;
|
|
352
|
-
width: 100%;
|
|
353
|
-
}
|
|
354
|
-
.tiny-pageembed--21by9 {
|
|
355
|
-
padding-top: 42.857143%;
|
|
356
|
-
}
|
|
357
|
-
.tiny-pageembed--16by9 {
|
|
358
|
-
padding-top: 56.25%;
|
|
359
|
-
}
|
|
360
|
-
.tiny-pageembed--4by3 {
|
|
361
|
-
padding-top: 75%;
|
|
362
|
-
}
|
|
363
|
-
.tiny-pageembed--1by1 {
|
|
364
|
-
padding-top: 100%;
|
|
365
|
-
}
|
|
366
|
-
.tiny-pageembed--21by9 iframe,
|
|
367
|
-
.tiny-pageembed--16by9 iframe,
|
|
368
|
-
.tiny-pageembed--4by3 iframe,
|
|
369
|
-
.tiny-pageembed--1by1 iframe {
|
|
370
|
-
border: 0;
|
|
371
|
-
height: 100%;
|
|
372
|
-
left: 0;
|
|
373
|
-
position: absolute;
|
|
374
|
-
top: 0;
|
|
375
|
-
width: 100%;
|
|
376
|
-
}
|
|
377
|
-
.mce-content-body[data-mce-placeholder] {
|
|
378
|
-
position: relative;
|
|
379
|
-
}
|
|
380
|
-
.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
381
|
-
color: rgba(34, 47, 62, 0.7);
|
|
382
|
-
content: attr(data-mce-placeholder);
|
|
383
|
-
position: absolute;
|
|
384
|
-
}
|
|
385
|
-
@media (forced-colors: active) {
|
|
386
|
-
.mce-content-body[data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
387
|
-
color: highlight;
|
|
388
|
-
filter: brightness(30%);
|
|
389
|
-
z-index: -1;
|
|
390
|
-
}
|
|
391
|
-
}
|
|
392
|
-
.mce-content-body:not([dir=rtl])[data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
393
|
-
left: 1px;
|
|
394
|
-
}
|
|
395
|
-
.mce-content-body[dir=rtl][data-mce-placeholder]:not(.mce-visualblocks)::before {
|
|
396
|
-
right: 1px;
|
|
397
|
-
}
|
|
398
|
-
@media print {
|
|
399
|
-
.mce-content-body .mce-placeholder,
|
|
400
|
-
.mce-content-body [data-mce-bogus=all],
|
|
401
|
-
.mce-content-body [data-mce-bogus] {
|
|
402
|
-
display: none !important;
|
|
403
|
-
}
|
|
404
|
-
.mce-content-body .mce-visual-caret {
|
|
405
|
-
display: none !important;
|
|
406
|
-
}
|
|
407
|
-
.mce-content-body [data-mce-selected],
|
|
408
|
-
.mce-content-body *:focus,
|
|
409
|
-
.mce-content-body .mce-edit-focus {
|
|
410
|
-
outline: none !important;
|
|
411
|
-
}
|
|
412
|
-
}
|
|
413
|
-
.mce-content-body div.mce-resizehandle {
|
|
414
|
-
background-color: #4099ff;
|
|
415
|
-
border-color: #4099ff;
|
|
416
|
-
border-style: solid;
|
|
417
|
-
border-width: 1px;
|
|
418
|
-
box-sizing: border-box;
|
|
419
|
-
height: 10px;
|
|
420
|
-
position: absolute;
|
|
421
|
-
width: 10px;
|
|
422
|
-
z-index: 1298;
|
|
423
|
-
}
|
|
424
|
-
.mce-content-body div.mce-resizehandle:hover {
|
|
425
|
-
background-color: #4099ff;
|
|
426
|
-
}
|
|
427
|
-
.mce-content-body div.mce-resizehandle:nth-of-type(1) {
|
|
428
|
-
cursor: nwse-resize;
|
|
429
|
-
}
|
|
430
|
-
.mce-content-body div.mce-resizehandle:nth-of-type(2) {
|
|
431
|
-
cursor: nesw-resize;
|
|
432
|
-
}
|
|
433
|
-
.mce-content-body div.mce-resizehandle:nth-of-type(3) {
|
|
434
|
-
cursor: nwse-resize;
|
|
435
|
-
}
|
|
436
|
-
.mce-content-body div.mce-resizehandle:nth-of-type(4) {
|
|
437
|
-
cursor: nesw-resize;
|
|
438
|
-
}
|
|
439
|
-
.mce-content-body .mce-resize-backdrop {
|
|
440
|
-
z-index: 10000;
|
|
441
|
-
}
|
|
442
|
-
.mce-content-body .mce-clonedresizable {
|
|
443
|
-
cursor: default;
|
|
444
|
-
opacity: 0.5;
|
|
445
|
-
outline: 1px dashed black;
|
|
446
|
-
position: absolute;
|
|
447
|
-
z-index: 10001;
|
|
448
|
-
}
|
|
449
|
-
.mce-content-body .mce-clonedresizable.mce-resizetable-columns th,
|
|
450
|
-
.mce-content-body .mce-clonedresizable.mce-resizetable-columns td {
|
|
451
|
-
border: 0;
|
|
452
|
-
}
|
|
453
|
-
.mce-content-body .mce-resize-helper {
|
|
454
|
-
background: #555;
|
|
455
|
-
background: rgba(0 0 0%);
|
|
456
|
-
border: 1px;
|
|
457
|
-
border-radius: 3px;
|
|
458
|
-
color: white;
|
|
459
|
-
display: none;
|
|
460
|
-
font-family: sans-serif;
|
|
461
|
-
font-size: 12px;
|
|
462
|
-
line-height: 14px;
|
|
463
|
-
margin: 5px 10px;
|
|
464
|
-
padding: 5px;
|
|
465
|
-
position: absolute;
|
|
466
|
-
white-space: nowrap;
|
|
467
|
-
z-index: 10002;
|
|
468
|
-
}
|
|
469
|
-
.tox-rtc-user-selection {
|
|
470
|
-
position: relative;
|
|
471
|
-
}
|
|
472
|
-
.tox-rtc-user-cursor {
|
|
473
|
-
bottom: 0;
|
|
474
|
-
cursor: default;
|
|
475
|
-
position: absolute;
|
|
476
|
-
top: 0;
|
|
477
|
-
width: 2px;
|
|
478
|
-
}
|
|
479
|
-
.tox-rtc-user-cursor::before {
|
|
480
|
-
background-color: inherit;
|
|
481
|
-
border-radius: 50%;
|
|
482
|
-
content: '';
|
|
483
|
-
display: block;
|
|
484
|
-
height: 8px;
|
|
485
|
-
position: absolute;
|
|
486
|
-
right: -3px;
|
|
487
|
-
top: -3px;
|
|
488
|
-
width: 8px;
|
|
489
|
-
}
|
|
490
|
-
.tox-rtc-user-cursor:hover::after {
|
|
491
|
-
background-color: inherit;
|
|
492
|
-
border-radius: 100px;
|
|
493
|
-
box-sizing: border-box;
|
|
494
|
-
color: #fff;
|
|
495
|
-
content: attr(data-user);
|
|
496
|
-
display: block;
|
|
497
|
-
font-size: 12px;
|
|
498
|
-
font-weight: bold;
|
|
499
|
-
left: -5px;
|
|
500
|
-
min-height: 8px;
|
|
501
|
-
min-width: 8px;
|
|
502
|
-
padding: 0 12px;
|
|
503
|
-
position: absolute;
|
|
504
|
-
top: -11px;
|
|
505
|
-
white-space: nowrap;
|
|
506
|
-
z-index: 1000;
|
|
507
|
-
}
|
|
508
|
-
.tox-rtc-user-selection--1 .tox-rtc-user-cursor {
|
|
509
|
-
background-color: #2dc26b;
|
|
510
|
-
}
|
|
511
|
-
.tox-rtc-user-selection--2 .tox-rtc-user-cursor {
|
|
512
|
-
background-color: #e03e2d;
|
|
513
|
-
}
|
|
514
|
-
.tox-rtc-user-selection--3 .tox-rtc-user-cursor {
|
|
515
|
-
background-color: #f1c40f;
|
|
516
|
-
}
|
|
517
|
-
.tox-rtc-user-selection--4 .tox-rtc-user-cursor {
|
|
518
|
-
background-color: #3598db;
|
|
519
|
-
}
|
|
520
|
-
.tox-rtc-user-selection--5 .tox-rtc-user-cursor {
|
|
521
|
-
background-color: #b96ad9;
|
|
522
|
-
}
|
|
523
|
-
.tox-rtc-user-selection--6 .tox-rtc-user-cursor {
|
|
524
|
-
background-color: #e67e23;
|
|
525
|
-
}
|
|
526
|
-
.tox-rtc-user-selection--7 .tox-rtc-user-cursor {
|
|
527
|
-
background-color: #aaa69d;
|
|
528
|
-
}
|
|
529
|
-
.tox-rtc-user-selection--8 .tox-rtc-user-cursor {
|
|
530
|
-
background-color: #f368e0;
|
|
531
|
-
}
|
|
532
|
-
.tox-rtc-remote-image {
|
|
533
|
-
background: #eaeaea url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2236%22%20height%3D%2212%22%20viewBox%3D%220%200%2036%2012%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%3Ccircle%20cx%3D%226%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2218%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.33s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%20%20%3Ccircle%20cx%3D%2230%22%20cy%3D%226%22%20r%3D%223%22%20fill%3D%22rgba(0%2C%200%2C%200%2C%20.2)%22%3E%0A%20%20%20%20%3Canimate%20attributeName%3D%22r%22%20values%3D%223%3B5%3B3%22%20calcMode%3D%22linear%22%20begin%3D%22.66s%22%20dur%3D%221s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%0A%20%20%3C%2Fcircle%3E%0A%3C%2Fsvg%3E%0A") no-repeat center center;
|
|
534
|
-
border: 1px solid #ccc;
|
|
535
|
-
min-height: 240px;
|
|
536
|
-
min-width: 320px;
|
|
537
|
-
}
|
|
538
|
-
.mce-match-marker {
|
|
539
|
-
background: #aaa;
|
|
540
|
-
color: #fff;
|
|
541
|
-
}
|
|
542
|
-
.mce-match-marker-selected {
|
|
543
|
-
background: #39f;
|
|
544
|
-
color: #fff;
|
|
545
|
-
}
|
|
546
|
-
.mce-match-marker-selected::selection {
|
|
547
|
-
background: #39f;
|
|
548
|
-
color: #fff;
|
|
549
|
-
}
|
|
550
|
-
.mce-content-body img[data-mce-selected],
|
|
551
|
-
.mce-content-body video[data-mce-selected],
|
|
552
|
-
.mce-content-body audio[data-mce-selected],
|
|
553
|
-
.mce-content-body object[data-mce-selected],
|
|
554
|
-
.mce-content-body embed[data-mce-selected],
|
|
555
|
-
.mce-content-body table[data-mce-selected],
|
|
556
|
-
.mce-content-body details[data-mce-selected] {
|
|
557
|
-
outline: 3px solid #4099ff;
|
|
558
|
-
}
|
|
559
|
-
.mce-content-body hr[data-mce-selected] {
|
|
560
|
-
outline: 3px solid #4099ff;
|
|
561
|
-
outline-offset: 1px;
|
|
562
|
-
}
|
|
563
|
-
.mce-content-body *[contentEditable=false] *[contentEditable=true]:focus {
|
|
564
|
-
outline: 3px solid #4099ff;
|
|
565
|
-
}
|
|
566
|
-
.mce-content-body *[contentEditable=false] *[contentEditable=true]:hover {
|
|
567
|
-
outline: 3px solid #4099ff;
|
|
568
|
-
}
|
|
569
|
-
.mce-content-body *[contentEditable=false][data-mce-selected] {
|
|
570
|
-
cursor: not-allowed;
|
|
571
|
-
outline: 3px solid #4099ff;
|
|
572
|
-
}
|
|
573
|
-
.mce-content-body *[data-mce-selected="inline-boundary"] {
|
|
574
|
-
background-color: #4099ff;
|
|
575
|
-
}
|
|
576
|
-
.mce-content-body .mce-edit-focus {
|
|
577
|
-
outline: 3px solid #4099ff;
|
|
578
|
-
}
|
|
579
|
-
.mce-content-body td[data-mce-selected],
|
|
580
|
-
.mce-content-body th[data-mce-selected] {
|
|
581
|
-
position: relative;
|
|
582
|
-
}
|
|
583
|
-
.mce-content-body td[data-mce-selected]::selection,
|
|
584
|
-
.mce-content-body th[data-mce-selected]::selection {
|
|
585
|
-
background: none;
|
|
586
|
-
}
|
|
587
|
-
.mce-content-body td[data-mce-selected] *,
|
|
588
|
-
.mce-content-body th[data-mce-selected] * {
|
|
589
|
-
outline: none;
|
|
590
|
-
-webkit-touch-callout: none;
|
|
591
|
-
-webkit-user-select: none;
|
|
592
|
-
user-select: none;
|
|
593
|
-
}
|
|
594
|
-
.mce-content-body td[data-mce-selected]::after,
|
|
595
|
-
.mce-content-body th[data-mce-selected]::after {
|
|
596
|
-
background-color: rgba(180, 215, 255, 0.7);
|
|
597
|
-
border: 1px solid transparent;
|
|
598
|
-
bottom: -1px;
|
|
599
|
-
content: '';
|
|
600
|
-
left: -1px;
|
|
601
|
-
mix-blend-mode: lighten;
|
|
602
|
-
position: absolute;
|
|
603
|
-
right: -1px;
|
|
604
|
-
top: -1px;
|
|
605
|
-
}
|
|
606
|
-
.mce-content-body img[data-mce-selected]::selection {
|
|
607
|
-
background: none;
|
|
608
|
-
}
|
|
609
|
-
.ephox-snooker-resizer-bar {
|
|
610
|
-
background-color: #4099ff;
|
|
611
|
-
opacity: 0;
|
|
612
|
-
-webkit-user-select: none;
|
|
613
|
-
user-select: none;
|
|
614
|
-
}
|
|
615
|
-
.ephox-snooker-resizer-cols {
|
|
616
|
-
cursor: col-resize;
|
|
617
|
-
}
|
|
618
|
-
.ephox-snooker-resizer-rows {
|
|
619
|
-
cursor: row-resize;
|
|
620
|
-
}
|
|
621
|
-
.ephox-snooker-resizer-bar.ephox-snooker-resizer-bar-dragging {
|
|
622
|
-
opacity: 1;
|
|
623
|
-
}
|
|
624
|
-
.mce-spellchecker-word {
|
|
625
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%23ff0000'%20fill%3D'none'%20stroke-linecap%3D'round'%20stroke-opacity%3D'.75'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
|
|
626
|
-
background-position: 0 calc(100% + 1px);
|
|
627
|
-
background-repeat: repeat-x;
|
|
628
|
-
background-size: auto 6px;
|
|
629
|
-
cursor: default;
|
|
630
|
-
height: 2rem;
|
|
631
|
-
}
|
|
632
|
-
.mce-spellchecker-grammar {
|
|
633
|
-
background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D'4'%20height%3D'4'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20stroke%3D'%2300A835'%20fill%3D'none'%20stroke-linecap%3D'round'%20d%3D'M0%203L2%201%204%203'%2F%3E%3C%2Fsvg%3E%0A");
|
|
634
|
-
background-position: 0 calc(100% + 1px);
|
|
635
|
-
background-repeat: repeat-x;
|
|
636
|
-
background-size: auto 6px;
|
|
637
|
-
cursor: default;
|
|
638
|
-
}
|
|
639
|
-
.tox-suggestededits__annotation--added,
|
|
640
|
-
.tox-suggestededits__annotation--modified,
|
|
641
|
-
.tox-suggestededits__annotation--removed {
|
|
642
|
-
-webkit-text-decoration: none;
|
|
643
|
-
text-decoration: none;
|
|
644
|
-
}
|
|
645
|
-
.tox-suggestededits__annotation--added__highlight {
|
|
646
|
-
background-color: rgba(120, 171, 70, 0.2);
|
|
647
|
-
-webkit-text-decoration: underline;
|
|
648
|
-
text-decoration: underline;
|
|
649
|
-
}
|
|
650
|
-
.tox-suggestededits__annotation--added__selected {
|
|
651
|
-
background-color: rgba(120, 171, 70, 0.2);
|
|
652
|
-
box-shadow: 0 -2px 0 0 #006ce7 inset, 0 -2px 0 0 #006ce7;
|
|
653
|
-
-webkit-text-decoration: none;
|
|
654
|
-
text-decoration: none;
|
|
655
|
-
}
|
|
656
|
-
.tox-suggestededits__annotation--modified__highlight {
|
|
657
|
-
background-color: rgba(0, 108, 231, 0.2);
|
|
658
|
-
-webkit-text-decoration: underline;
|
|
659
|
-
text-decoration: underline;
|
|
660
|
-
}
|
|
661
|
-
.tox-suggestededits__annotation--modified__selected {
|
|
662
|
-
background-color: rgba(0, 108, 231, 0.2);
|
|
663
|
-
box-shadow: 0 -2px 0 0 #006ce7 inset, 0 -2px 0 0 #006ce7;
|
|
664
|
-
-webkit-text-decoration: none;
|
|
665
|
-
text-decoration: none;
|
|
666
|
-
}
|
|
667
|
-
.tox-suggestededits__annotation--removed__highlight {
|
|
668
|
-
background-color: rgba(204, 0, 0, 0.2);
|
|
669
|
-
-webkit-text-decoration: line-through;
|
|
670
|
-
text-decoration: line-through;
|
|
671
|
-
}
|
|
672
|
-
.tox-suggestededits__annotation--removed__selected {
|
|
673
|
-
background-color: rgba(204, 0, 0, 0.2);
|
|
674
|
-
box-shadow: 0 -2px 0 0 #006ce7 inset, 0 -2px 0 0 #006ce7;
|
|
675
|
-
-webkit-text-decoration: line-through;
|
|
676
|
-
text-decoration: line-through;
|
|
677
|
-
}
|
|
678
|
-
.tox-suggestededits__annotation--added.tox-suggestededits__annotation--added__hidden,
|
|
679
|
-
.tox-suggestededits__annotation--modified.tox-suggestededits__annotation--modified__hidden,
|
|
680
|
-
.tox-suggestededits__annotation--removed.tox-suggestededits__annotation--removed__hidden {
|
|
681
|
-
display: none;
|
|
682
|
-
-webkit-text-decoration: none;
|
|
683
|
-
text-decoration: none;
|
|
684
|
-
}
|
|
685
|
-
*:has(> div > iframe).tox-suggestededits__annotation--added,
|
|
686
|
-
*:has(> div > iframe).tox-suggestededits__annotation--modified,
|
|
687
|
-
*:has(> div > iframe).tox-suggestededits__annotation--removed {
|
|
688
|
-
padding: 7px;
|
|
689
|
-
margin: 5px;
|
|
690
|
-
}
|
|
691
|
-
img.tox-suggestededits__annotation--added__highlight,
|
|
692
|
-
video.tox-suggestededits__annotation--added__highlight,
|
|
693
|
-
iframe.tox-suggestededits__annotation--added__highlight {
|
|
694
|
-
outline: 0.25em solid rgba(120, 171, 70, 0.2);
|
|
695
|
-
padding: 0.25em;
|
|
696
|
-
}
|
|
697
|
-
img.tox-suggestededits__annotation--added__selected,
|
|
698
|
-
video.tox-suggestededits__annotation--added__selected,
|
|
699
|
-
iframe.tox-suggestededits__annotation--added__selected {
|
|
700
|
-
border: 0.25em solid rgba(120, 171, 70, 0.2);
|
|
701
|
-
outline: 0.125em solid #006ce7;
|
|
702
|
-
padding: 0em;
|
|
703
|
-
}
|
|
704
|
-
img.tox-suggestededits__annotation--modified__highlight,
|
|
705
|
-
video.tox-suggestededits__annotation--modified__highlight,
|
|
706
|
-
iframe.tox-suggestededits__annotation--modified__highlight {
|
|
707
|
-
outline: 0.25em solid rgba(0, 108, 231, 0.2);
|
|
708
|
-
padding: 0.25em;
|
|
709
|
-
}
|
|
710
|
-
img.tox-suggestededits__annotation--modified__selected,
|
|
711
|
-
video.tox-suggestededits__annotation--modified__selected,
|
|
712
|
-
iframe.tox-suggestededits__annotation--modified__selected {
|
|
713
|
-
border: 0.25em solid rgba(0, 108, 231, 0.2);
|
|
714
|
-
outline: 0.125em solid #006ce7;
|
|
715
|
-
padding: 0em;
|
|
716
|
-
}
|
|
717
|
-
img.tox-suggestededits__annotation--removed__highlight,
|
|
718
|
-
video.tox-suggestededits__annotation--removed__highlight,
|
|
719
|
-
iframe.tox-suggestededits__annotation--removed__highlight {
|
|
720
|
-
outline: 0.25em solid rgba(204, 0, 0, 0.2);
|
|
721
|
-
padding: 0.25em;
|
|
722
|
-
}
|
|
723
|
-
img.tox-suggestededits__annotation--removed__selected,
|
|
724
|
-
video.tox-suggestededits__annotation--removed__selected,
|
|
725
|
-
iframe.tox-suggestededits__annotation--removed__selected {
|
|
726
|
-
border: 0.25em solid rgba(204, 0, 0, 0.2);
|
|
727
|
-
outline: 0.125em solid #006ce7;
|
|
728
|
-
padding: 0em;
|
|
729
|
-
}
|
|
730
|
-
div.tox-suggestededits__annotation:has(> hr) {
|
|
731
|
-
padding: 0.25em;
|
|
732
|
-
}
|
|
733
|
-
div.tox-suggestededits__annotation--removed__highlight > hr {
|
|
734
|
-
border-color: rgba(0, 0, 0, 0.2);
|
|
735
|
-
}
|
|
736
|
-
div.tox-suggestededits__annotation--added__highlight > hr {
|
|
737
|
-
border-color: rgba(0, 0, 0, 0.2);
|
|
738
|
-
}
|
|
739
|
-
.mce-pagebreak.tox-suggestededits__annotation--added__selected,
|
|
740
|
-
.mce-pagebreak.tox-suggestededits__annotation--removed__selected,
|
|
741
|
-
.mce-pagebreak.tox-suggestededits__annotation--modified__selected {
|
|
742
|
-
border: 1px dashed #aaa;
|
|
743
|
-
box-shadow: none;
|
|
744
|
-
}
|
|
745
|
-
.mce-pagebreak.tox-suggestededits__annotation--added__highlight,
|
|
746
|
-
.mce-pagebreak.tox-suggestededits__annotation--modified__highlight,
|
|
747
|
-
.mce-pagebreak.tox-suggestededits__annotation--removed__highlight {
|
|
748
|
-
padding: 0;
|
|
749
|
-
}
|
|
750
|
-
.mce-toc {
|
|
751
|
-
border: 1px solid gray;
|
|
752
|
-
}
|
|
753
|
-
.mce-toc h2 {
|
|
754
|
-
margin: 4px;
|
|
755
|
-
}
|
|
756
|
-
.mce-toc ul > li {
|
|
757
|
-
list-style-type: none;
|
|
758
|
-
}
|
|
759
|
-
[data-mce-block] {
|
|
760
|
-
display: block;
|
|
761
|
-
}
|
|
762
|
-
table[style*="border-width: 0px"],
|
|
763
|
-
.mce-item-table:not([border]),
|
|
764
|
-
.mce-item-table[border="0"],
|
|
765
|
-
table[style*="border-width: 0px"] td,
|
|
766
|
-
.mce-item-table:not([border]) td,
|
|
767
|
-
.mce-item-table[border="0"] td,
|
|
768
|
-
table[style*="border-width: 0px"] th,
|
|
769
|
-
.mce-item-table:not([border]) th,
|
|
770
|
-
.mce-item-table[border="0"] th,
|
|
771
|
-
table[style*="border-width: 0px"] caption,
|
|
772
|
-
.mce-item-table:not([border]) caption,
|
|
773
|
-
.mce-item-table[border="0"] caption {
|
|
774
|
-
border: 1px dashed #bbb;
|
|
775
|
-
}
|
|
776
|
-
.tox-uc-loading-background {
|
|
777
|
-
width: 100%;
|
|
778
|
-
height: 100%;
|
|
779
|
-
background: rgba(255, 255, 255, 0.5);
|
|
780
|
-
}
|
|
781
|
-
.tox-uc-loading-spinner-wrapper {
|
|
782
|
-
width: 100%;
|
|
783
|
-
height: 100%;
|
|
784
|
-
display: flex;
|
|
785
|
-
justify-content: center;
|
|
786
|
-
align-items: center;
|
|
787
|
-
}
|
|
788
|
-
.tox-uc-loading-spinner {
|
|
789
|
-
width: min(24px, 30%);
|
|
790
|
-
aspect-ratio: 1;
|
|
791
|
-
border-radius: 50%;
|
|
792
|
-
border: 3px solid #006ce7;
|
|
793
|
-
border-bottom-color: transparent;
|
|
794
|
-
animation: tox-rotation 1s linear infinite;
|
|
795
|
-
}
|
|
796
|
-
.tox-uc-video {
|
|
797
|
-
display: block;
|
|
798
|
-
position: relative;
|
|
799
|
-
margin: 16px 0 16px 0;
|
|
800
|
-
}
|
|
801
|
-
.tox-uc-video:not([data-mce-selected]):after {
|
|
802
|
-
content: "";
|
|
803
|
-
position: absolute;
|
|
804
|
-
top: 0;
|
|
805
|
-
left: 0;
|
|
806
|
-
width: 100%;
|
|
807
|
-
height: 100%;
|
|
808
|
-
}
|
|
809
|
-
.tox-uploadcare-placeholder {
|
|
810
|
-
all: initial;
|
|
811
|
-
display: inline-block;
|
|
812
|
-
position: relative;
|
|
813
|
-
width: min(100%, 600px);
|
|
814
|
-
height: 80px;
|
|
815
|
-
--tox-uploadcare-placeholder--content-cursor: auto !important;
|
|
816
|
-
--tox-uploadcare-placeholder--content-color: rgba(34, 47, 62, 0.7);
|
|
817
|
-
--tox-uploadcare-placeholder--content-background-color: #fff;
|
|
818
|
-
--tox-uploadcare-placeholder--content-border: 2px solid #e3e3e3;
|
|
819
|
-
--tox-uploadcare-placeholder--content-font-family: monospace, sans-serif;
|
|
820
|
-
--tox-uploadcare-placeholder--content-height: 100%;
|
|
821
|
-
--tox-uploadcare-placeholder--content-width: 100%;
|
|
822
|
-
--tox-uploadcare-placeholder--content-display: inline-flex;
|
|
823
|
-
--tox-uploadcare-placeholder--content-align-items: center;
|
|
824
|
-
--tox-uploadcare-placeholder--content-justify-content: center;
|
|
825
|
-
--tox-uploadcare-placeholder--content-gap: 8px;
|
|
826
|
-
--tox-uploadcare-placeholder--icon-fill: rgba(34, 47, 62, 0.7);
|
|
827
|
-
--tox-uploadcare-placeholder--icon-min-width: 24px;
|
|
828
|
-
--tox-uc-loading-spinner-wrapper-display-none: none;
|
|
829
|
-
--tox-uc-loading-spinner-wrapper-display: flex;
|
|
830
|
-
--tox-uc-loading-spinner-wrapper-position: absolute;
|
|
831
|
-
--tox-uc-loading-spinner-wrapper-top: 0;
|
|
832
|
-
--tox-uc-loading-spinner-wrapper-left: 0;
|
|
833
|
-
--tox-uc-loading-spinner-wrapper-width: 100%;
|
|
834
|
-
--tox-uc-loading-spinner-wrapper-height: 100%;
|
|
835
|
-
--tox-uc-loading-spinner-wrapper-justify-content: center;
|
|
836
|
-
--tox-uc-loading-spinner-wrapper-align-items: center;
|
|
837
|
-
--tox-uc-loading-spinner-aspect-ratio: 1 / 1;
|
|
838
|
-
--tox-uc-loading-spinner-width: min(24px, 30%);
|
|
839
|
-
--tox-uc-loading-spinner-border-radius: 50%;
|
|
840
|
-
--tox-uc-loading-spinner-border: 3px solid #006ce7;
|
|
841
|
-
--tox-uc-loading-spinner-border-bottom-color: transparent;
|
|
842
|
-
--tox-uc-loading-spinner-animation: tox-rotation 1s linear infinite;
|
|
843
|
-
}
|
|
844
|
-
@media print {
|
|
845
|
-
tiny-uploadcare-placeholder {
|
|
846
|
-
display: none !important;
|
|
847
|
-
}
|
|
848
|
-
}
|
|
849
|
-
.mce-visualblocks p,
|
|
850
|
-
.mce-visualblocks h1,
|
|
851
|
-
.mce-visualblocks h2,
|
|
852
|
-
.mce-visualblocks h3,
|
|
853
|
-
.mce-visualblocks h4,
|
|
854
|
-
.mce-visualblocks h5,
|
|
855
|
-
.mce-visualblocks h6,
|
|
856
|
-
.mce-visualblocks div:not([data-mce-bogus]),
|
|
857
|
-
.mce-visualblocks section,
|
|
858
|
-
.mce-visualblocks article,
|
|
859
|
-
.mce-visualblocks blockquote,
|
|
860
|
-
.mce-visualblocks address,
|
|
861
|
-
.mce-visualblocks pre,
|
|
862
|
-
.mce-visualblocks figure,
|
|
863
|
-
.mce-visualblocks figcaption,
|
|
864
|
-
.mce-visualblocks hgroup,
|
|
865
|
-
.mce-visualblocks aside,
|
|
866
|
-
.mce-visualblocks ul,
|
|
867
|
-
.mce-visualblocks ol,
|
|
868
|
-
.mce-visualblocks dl {
|
|
869
|
-
background-repeat: no-repeat;
|
|
870
|
-
border: 1px dashed #bbb;
|
|
871
|
-
margin-left: 3px;
|
|
872
|
-
padding-top: 10px;
|
|
873
|
-
}
|
|
874
|
-
.mce-visualblocks p {
|
|
875
|
-
background-image: url(data:image/gif;base64,R0lGODlhCQAJAJEAAAAAAP///7u7u////yH5BAEAAAMALAAAAAAJAAkAAAIQnG+CqCN/mlyvsRUpThG6AgA7);
|
|
876
|
-
}
|
|
877
|
-
.mce-visualblocks h1 {
|
|
878
|
-
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGu1JuxHoAfRNRW3TWXyF2YiRUAOw==);
|
|
879
|
-
}
|
|
880
|
-
.mce-visualblocks h2 {
|
|
881
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8Hybbx4oOuqgTynJd6bGlWg3DkJzoaUAAAOw==);
|
|
882
|
-
}
|
|
883
|
-
.mce-visualblocks h3 {
|
|
884
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIZjI8Hybbx4oOuqgTynJf2Ln2NOHpQpmhAAQA7);
|
|
885
|
-
}
|
|
886
|
-
.mce-visualblocks h4 {
|
|
887
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxInR0zqeAdhtJlXwV1oCll2HaWgAAOw==);
|
|
888
|
-
}
|
|
889
|
-
.mce-visualblocks h5 {
|
|
890
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjane4iq5GlW05GgIkIZUAAAOw==);
|
|
891
|
-
}
|
|
892
|
-
.mce-visualblocks h6 {
|
|
893
|
-
background-image: url(data:image/gif;base64,R0lGODlhDgAKAIABALu7u////yH5BAEAAAEALAAAAAAOAAoAAAIajI8HybbxIoiuwjan04jep1iZ1XRlAo5bVgAAOw==);
|
|
894
|
-
}
|
|
895
|
-
.mce-visualblocks div:not([data-mce-bogus]) {
|
|
896
|
-
background-image: url(data:image/gif;base64,R0lGODlhEgAKAIABALu7u////yH5BAEAAAEALAAAAAASAAoAAAIfjI9poI0cgDywrhuxfbrzDEbQM2Ei5aRjmoySW4pAAQA7);
|
|
897
|
-
}
|
|
898
|
-
.mce-visualblocks section {
|
|
899
|
-
background-image: url(data:image/gif;base64,R0lGODlhKAAKAIABALu7u////yH5BAEAAAEALAAAAAAoAAoAAAI5jI+pywcNY3sBWHdNrplytD2ellDeSVbp+GmWqaDqDMepc8t17Y4vBsK5hDyJMcI6KkuYU+jpjLoKADs=);
|
|
900
|
-
}
|
|
901
|
-
.mce-visualblocks article {
|
|
902
|
-
background-image: url(data:image/gif;base64,R0lGODlhKgAKAIABALu7u////yH5BAEAAAEALAAAAAAqAAoAAAI6jI+pywkNY3wG0GBvrsd2tXGYSGnfiF7ikpXemTpOiJScasYoDJJrjsG9gkCJ0ag6KhmaIe3pjDYBBQA7);
|
|
903
|
-
}
|
|
904
|
-
.mce-visualblocks blockquote {
|
|
905
|
-
background-image: url(data:image/gif;base64,R0lGODlhPgAKAIABALu7u////yH5BAEAAAEALAAAAAA+AAoAAAJPjI+py+0Knpz0xQDyuUhvfoGgIX5iSKZYgq5uNL5q69asZ8s5rrf0yZmpNkJZzFesBTu8TOlDVAabUyatguVhWduud3EyiUk45xhTTgMBBQA7);
|
|
906
|
-
}
|
|
907
|
-
.mce-visualblocks address {
|
|
908
|
-
background-image: url(data:image/gif;base64,R0lGODlhLQAKAIABALu7u////yH5BAEAAAEALAAAAAAtAAoAAAI/jI+pywwNozSP1gDyyZcjb3UaRpXkWaXmZW4OqKLhBmLs+K263DkJK7OJeifh7FicKD9A1/IpGdKkyFpNmCkAADs=);
|
|
909
|
-
}
|
|
910
|
-
.mce-visualblocks pre {
|
|
911
|
-
background-image: url(data:image/gif;base64,R0lGODlhFQAKAIABALu7uwAAACH5BAEAAAEALAAAAAAVAAoAAAIjjI+ZoN0cgDwSmnpz1NCueYERhnibZVKLNnbOq8IvKpJtVQAAOw==);
|
|
912
|
-
}
|
|
913
|
-
.mce-visualblocks figure {
|
|
914
|
-
background-image: url(data:image/gif;base64,R0lGODlhJAAKAIAAALu7u////yH5BAEAAAEALAAAAAAkAAoAAAI0jI+py+2fwAHUSFvD3RlvG4HIp4nX5JFSpnZUJ6LlrM52OE7uSWosBHScgkSZj7dDKnWAAgA7);
|
|
915
|
-
}
|
|
916
|
-
.mce-visualblocks figcaption {
|
|
917
|
-
border: 1px dashed #bbb;
|
|
918
|
-
}
|
|
919
|
-
.mce-visualblocks hgroup {
|
|
920
|
-
background-image: url(data:image/gif;base64,R0lGODlhJwAKAIABALu7uwAAACH5BAEAAAEALAAAAAAnAAoAAAI3jI+pywYNI3uB0gpsRtt5fFnfNZaVSYJil4Wo03Hv6Z62uOCgiXH1kZIIJ8NiIxRrAZNMZAtQAAA7);
|
|
921
|
-
}
|
|
922
|
-
.mce-visualblocks aside {
|
|
923
|
-
background-image: url(data:image/gif;base64,R0lGODlhHgAKAIABAKqqqv///yH5BAEAAAEALAAAAAAeAAoAAAItjI+pG8APjZOTzgtqy7I3f1yehmQcFY4WKZbqByutmW4aHUd6vfcVbgudgpYCADs=);
|
|
924
|
-
}
|
|
925
|
-
.mce-visualblocks ul {
|
|
926
|
-
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIAAALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybGuYnqUVSjvw26DzzXiqIDlVwAAOw==);
|
|
927
|
-
}
|
|
928
|
-
.mce-visualblocks ol {
|
|
929
|
-
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybH6HHt0qourxC6CvzXieHyeWQAAOw==);
|
|
930
|
-
}
|
|
931
|
-
.mce-visualblocks dl {
|
|
932
|
-
background-image: url(data:image/gif;base64,R0lGODlhDQAKAIABALu7u////yH5BAEAAAEALAAAAAANAAoAAAIXjI8GybEOnmOvUoWznTqeuEjNSCqeGRUAOw==);
|
|
933
|
-
}
|
|
934
|
-
.mce-visualblocks:not([dir=rtl]) p,
|
|
935
|
-
.mce-visualblocks:not([dir=rtl]) h1,
|
|
936
|
-
.mce-visualblocks:not([dir=rtl]) h2,
|
|
937
|
-
.mce-visualblocks:not([dir=rtl]) h3,
|
|
938
|
-
.mce-visualblocks:not([dir=rtl]) h4,
|
|
939
|
-
.mce-visualblocks:not([dir=rtl]) h5,
|
|
940
|
-
.mce-visualblocks:not([dir=rtl]) h6,
|
|
941
|
-
.mce-visualblocks:not([dir=rtl]) div:not([data-mce-bogus]),
|
|
942
|
-
.mce-visualblocks:not([dir=rtl]) section,
|
|
943
|
-
.mce-visualblocks:not([dir=rtl]) article,
|
|
944
|
-
.mce-visualblocks:not([dir=rtl]) blockquote,
|
|
945
|
-
.mce-visualblocks:not([dir=rtl]) address,
|
|
946
|
-
.mce-visualblocks:not([dir=rtl]) pre,
|
|
947
|
-
.mce-visualblocks:not([dir=rtl]) figure,
|
|
948
|
-
.mce-visualblocks:not([dir=rtl]) figcaption,
|
|
949
|
-
.mce-visualblocks:not([dir=rtl]) hgroup,
|
|
950
|
-
.mce-visualblocks:not([dir=rtl]) aside,
|
|
951
|
-
.mce-visualblocks:not([dir=rtl]) ul,
|
|
952
|
-
.mce-visualblocks:not([dir=rtl]) ol,
|
|
953
|
-
.mce-visualblocks:not([dir=rtl]) dl {
|
|
954
|
-
margin-left: 3px;
|
|
955
|
-
}
|
|
956
|
-
.mce-visualblocks[dir=rtl] p,
|
|
957
|
-
.mce-visualblocks[dir=rtl] h1,
|
|
958
|
-
.mce-visualblocks[dir=rtl] h2,
|
|
959
|
-
.mce-visualblocks[dir=rtl] h3,
|
|
960
|
-
.mce-visualblocks[dir=rtl] h4,
|
|
961
|
-
.mce-visualblocks[dir=rtl] h5,
|
|
962
|
-
.mce-visualblocks[dir=rtl] h6,
|
|
963
|
-
.mce-visualblocks[dir=rtl] div:not([data-mce-bogus]),
|
|
964
|
-
.mce-visualblocks[dir=rtl] section,
|
|
965
|
-
.mce-visualblocks[dir=rtl] article,
|
|
966
|
-
.mce-visualblocks[dir=rtl] blockquote,
|
|
967
|
-
.mce-visualblocks[dir=rtl] address,
|
|
968
|
-
.mce-visualblocks[dir=rtl] pre,
|
|
969
|
-
.mce-visualblocks[dir=rtl] figure,
|
|
970
|
-
.mce-visualblocks[dir=rtl] figcaption,
|
|
971
|
-
.mce-visualblocks[dir=rtl] hgroup,
|
|
972
|
-
.mce-visualblocks[dir=rtl] aside,
|
|
973
|
-
.mce-visualblocks[dir=rtl] ul,
|
|
974
|
-
.mce-visualblocks[dir=rtl] ol,
|
|
975
|
-
.mce-visualblocks[dir=rtl] dl {
|
|
976
|
-
background-position-x: right;
|
|
977
|
-
margin-right: 3px;
|
|
978
|
-
}
|
|
979
|
-
.mce-nbsp,
|
|
980
|
-
.mce-shy {
|
|
981
|
-
background: #aaa;
|
|
982
|
-
}
|
|
983
|
-
.mce-shy::after {
|
|
984
|
-
content: '-';
|
|
985
|
-
}
|
|
986
|
-
[data-ephox-foam-a11y-violation] {
|
|
987
|
-
outline: 2px solid;
|
|
988
|
-
position: relative;
|
|
989
|
-
}
|
|
990
|
-
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation] {
|
|
991
|
-
outline-width: 4px;
|
|
992
|
-
transition: outline-width 0.1s ease-in-out, background-color 0.1s ease-in-out;
|
|
993
|
-
box-shadow: 0 0 0 99999px #222f3e80;
|
|
994
|
-
z-index: 1;
|
|
995
|
-
}
|
|
996
|
-
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-severity-info] {
|
|
997
|
-
outline-color: #99c4f5;
|
|
998
|
-
}
|
|
999
|
-
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-severity-warn] {
|
|
1000
|
-
outline-color: #ffeb99;
|
|
1001
|
-
}
|
|
1002
|
-
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-severity-error] {
|
|
1003
|
-
outline-color: #eb9999;
|
|
1004
|
-
}
|
|
1005
|
-
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation="info"] {
|
|
1006
|
-
outline-color: #99c4f5;
|
|
1007
|
-
background-color: #e6f0fd;
|
|
1008
|
-
}
|
|
1009
|
-
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation="warning"] {
|
|
1010
|
-
outline-color: #ffeb99;
|
|
1011
|
-
background-color: #fffae6;
|
|
1012
|
-
}
|
|
1013
|
-
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation="error"] {
|
|
1014
|
-
outline-color: #eb9999;
|
|
1015
|
-
background-color: #fae6e6;
|
|
1016
|
-
}
|
|
1017
|
-
[data-ephox-foam-a11y-violation][data-ephox-foam-a11y-current-violation]:is(td, th, tr) {
|
|
1018
|
-
position: static;
|
|
1019
|
-
}
|
|
1020
|
-
body {
|
|
1021
|
-
font-family: sans-serif;
|
|
1022
|
-
}
|
|
1023
|
-
table {
|
|
1024
|
-
border-collapse: collapse;
|
|
1025
|
-
}
|