Compare commits

..

No commits in common. "f70fb69f5a8e458493ec682d3c2f4d5caabf6238" and "015793baf6fca44fa25a8d22500d06f6f99b6df1" have entirely different histories.

3 changed files with 5 additions and 9 deletions

View File

@ -454,9 +454,9 @@
.backup-location-actions {
display: flex;
justify-content: flex-start;
justify-content: space-between;
align-items: center;
gap: 12px;
gap: 10px;
margin-top: 16px;
padding-top: 14px;
border-top: 1px solid rgba(var(--text-rgb), 0.06);

View File

@ -266,8 +266,7 @@
[data-theme="nebula"] .uninstall-btn,
[data-theme="nebula"] .btn-uninstall,
[data-theme="nebula"] .btn-danger,
[data-theme="nebula"] .backup-danger-btn {
[data-theme="nebula"] .btn-danger {
background: rgba(var(--status-danger-rgb), 0.35) !important;
color: var(--text-primary) !important;
border: 1px solid rgba(var(--status-danger-rgb), 0.65) !important;
@ -278,8 +277,7 @@
[data-theme="nebula"] .uninstall-btn:hover:not(:disabled),
[data-theme="nebula"] .btn-uninstall:hover:not(:disabled),
[data-theme="nebula"] .btn-danger:hover:not(:disabled),
[data-theme="nebula"] .backup-danger-btn:hover:not(:disabled) {
[data-theme="nebula"] .btn-danger:hover:not(:disabled) {
background: rgba(var(--status-danger-rgb), 0.50) !important;
border-color: rgba(var(--status-danger-rgb), 0.85) !important;
transform: translateY(-1px);
@ -288,7 +286,6 @@
[data-theme="nebula"] .manage-btn,
[data-theme="nebula"] .btn-manage,
[data-theme="nebula"] .btn-primary,
[data-theme="nebula"] .backup-primary-btn,
[data-theme="nebula"] .app-card .manage-btn,
[data-theme="nebula"] .app-card-actions .manage-btn {
background: rgba(var(--accent-rgb), 0.35) !important;
@ -302,7 +299,6 @@
[data-theme="nebula"] .manage-btn:hover:not(:disabled),
[data-theme="nebula"] .btn-manage:hover:not(:disabled),
[data-theme="nebula"] .btn-primary:hover:not(:disabled),
[data-theme="nebula"] .backup-primary-btn:hover:not(:disabled),
[data-theme="nebula"] .app-card .manage-btn:hover:not(:disabled),
[data-theme="nebula"] .app-card-actions .manage-btn:hover:not(:disabled) {
background: rgba(var(--accent-rgb), 0.50) !important;

View File

@ -672,8 +672,8 @@ class BackupPage {
</div>
</div>
<div class="backup-location-actions">
<button class="backup-primary-btn" data-action="save-location" data-loc="${idx}">Save changes</button>
<button class="backup-danger-btn" data-action="delete-location" data-loc="${idx}">Delete location</button>
<button class="backup-primary-btn" data-action="save-location" data-loc="${idx}">Save changes</button>
</div>
`;
}