Merge claude/2

This commit is contained in:
librelad 2026-05-28 01:42:35 +01:00
commit 3f3499a348
2 changed files with 17 additions and 8 deletions

View File

@ -139,17 +139,21 @@
border-color: var(--accent-hover) !important;
}
/* "Back to Apps" same solid pill as Update Configuration (btn-manage),
but in amber so it reads as a distinct secondary action. */
/* Amber-tinted secondary across all themes used by "Back to Apps"
(.console-actions), Config Reset (.config-actions), and "Open backup
center" on the per-app Backups tab (.backup-title-actions). One
visual family for "step away from this page" secondary actions. */
.config-actions .btn-secondary,
.console-actions .btn-secondary {
.console-actions .btn-secondary,
.backup-title-actions .btn-secondary {
background: var(--status-warning) !important;
color: #1a1200 !important;
border: 1px solid var(--status-warning) !important;
}
.config-actions .btn-secondary:hover:not(:disabled),
.console-actions .btn-secondary:hover:not(:disabled) {
.console-actions .btn-secondary:hover:not(:disabled),
.backup-title-actions .btn-secondary:hover:not(:disabled) {
background: #e0a800 !important;
border-color: #e0a800 !important;
}

View File

@ -120,10 +120,14 @@
color: #ffffff;
}
/* "Back to Apps" same translucent design as Update Configuration (btn-manage),
but tinted with the warning amber so it reads as a distinct secondary action. */
/* Amber-tinted secondary same translucent design as Update Configuration
(btn-manage). Used by "Back to Apps" (.console-actions), the Config Reset
button (.config-actions), and "Open backup center" on the per-app Backups
tab (.backup-title-actions) so all the "step away from the current page"
secondary actions read as one family. */
[data-theme="nebula"] .config-actions .btn-secondary,
[data-theme="nebula"] .console-actions .btn-secondary {
[data-theme="nebula"] .console-actions .btn-secondary,
[data-theme="nebula"] .backup-title-actions .btn-secondary {
background: rgba(var(--status-warning-rgb), 0.20) !important;
color: var(--text-primary) !important;
border: 1px solid rgba(var(--status-warning-rgb), 0.55) !important;
@ -133,7 +137,8 @@
}
[data-theme="nebula"] .config-actions .btn-secondary:hover:not(:disabled),
[data-theme="nebula"] .console-actions .btn-secondary:hover:not(:disabled) {
[data-theme="nebula"] .console-actions .btn-secondary:hover:not(:disabled),
[data-theme="nebula"] .backup-title-actions .btn-secondary:hover:not(:disabled) {
background: rgba(var(--status-warning-rgb), 0.35) !important;
border-color: rgba(var(--status-warning-rgb), 0.80) !important;
transform: translateY(-1px);