create-nextjs-cms 0.5.55 → 0.5.58
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/(auth)/auth/login/LoginPage.tsx +14 -11
- 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 +5 -3
- package/templates/default/app/providers.tsx +10 -9
- 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/Layout.tsx +2 -2
- package/templates/default/components/LogPage.tsx +2 -3
- package/templates/default/components/NavbarAlt.tsx +5 -5
- package/templates/default/components/SettingsPage.tsx +1 -1
- package/templates/default/components/Sidebar.tsx +7 -7
- package/templates/default/components/form/Form.tsx +5 -5
- 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/test/prize.section.ts +58 -0
- package/templates/default/tsconfig.json +6 -3
- package/templates/default/app/api/placeholder/route.ts +0 -7
- package/templates/default/components/form/helpers/_section-hot-reload.js +0 -11
- 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,70 +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
|
-
body {
|
|
11
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
12
|
-
line-height: 1.4;
|
|
13
|
-
margin: 1rem;
|
|
14
|
-
}
|
|
15
|
-
table {
|
|
16
|
-
border-collapse: collapse;
|
|
17
|
-
}
|
|
18
|
-
/* Apply a default padding if legacy cellpadding attribute is missing */
|
|
19
|
-
table:not([cellpadding]) th,
|
|
20
|
-
table:not([cellpadding]) td {
|
|
21
|
-
padding: 0.4rem;
|
|
22
|
-
}
|
|
23
|
-
/* Set default table styles if a table has a positive border attribute
|
|
24
|
-
and no inline css */
|
|
25
|
-
table[border]:not([border="0"]):not([style*="border-width"]) th,
|
|
26
|
-
table[border]:not([border="0"]):not([style*="border-width"]) td {
|
|
27
|
-
border-width: 1px;
|
|
28
|
-
}
|
|
29
|
-
/* Set default table styles if a table has a positive border attribute
|
|
30
|
-
and no inline css */
|
|
31
|
-
table[border]:not([border="0"]):not([style*="border-style"]) th,
|
|
32
|
-
table[border]:not([border="0"]):not([style*="border-style"]) td {
|
|
33
|
-
border-style: solid;
|
|
34
|
-
}
|
|
35
|
-
/* Set default table styles if a table has a positive border attribute
|
|
36
|
-
and no inline css */
|
|
37
|
-
table[border]:not([border="0"]):not([style*="border-color"]) th,
|
|
38
|
-
table[border]:not([border="0"]):not([style*="border-color"]) td {
|
|
39
|
-
border-color: #ccc;
|
|
40
|
-
}
|
|
41
|
-
figure {
|
|
42
|
-
display: table;
|
|
43
|
-
margin: 1rem auto;
|
|
44
|
-
}
|
|
45
|
-
figure figcaption {
|
|
46
|
-
color: #999;
|
|
47
|
-
display: block;
|
|
48
|
-
margin-top: 0.25rem;
|
|
49
|
-
text-align: center;
|
|
50
|
-
}
|
|
51
|
-
hr {
|
|
52
|
-
border-color: #ccc;
|
|
53
|
-
border-style: solid;
|
|
54
|
-
border-width: 1px 0 0 0;
|
|
55
|
-
}
|
|
56
|
-
code {
|
|
57
|
-
background-color: #e8e8e8;
|
|
58
|
-
border-radius: 3px;
|
|
59
|
-
padding: 0.1rem 0.2rem;
|
|
60
|
-
}
|
|
61
|
-
.mce-content-body:not([dir=rtl]) blockquote {
|
|
62
|
-
border-left: 2px solid #ccc;
|
|
63
|
-
margin-left: 1.5rem;
|
|
64
|
-
padding-left: 1rem;
|
|
65
|
-
}
|
|
66
|
-
.mce-content-body[dir=rtl] blockquote {
|
|
67
|
-
border-right: 2px solid #ccc;
|
|
68
|
-
margin-right: 1.5rem;
|
|
69
|
-
padding-right: 1rem;
|
|
70
|
-
}
|
|
@@ -1,10 +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
|
-
tinymce.Resource.add('content/default/content.css', `body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}`)
|
|
@@ -1,10 +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
|
-
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
|
|
@@ -1,75 +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
|
-
@media screen {
|
|
11
|
-
html {
|
|
12
|
-
background: #f4f4f4;
|
|
13
|
-
min-height: 100%;
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
body {
|
|
17
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
18
|
-
}
|
|
19
|
-
@media screen {
|
|
20
|
-
body {
|
|
21
|
-
background-color: #fff;
|
|
22
|
-
box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
|
|
23
|
-
box-sizing: border-box;
|
|
24
|
-
margin: 1rem auto 0;
|
|
25
|
-
max-width: 820px;
|
|
26
|
-
min-height: calc(100vh - 1rem);
|
|
27
|
-
padding: 4rem 6rem 6rem 6rem;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
table {
|
|
31
|
-
border-collapse: collapse;
|
|
32
|
-
}
|
|
33
|
-
/* Apply a default padding if legacy cellpadding attribute is missing */
|
|
34
|
-
table:not([cellpadding]) th,
|
|
35
|
-
table:not([cellpadding]) td {
|
|
36
|
-
padding: 0.4rem;
|
|
37
|
-
}
|
|
38
|
-
/* Set default table styles if a table has a positive border attribute
|
|
39
|
-
and no inline css */
|
|
40
|
-
table[border]:not([border="0"]):not([style*="border-width"]) th,
|
|
41
|
-
table[border]:not([border="0"]):not([style*="border-width"]) td {
|
|
42
|
-
border-width: 1px;
|
|
43
|
-
}
|
|
44
|
-
/* Set default table styles if a table has a positive border attribute
|
|
45
|
-
and no inline css */
|
|
46
|
-
table[border]:not([border="0"]):not([style*="border-style"]) th,
|
|
47
|
-
table[border]:not([border="0"]):not([style*="border-style"]) td {
|
|
48
|
-
border-style: solid;
|
|
49
|
-
}
|
|
50
|
-
/* Set default table styles if a table has a positive border attribute
|
|
51
|
-
and no inline css */
|
|
52
|
-
table[border]:not([border="0"]):not([style*="border-color"]) th,
|
|
53
|
-
table[border]:not([border="0"]):not([style*="border-color"]) td {
|
|
54
|
-
border-color: #ccc;
|
|
55
|
-
}
|
|
56
|
-
figure figcaption {
|
|
57
|
-
color: #999;
|
|
58
|
-
margin-top: 0.25rem;
|
|
59
|
-
text-align: center;
|
|
60
|
-
}
|
|
61
|
-
hr {
|
|
62
|
-
border-color: #ccc;
|
|
63
|
-
border-style: solid;
|
|
64
|
-
border-width: 1px 0 0 0;
|
|
65
|
-
}
|
|
66
|
-
.mce-content-body:not([dir=rtl]) blockquote {
|
|
67
|
-
border-left: 2px solid #ccc;
|
|
68
|
-
margin-left: 1.5rem;
|
|
69
|
-
padding-left: 1rem;
|
|
70
|
-
}
|
|
71
|
-
.mce-content-body[dir=rtl] blockquote {
|
|
72
|
-
border-right: 2px solid #ccc;
|
|
73
|
-
margin-right: 1.5rem;
|
|
74
|
-
padding-right: 1rem;
|
|
75
|
-
}
|
|
@@ -1,10 +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
|
-
tinymce.Resource.add('content/document/content.css', `@media screen{html{background:#f4f4f4;min-height:100%}}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif}@media screen{body{background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.15);box-sizing:border-box;margin:1rem auto 0;max-width:820px;min-height:calc(100vh - 1rem);padding:4rem 6rem 6rem 6rem}}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure figcaption{color:#999;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}`)
|
|
@@ -1,10 +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
|
-
@media screen{html{background:#f4f4f4;min-height:100%}}body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif}@media screen{body{background-color:#fff;box-shadow:0 0 4px rgba(0,0,0,.15);box-sizing:border-box;margin:1rem auto 0;max-width:820px;min-height:calc(100vh - 1rem);padding:4rem 6rem 6rem 6rem}}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure figcaption{color:#999;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
|
|
@@ -1,70 +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
|
-
body {
|
|
11
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
12
|
-
line-height: 1.4;
|
|
13
|
-
margin: 1rem;
|
|
14
|
-
}
|
|
15
|
-
table {
|
|
16
|
-
border-collapse: collapse;
|
|
17
|
-
}
|
|
18
|
-
/* Apply a default padding if legacy cellpadding attribute is missing */
|
|
19
|
-
table:not([cellpadding]) th,
|
|
20
|
-
table:not([cellpadding]) td {
|
|
21
|
-
padding: 0.4rem;
|
|
22
|
-
}
|
|
23
|
-
/* Set default table styles if a table has a positive border attribute
|
|
24
|
-
and no inline css */
|
|
25
|
-
table[border]:not([border="0"]):not([style*="border-width"]) th,
|
|
26
|
-
table[border]:not([border="0"]):not([style*="border-width"]) td {
|
|
27
|
-
border-width: 1px;
|
|
28
|
-
}
|
|
29
|
-
/* Set default table styles if a table has a positive border attribute
|
|
30
|
-
and no inline css */
|
|
31
|
-
table[border]:not([border="0"]):not([style*="border-style"]) th,
|
|
32
|
-
table[border]:not([border="0"]):not([style*="border-style"]) td {
|
|
33
|
-
border-style: solid;
|
|
34
|
-
}
|
|
35
|
-
/* Set default table styles if a table has a positive border attribute
|
|
36
|
-
and no inline css */
|
|
37
|
-
table[border]:not([border="0"]):not([style*="border-color"]) th,
|
|
38
|
-
table[border]:not([border="0"]):not([style*="border-color"]) td {
|
|
39
|
-
border-color: #ccc;
|
|
40
|
-
}
|
|
41
|
-
figure {
|
|
42
|
-
display: table;
|
|
43
|
-
margin: 1rem auto;
|
|
44
|
-
}
|
|
45
|
-
figure figcaption {
|
|
46
|
-
color: #999;
|
|
47
|
-
display: block;
|
|
48
|
-
margin-top: 0.25rem;
|
|
49
|
-
text-align: center;
|
|
50
|
-
}
|
|
51
|
-
hr {
|
|
52
|
-
border-color: #ccc;
|
|
53
|
-
border-style: solid;
|
|
54
|
-
border-width: 1px 0 0 0;
|
|
55
|
-
}
|
|
56
|
-
code {
|
|
57
|
-
background-color: #e8e8e8;
|
|
58
|
-
border-radius: 3px;
|
|
59
|
-
padding: 0.1rem 0.2rem;
|
|
60
|
-
}
|
|
61
|
-
.mce-content-body:not([dir=rtl]) blockquote {
|
|
62
|
-
border-left: 2px solid #ccc;
|
|
63
|
-
margin-left: 1.5rem;
|
|
64
|
-
padding-left: 1rem;
|
|
65
|
-
}
|
|
66
|
-
.mce-content-body[dir=rtl] blockquote {
|
|
67
|
-
border-right: 2px solid #ccc;
|
|
68
|
-
margin-right: 1.5rem;
|
|
69
|
-
padding-right: 1rem;
|
|
70
|
-
}
|
|
@@ -1,10 +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
|
-
tinymce.Resource.add('content/tinymce-5/content.css', `body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}`)
|
|
@@ -1,10 +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
|
-
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
|
|
@@ -1,75 +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
|
-
body {
|
|
11
|
-
background-color: #2f3742;
|
|
12
|
-
color: #dfe0e4;
|
|
13
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
14
|
-
line-height: 1.4;
|
|
15
|
-
margin: 1rem;
|
|
16
|
-
}
|
|
17
|
-
a {
|
|
18
|
-
color: #4099ff;
|
|
19
|
-
}
|
|
20
|
-
table {
|
|
21
|
-
border-collapse: collapse;
|
|
22
|
-
}
|
|
23
|
-
/* Apply a default padding if legacy cellpadding attribute is missing */
|
|
24
|
-
table:not([cellpadding]) th,
|
|
25
|
-
table:not([cellpadding]) td {
|
|
26
|
-
padding: 0.4rem;
|
|
27
|
-
}
|
|
28
|
-
/* Set default table styles if a table has a positive border attribute
|
|
29
|
-
and no inline css */
|
|
30
|
-
table[border]:not([border="0"]):not([style*="border-width"]) th,
|
|
31
|
-
table[border]:not([border="0"]):not([style*="border-width"]) td {
|
|
32
|
-
border-width: 1px;
|
|
33
|
-
}
|
|
34
|
-
/* Set default table styles if a table has a positive border attribute
|
|
35
|
-
and no inline css */
|
|
36
|
-
table[border]:not([border="0"]):not([style*="border-style"]) th,
|
|
37
|
-
table[border]:not([border="0"]):not([style*="border-style"]) td {
|
|
38
|
-
border-style: solid;
|
|
39
|
-
}
|
|
40
|
-
/* Set default table styles if a table has a positive border attribute
|
|
41
|
-
and no inline css */
|
|
42
|
-
table[border]:not([border="0"]):not([style*="border-color"]) th,
|
|
43
|
-
table[border]:not([border="0"]):not([style*="border-color"]) td {
|
|
44
|
-
border-color: #6d737b;
|
|
45
|
-
}
|
|
46
|
-
figure {
|
|
47
|
-
display: table;
|
|
48
|
-
margin: 1rem auto;
|
|
49
|
-
}
|
|
50
|
-
figure figcaption {
|
|
51
|
-
color: #8a8f97;
|
|
52
|
-
display: block;
|
|
53
|
-
margin-top: 0.25rem;
|
|
54
|
-
text-align: center;
|
|
55
|
-
}
|
|
56
|
-
hr {
|
|
57
|
-
border-color: #6d737b;
|
|
58
|
-
border-style: solid;
|
|
59
|
-
border-width: 1px 0 0 0;
|
|
60
|
-
}
|
|
61
|
-
code {
|
|
62
|
-
background-color: #6d737b;
|
|
63
|
-
border-radius: 3px;
|
|
64
|
-
padding: 0.1rem 0.2rem;
|
|
65
|
-
}
|
|
66
|
-
.mce-content-body:not([dir=rtl]) blockquote {
|
|
67
|
-
border-left: 2px solid #6d737b;
|
|
68
|
-
margin-left: 1.5rem;
|
|
69
|
-
padding-left: 1rem;
|
|
70
|
-
}
|
|
71
|
-
.mce-content-body[dir=rtl] blockquote {
|
|
72
|
-
border-right: 2px solid #6d737b;
|
|
73
|
-
margin-right: 1.5rem;
|
|
74
|
-
padding-right: 1rem;
|
|
75
|
-
}
|
|
@@ -1,10 +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
|
-
tinymce.Resource.add('content/tinymce-5-dark/content.css', `body{background-color:#2f3742;color:#dfe0e4;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem}`)
|
|
@@ -1,10 +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
|
-
body{background-color:#2f3742;color:#dfe0e4;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem}a{color:#4099ff}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#6d737b}figure{display:table;margin:1rem auto}figure figcaption{color:#8a8f97;display:block;margin-top:.25rem;text-align:center}hr{border-color:#6d737b;border-style:solid;border-width:1px 0 0 0}code{background-color:#6d737b;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #6d737b;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #6d737b;margin-right:1.5rem;padding-right:1rem}
|
|
@@ -1,71 +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
|
-
body {
|
|
11
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
12
|
-
line-height: 1.4;
|
|
13
|
-
margin: 1rem auto;
|
|
14
|
-
max-width: 900px;
|
|
15
|
-
}
|
|
16
|
-
table {
|
|
17
|
-
border-collapse: collapse;
|
|
18
|
-
}
|
|
19
|
-
/* Apply a default padding if legacy cellpadding attribute is missing */
|
|
20
|
-
table:not([cellpadding]) th,
|
|
21
|
-
table:not([cellpadding]) td {
|
|
22
|
-
padding: 0.4rem;
|
|
23
|
-
}
|
|
24
|
-
/* Set default table styles if a table has a positive border attribute
|
|
25
|
-
and no inline css */
|
|
26
|
-
table[border]:not([border="0"]):not([style*="border-width"]) th,
|
|
27
|
-
table[border]:not([border="0"]):not([style*="border-width"]) td {
|
|
28
|
-
border-width: 1px;
|
|
29
|
-
}
|
|
30
|
-
/* Set default table styles if a table has a positive border attribute
|
|
31
|
-
and no inline css */
|
|
32
|
-
table[border]:not([border="0"]):not([style*="border-style"]) th,
|
|
33
|
-
table[border]:not([border="0"]):not([style*="border-style"]) td {
|
|
34
|
-
border-style: solid;
|
|
35
|
-
}
|
|
36
|
-
/* Set default table styles if a table has a positive border attribute
|
|
37
|
-
and no inline css */
|
|
38
|
-
table[border]:not([border="0"]):not([style*="border-color"]) th,
|
|
39
|
-
table[border]:not([border="0"]):not([style*="border-color"]) td {
|
|
40
|
-
border-color: #ccc;
|
|
41
|
-
}
|
|
42
|
-
figure {
|
|
43
|
-
display: table;
|
|
44
|
-
margin: 1rem auto;
|
|
45
|
-
}
|
|
46
|
-
figure figcaption {
|
|
47
|
-
color: #999;
|
|
48
|
-
display: block;
|
|
49
|
-
margin-top: 0.25rem;
|
|
50
|
-
text-align: center;
|
|
51
|
-
}
|
|
52
|
-
hr {
|
|
53
|
-
border-color: #ccc;
|
|
54
|
-
border-style: solid;
|
|
55
|
-
border-width: 1px 0 0 0;
|
|
56
|
-
}
|
|
57
|
-
code {
|
|
58
|
-
background-color: #e8e8e8;
|
|
59
|
-
border-radius: 3px;
|
|
60
|
-
padding: 0.1rem 0.2rem;
|
|
61
|
-
}
|
|
62
|
-
.mce-content-body:not([dir=rtl]) blockquote {
|
|
63
|
-
border-left: 2px solid #ccc;
|
|
64
|
-
margin-left: 1.5rem;
|
|
65
|
-
padding-left: 1rem;
|
|
66
|
-
}
|
|
67
|
-
.mce-content-body[dir=rtl] blockquote {
|
|
68
|
-
border-right: 2px solid #ccc;
|
|
69
|
-
margin-right: 1.5rem;
|
|
70
|
-
padding-right: 1rem;
|
|
71
|
-
}
|
|
@@ -1,10 +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
|
-
tinymce.Resource.add('content/writer/content.css', `body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem auto;max-width:900px}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}`)
|
|
@@ -1,10 +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
|
-
body{font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen,Ubuntu,Cantarell,'Open Sans','Helvetica Neue',sans-serif;line-height:1.4;margin:1rem auto;max-width:900px}table{border-collapse:collapse}table:not([cellpadding]) td,table:not([cellpadding]) th{padding:.4rem}table[border]:not([border="0"]):not([style*=border-width]) td,table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}table[border]:not([border="0"]):not([style*=border-style]) td,table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}table[border]:not([border="0"]):not([style*=border-color]) td,table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}figure{display:table;margin:1rem auto}figure figcaption{color:#999;display:block;margin-top:.25rem;text-align:center}hr{border-color:#ccc;border-style:solid;border-width:1px 0 0 0}code{background-color:#e8e8e8;border-radius:3px;padding:.1rem .2rem}.mce-content-body:not([dir=rtl]) blockquote{border-left:2px solid #ccc;margin-left:1.5rem;padding-left:1rem}.mce-content-body[dir=rtl] blockquote{border-right:2px solid #ccc;margin-right:1.5rem;padding-right:1rem}
|