Uploader styling fixes

This commit is contained in:
2022-04-04 23:37:26 +02:00
parent b45e87d7d4
commit 7bfc9cb9f3
2 changed files with 3 additions and 3 deletions

View File

@@ -228,7 +228,7 @@ export const start = () => {
line-height: 1.2em; line-height: 1.2em;
display: inline-flex; display: inline-flex;
flex-direction: column; flex-direction: column;
transition: box-shadow 0.3s, opacity 2s; transition: background 0.2s, opacity 2s;
white-space: normal; white-space: normal;
text-overflow: ellipsis; text-overflow: ellipsis;
text-decoration: none; text-decoration: none;
@@ -242,7 +242,7 @@ export const start = () => {
overflow: hidden; overflow: hidden;
} }
.upload_task:hover { .upload_task:hover {
box-shadow: 0 0 2px 2px var(--highlight_color), inset 0 0 1px 1px var(--highlight_color); background: var(--input_hover_background);
text-decoration: none; text-decoration: none;
} }