style/text editor/reference links color: fix regression

This commit is contained in:
Adorian Doran 2025-10-22 00:45:51 +03:00
parent c4e2c003de
commit 8590ff1f46
3 changed files with 16 additions and 0 deletions

View File

@ -86,6 +86,11 @@ body ::-webkit-calendar-picker-indicator {
--custom-color: var(--dark-theme-custom-color); --custom-color: var(--dark-theme-custom-color);
} }
.ck-content a.reference-link,
.ck-content a.reference-link > span {
color: var(--dark-theme-custom-color, inherit);
}
.excalidraw.theme--dark { .excalidraw.theme--dark {
--theme-filter: invert(80%) hue-rotate(180deg) !important; --theme-filter: invert(80%) hue-rotate(180deg) !important;
} }
@ -101,3 +106,4 @@ body .todo-list input[type="checkbox"]:not(:checked):before {
.ck-content pre { .ck-content pre {
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important; box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
} }

View File

@ -85,3 +85,8 @@ html {
#left-pane .fancytree-node.tinted { #left-pane .fancytree-node.tinted {
--custom-color: var(--light-theme-custom-color); --custom-color: var(--light-theme-custom-color);
} }
.ck-content a.reference-link,
.ck-content a.reference-link > span {
color: var(--light-theme-custom-color, inherit);
}

View File

@ -277,6 +277,11 @@
--custom-bg-color: hsl(var(--custom-color-hue), 20%, 33%, 0.4); --custom-bg-color: hsl(var(--custom-color-hue), 20%, 33%, 0.4);
} }
.ck-content a.reference-link,
.ck-content a.reference-link > span {
color: var(--dark-theme-custom-color, inherit);
}
body ::-webkit-calendar-picker-indicator { body ::-webkit-calendar-picker-indicator {
filter: invert(1); filter: invert(1);
} }