1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-11 18:24:43 +02:00

Desktop: Fixes #10561: Table options not visible on dark theme (#11036)

This commit is contained in:
pedr 2024-09-13 14:07:03 -03:00 committed by GitHub
parent 5a07b795d3
commit b5f06b6958
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -411,6 +411,20 @@ const TinyMCE = (props: NoteBodyEditorProps, ref: any) => {
color: ${theme.color};
}
.tox .tox-dialog__body-nav-item {
color: ${theme.color};
}
.tox .tox-dialog__body-nav-item[aria-selected=true] {
color: ${theme.color3};
border-color: ${theme.color3};
background-color: ${theme.backgroundColor3};
}
.tox .tox-checkbox__icons .tox-checkbox-icon__unchecked svg {
fill: ${theme.color};
}
.tox .tox-collection--list .tox-collection__item--active {
color: ${theme.backgroundColor};
}