clear search button

This commit is contained in:
Simon
2026-02-09 21:40:34 +00:00
parent d2e1e3adea
commit 3d81b6aae7
3 changed files with 57 additions and 1 deletions

View File

@@ -98,11 +98,12 @@ body.theme-light .top-bar {
.search-container {
flex: 1;
max-width: 500px;
position: relative;
}
.search-container input {
width: 100%;
padding: 10px 16px;
padding: 10px 44px 10px 16px;
background: var(--bg-tertiary);
border: 1px solid var(--border);
border-radius: 999px;
@@ -122,6 +123,38 @@ body.theme-light .top-bar {
color: var(--text-secondary);
}
.search-clear-btn {
position: absolute;
top: 50%;
right: 12px;
transform: translateY(-50%);
width: 26px;
height: 26px;
border: none;
border-radius: 50%;
background: var(--bg-secondary);
color: var(--text-secondary);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
line-height: 1;
opacity: 0;
pointer-events: none;
transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.search-clear-btn.is-visible {
opacity: 1;
pointer-events: auto;
}
.search-clear-btn:hover {
background: var(--bg-tertiary);
color: var(--text-primary);
}
.actions {
display: flex;
gap: 12px;