Theming changes

This commit is contained in:
2022-06-07 14:43:01 +02:00
parent aed4c3b301
commit 6bed9e9374
96 changed files with 649 additions and 495 deletions

View File

@@ -311,7 +311,12 @@ const keyboard_event = evt => {
if (evt.ctrlKey || evt.altKey || evt.metaKey) {
return // prevent custom shortcuts from interfering with system shortcuts
}
if (document.activeElement.type && document.activeElement.type === "text") {
if (
document.activeElement.type && (
document.activeElement.type === "text" ||
document.activeElement.type === "textarea"
)
) {
return // Prevent shortcuts from interfering with input fields
}
@@ -685,8 +690,8 @@ const keyboard_event = evt => {
}
.file_preview {
position: absolute;
left: 0;
right: 0;
left: 4px;
right: 4px;
top: 0;
bottom: 0;
display: block;