1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-29 22:48:10 +02:00

Desktop: Fixes #10044: Certain RTE menu items are not visible in dark mode

This commit is contained in:
Laurent Cozic
2024-03-04 09:25:51 +00:00
parent 95e42c4ca7
commit 8d5ee36745

View File

@@ -377,10 +377,19 @@ const TinyMCE = (props: NoteBodyEditorProps, ref: any) => {
background-color: ${theme.backgroundColor} !important;
}
.tox .tox-dialog__body-content {
.tox .tox-dialog__body-content,
.tox .tox-collection__item {
color: ${theme.color};
}
.tox .tox-collection--list .tox-collection__item--active {
color: ${theme.backgroundColor};
}
.tox .tox-collection__item--state-disabled {
opacity: 0.7;
}
.tox .tox-menu {
/* Ensures that popover menus (the color swatch menu) has a visible border
even in dark mode. */