show again the table handle and type around

This commit is contained in:
zadam 2020-11-23 20:56:14 +01:00
parent 21b73a86b2
commit 984ecaf99c
3 changed files with 10 additions and 2 deletions

View file

@ -1,6 +1,6 @@
/* !!!!!! TRILIUM CUSTOM CHANGES !!!!!! */
.ck-widget__selection-handle, .ck-widget__type-around { /* gets rid of triangles: https://github.com/zadam/trilium/issues/1129 */
.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;
}

View file

@ -248,7 +248,7 @@ export default class NoteDetailWidget extends TabAwareWidget {
this.$widget.find('.note-detail-printable:visible').printThis({
header: $("<h2>").text(this.note && this.note.title).prop('outerHTML'),
footer: "<script>document.body.className += ' ck-content';</script>",
footer: "<script>document.body.className += ' ck-content printed-content';</script>",
importCSS: false,
loadCSS: [
"libraries/codemirror/codemirror.css",

View file

@ -143,6 +143,11 @@ body {
--ck-color-dropdown-panel-background: var(--accented-background-color);
--ck-color-dropdown-panel-border: var(--main-border-color);
/* -- Overrides the default .ck-splitbutton class colors. ----------------------------------- */
--ck-color-split-button-hover-background: var(--ck-color-button-default-hover-background);
--ck-color-split-button-hover-border: var(--main-border-color);
/* -- Overrides the default .ck-input class colors. ----------------------------------------- */
--ck-color-input-background: var(--accented-background-color);
@ -199,6 +204,9 @@ body {
--ck-color-engine-placeholder-text: var(--muted-text-color);
--ck-z-modal: 10000;
--ck-color-widget-type-around-button: var(--main-border-color);
--ck-color-widget-type-around-button-hover: var(--main-border-color);
}
body {