1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-30 04:23:11 +03:00

Input WYSIWYG: Fixed up some dark mode elements

This commit is contained in:
Dan Brown
2023-12-22 15:16:06 +00:00
parent 7cd0629a75
commit 3668949705
3 changed files with 4 additions and 5 deletions

View File

@ -331,15 +331,13 @@ export function buildForInput(options) {
contextmenu: false,
toolbar: 'bold italic link bullist numlist',
content_style: getContentStyle(options),
color_map: colorMap,
file_picker_types: 'file',
file_picker_callback: filePickerCallback,
init_instance_callback(editor) {
const head = editor.getDoc().querySelector('head');
head.innerHTML += fetchCustomHeadContent();
},
setup(editor) {
//
editor.contentDocument.documentElement.classList.toggle('dark-mode', options.darkMode);
},
};
}