mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
chore(ckeditor): add Trilium changes into content CSS
This commit is contained in:
parent
c6c27acd6a
commit
4f7b494947
@ -1,48 +1,3 @@
|
|||||||
/* !!!!!! TRILIUM CUSTOM CHANGES !!!!!! */
|
|
||||||
|
|
||||||
.printed-content .ck-widget__selection-handle, .printed-content .ck-widget__type-around { /* gets rid of triangles: https://github.com/zadam/trilium/issues/1129 */
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.page-break {
|
|
||||||
page-break-after: always;
|
|
||||||
}
|
|
||||||
|
|
||||||
.printed-content .page-break:after,
|
|
||||||
.printed-content .page-break > * {
|
|
||||||
display: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.ck-content li p {
|
|
||||||
margin: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.admonition {
|
|
||||||
--accent-color: var(--card-border-color);
|
|
||||||
border: 1px solid var(--accent-color);
|
|
||||||
box-shadow: var(--card-box-shadow);
|
|
||||||
background: var(--card-background-color);
|
|
||||||
border-radius: 0.5em;
|
|
||||||
padding: 1em;
|
|
||||||
margin: 1.25em 0;
|
|
||||||
position: relative;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.admonition p:last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.admonition p, h2 {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.admonition.note { --accent-color: #69c7ff; }
|
|
||||||
.admonition.tip { --accent-color: #40c025; }
|
|
||||||
.admonition.important { --accent-color: #9839f7; }
|
|
||||||
.admonition.caution { --accent-color: #ff2e2e; }
|
|
||||||
.admonition.warning { --accent-color: #e2aa03; }
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* CKEditor 5 (v41.0.0) content styles.
|
* CKEditor 5 (v41.0.0) content styles.
|
||||||
* Generated on Fri, 26 Jan 2024 10:23:49 GMT.
|
* Generated on Fri, 26 Jan 2024 10:23:49 GMT.
|
||||||
|
42
packages/ckeditor5/src/theme/ck-content.css
Normal file
42
packages/ckeditor5/src/theme/ck-content.css
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
.printed-content .ck-widget__selection-handle, .printed-content .ck-widget__type-around { /* gets rid of triangles: https://github.com/zadam/trilium/issues/1129 */
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-break {
|
||||||
|
page-break-after: always;
|
||||||
|
}
|
||||||
|
|
||||||
|
.printed-content .page-break:after,
|
||||||
|
.printed-content .page-break > * {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ck-content li p {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admonition {
|
||||||
|
--accent-color: var(--card-border-color);
|
||||||
|
border: 1px solid var(--accent-color);
|
||||||
|
box-shadow: var(--card-box-shadow);
|
||||||
|
background: var(--card-background-color);
|
||||||
|
border-radius: 0.5em;
|
||||||
|
padding: 1em;
|
||||||
|
margin: 1.25em 0;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admonition p:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admonition p, h2 {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.admonition.note { --accent-color: #69c7ff; }
|
||||||
|
.admonition.tip { --accent-color: #40c025; }
|
||||||
|
.admonition.important { --accent-color: #9839f7; }
|
||||||
|
.admonition.caution { --accent-color: #ff2e2e; }
|
||||||
|
.admonition.warning { --accent-color: #e2aa03; }
|
@ -17,6 +17,7 @@ export default defineConfig(() => ({
|
|||||||
outDir: './dist',
|
outDir: './dist',
|
||||||
emptyOutDir: true,
|
emptyOutDir: true,
|
||||||
reportCompressedSize: true,
|
reportCompressedSize: true,
|
||||||
|
cssCodeSplit: true,
|
||||||
commonjsOptions: {
|
commonjsOptions: {
|
||||||
transformMixedEsModules: true,
|
transformMixedEsModules: true,
|
||||||
},
|
},
|
||||||
@ -31,7 +32,11 @@ export default defineConfig(() => ({
|
|||||||
},
|
},
|
||||||
rollupOptions: {
|
rollupOptions: {
|
||||||
// External packages that should not be bundled into your library.
|
// External packages that should not be bundled into your library.
|
||||||
external: []
|
external: [],
|
||||||
|
input: {
|
||||||
|
index: "src/index.ts",
|
||||||
|
content: "src/theme/ck-content.css"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user