style(client): improve read-only note title

This commit is contained in:
Elian Doran 2025-09-17 08:50:37 +03:00
parent 57004ab848
commit b502e999de
No known key found for this signature in database
2 changed files with 5 additions and 4 deletions

View File

@ -252,10 +252,6 @@ button.close:hover {
color: var(--main-text-color) !important; color: var(--main-text-color) !important;
} }
.note-title[readonly] {
background: inherit;
}
.tdialog { .tdialog {
display: none; display: none;
} }

View File

@ -12,6 +12,11 @@
padding: 1px 12px; padding: 1px 12px;
} }
.note-title-widget input.note-title[readonly] {
background: inherit;
outline: none;
}
.note-title-widget input.note-title.protected { .note-title-widget input.note-title.protected {
text-shadow: 4px 4px 4px var(--muted-text-color); text-shadow: 4px 4px 4px var(--muted-text-color);
} }