Compare commits

...

2 Commits

Author SHA1 Message Date
Adorian Doran
ebf0f5928e style/note title: fix the selection background color 2025-12-25 14:17:35 +02:00
Adorian Doran
67d6d5c04b style/dropdowns: fix link background 2025-12-25 14:07:14 +02:00
4 changed files with 7 additions and 3 deletions

View File

@@ -436,7 +436,6 @@ body.desktop .tabulator-popup-container,
opacity: 1;
}
.dropdown-menu a:hover:not(.disabled),
.dropdown-item:hover:not(.disabled, .dropdown-container-item),
.tabulator-menu-item:hover,
:root .excalidraw .context-menu .context-menu-item:hover {

View File

@@ -348,6 +348,8 @@ body .todo-list input[type="checkbox"]:not(:checked):before {
}
.note-split.with-hue *::selection,
.quick-edit-dialog-wrapper.with-hue *::selection {
.quick-edit-dialog-wrapper.with-hue *::selection,
.note-split.with-hue div.note-title-widget input.note-title::selection,
.quick-edit-dialog-wrapper.with-hue div.note-title-widget input.note-title::selection {
background: hsl(var(--custom-color-hue), 49.2%, 35%);
}

View File

@@ -319,6 +319,8 @@
}
.note-split.with-hue *::selection,
.quick-edit-dialog-wrapper.with-hue *::selection {
.quick-edit-dialog-wrapper.with-hue *::selection,
.note-split.with-hue div.note-title-widget input.note-title::selection,
.quick-edit-dialog-wrapper.with-hue div.note-title-widget input.note-title::selection {
background: hsl(var(--custom-color-hue), 60%, 90%);
}

View File

@@ -21,6 +21,7 @@ div.note-title-widget {
&::selection {
color: var(--main-text-color);
background: var(--selection-background-color);
}
}