refactor(phase-4): standardize remaining transitions and box-shadows

- Replace all remaining 'transition: all' with specific token-based transitions
- Replace 80+ hardcoded box-shadow rgba values with semantic tokens
- Add new tokens: --shadow-side, --shadow-elevated, --shadow-dialog, --shadow-inset-top
- Update dark theme overrides for new shadow tokens
- 32 files changed, net +8 lines (more consistent, less duplication)
This commit is contained in:
Will Miao
2026-06-09 14:27:53 +08:00
parent 5797ce9408
commit 18577fa336
32 changed files with 177 additions and 169 deletions

View File

@@ -37,7 +37,7 @@
border: 1px solid var(--border-color);
border-radius: var(--border-radius-sm);
cursor: pointer;
transition: all 0.2s ease;
transition: var(--transition-base);
background: var(--bg-color);
margin: 1px;
position: relative;
@@ -45,7 +45,7 @@
.version-item:hover {
border-color: var(--lora-accent);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
box-shadow: var(--shadow-md);
z-index: 1;
}
@@ -156,7 +156,7 @@
background: var(--bg-color);
color: var(--text-color);
cursor: pointer;
transition: all 0.2s ease;
transition: var(--transition-base);
display: flex;
align-items: center;
justify-content: center;
@@ -225,7 +225,7 @@
padding: 4px 8px;
border-radius: var(--border-radius-xs);
cursor: pointer;
transition: all 0.2s ease;
transition: var(--transition-base);
color: var(--text-color);
opacity: 0.7;
text-decoration: none;
@@ -272,7 +272,7 @@
padding: 4px 8px;
cursor: pointer;
border-radius: var(--border-radius-xs);
transition: all 0.2s ease;
transition: var(--transition-base);
position: relative;
}
@@ -293,7 +293,7 @@
justify-content: center;
cursor: pointer;
border-radius: 2px;
transition: all 0.2s ease;
transition: var(--transition-base);
}
.tree-expand-icon:hover {
@@ -364,7 +364,7 @@
color: var(--text-color);
cursor: pointer;
font-size: 0.8em;
transition: all 0.2s ease;
transition: var(--transition-base);
}
.create-folder-form button.confirm {
@@ -453,7 +453,7 @@
right: 0;
bottom: 0;
background-color: var(--border-color);
transition: all 0.3s ease;
transition: var(--transition-slow);
border-radius: 18px;
}
@@ -465,9 +465,9 @@
left: 3px;
bottom: 3px;
background-color: white;
transition: all 0.3s ease;
transition: var(--transition-slow);
border-radius: 50%;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
box-shadow: var(--shadow-xs);
}
.inline-toggle-container .toggle-switch input:checked+.toggle-slider {
@@ -516,7 +516,7 @@
font-size: inherit;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
transition: var(--transition-base);
border: 1px solid oklch(var(--lora-accent) / 0.35);
user-select: none;
box-shadow: 0 1px 2px oklch(var(--lora-accent) / 0.1);
@@ -577,13 +577,13 @@
border: 1px solid var(--border-color);
border-radius: var(--border-radius-sm);
cursor: pointer;
transition: all 0.2s ease;
transition: var(--transition-base);
background: var(--bg-color);
}
.file-option:hover {
border-color: var(--lora-accent);
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
box-shadow: var(--shadow-sm);
}
.file-option.selected {