upload button tweaks

This commit is contained in:
2025-11-10 11:34:45 +01:00
parent 585caaee58
commit 218f2f2475
2 changed files with 29 additions and 13 deletions
+18 -2
View File
@@ -182,6 +182,24 @@
outline-offset: 2px;
}
.sidebar__collapse-button {
color: color-mix(in oklch, var(--muted) 85%, transparent);
opacity: 0;
pointer-events: none;
transition: opacity 0.18s ease;
}
.sidebar:hover .sidebar__collapse-button,
.sidebar__collapse-button:focus-visible {
opacity: 0.85;
pointer-events: auto;
}
.sidebar__collapse-button:hover:not([disabled]),
.sidebar__collapse-button:focus-visible {
color: var(--muted);
}
.sidebar__title-chevron {
transition: transform 0.2s ease;
}
@@ -580,5 +598,3 @@
background: var(--sidebar-active-bg);
color: var(--fg);
}