Fix selection issue on mobile

This commit is contained in:
2023-11-16 19:35:09 +01:00
parent 4d5bcf85e2
commit 2baa614c7d

View File

@@ -58,7 +58,7 @@ export let large_icons = false
height: 200px; height: 200px;
} }
/* On very small screens we switch to grid layout */ /* On very small screens we switch to grid layout */
@media (max-width: 500px) { @media (max-width: 500px) {
.gallery { .gallery {
display: grid; display: grid;
@@ -78,7 +78,7 @@ export let large_icons = false
.file:hover { .file:hover {
background: var(--input_hover_background); background: var(--input_hover_background);
} }
.selected { .file.selected {
background: var(--highlight_background); background: var(--highlight_background);
color: var(--highlight_text_color); color: var(--highlight_text_color);
} }