Update from Git Manager GUI
This commit is contained in:
@@ -1904,6 +1904,60 @@ input[type="checkbox"] {
|
||||
.activity-heatmap-card.collapsed .activity-heatmap-body {
|
||||
display: none;
|
||||
}
|
||||
.confirm-modal .confirm-modal-content {
|
||||
max-width: 460px;
|
||||
border: 1px solid rgba(88, 213, 255, 0.22);
|
||||
background:
|
||||
linear-gradient(180deg, rgba(16, 29, 51, 0.96), rgba(10, 19, 34, 0.98));
|
||||
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
|
||||
}
|
||||
.confirm-modal-title {
|
||||
margin: 0;
|
||||
font-size: 20px;
|
||||
}
|
||||
.confirm-modal-message {
|
||||
margin: 10px 0 0;
|
||||
color: var(--text-secondary);
|
||||
line-height: 1.5;
|
||||
}
|
||||
.confirm-modal-buttons {
|
||||
margin-top: 18px;
|
||||
}
|
||||
.confirm-modal-btn {
|
||||
min-height: 40px;
|
||||
border-radius: var(--radius-md);
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.1px;
|
||||
}
|
||||
.confirm-modal-btn--primary {
|
||||
border: 1px solid rgba(88, 213, 255, 0.34);
|
||||
background: linear-gradient(135deg, rgba(88, 213, 255, 0.22), rgba(92, 135, 255, 0.2));
|
||||
color: #b9f2ff;
|
||||
}
|
||||
.confirm-modal-btn--primary:hover {
|
||||
border-color: rgba(88, 213, 255, 0.6);
|
||||
background: linear-gradient(135deg, rgba(88, 213, 255, 0.34), rgba(92, 135, 255, 0.3));
|
||||
}
|
||||
.confirm-modal-btn--danger {
|
||||
border: 1px solid rgba(239, 68, 68, 0.45);
|
||||
background: linear-gradient(180deg, rgba(62, 22, 22, 0.92), rgba(42, 14, 14, 0.96));
|
||||
color: #ffc1c1;
|
||||
}
|
||||
.confirm-modal-btn--danger:hover {
|
||||
border-color: rgba(239, 68, 68, 0.72);
|
||||
background: linear-gradient(180deg, rgba(82, 28, 28, 0.95), rgba(54, 18, 18, 0.98));
|
||||
color: #ffe0e0;
|
||||
}
|
||||
.confirm-modal-btn--secondary {
|
||||
border: 1px solid rgba(255, 255, 255, 0.24);
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
.confirm-modal-btn--secondary:hover {
|
||||
border-color: rgba(255, 255, 255, 0.4);
|
||||
background: rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
.activity-heatmap-months {
|
||||
margin-left: calc(var(--hm-weekday-col) + var(--hm-grid-gap));
|
||||
@@ -3238,4 +3292,413 @@ body.compact-mode .file-type-badge {
|
||||
|
||||
.fav-chip[draggable="true"] {
|
||||
cursor: grab;
|
||||
}
|
||||
|
||||
/* ═══════════════════════════════════════════════════════════
|
||||
✅ BACKUP MANAGEMENT MODAL - STYLES
|
||||
═══════════════════════════════════════════════════════════ */
|
||||
|
||||
#backupManagementModal {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
z-index: 99999;
|
||||
backdrop-filter: blur(4px);
|
||||
}
|
||||
|
||||
#backupManagementModal.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.backup-management-card {
|
||||
background: var(--bg-secondary);
|
||||
border: 1px solid rgba(88, 213, 255, 0.2);
|
||||
border-radius: var(--radius-lg);
|
||||
width: 90%;
|
||||
max-width: 700px;
|
||||
max-height: 85vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
|
||||
animation: slideUp 0.3s ease-out;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.backup-modal-header {
|
||||
padding: 20px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.backup-modal-header h2 {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
margin: 0;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.backup-modal-close {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: var(--text-muted);
|
||||
font-size: 20px;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-radius: 6px;
|
||||
transition: all var(--transition-fast);
|
||||
}
|
||||
|
||||
.backup-modal-close:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: var(--accent-primary);
|
||||
}
|
||||
|
||||
.backup-modal-body {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.backup-modal-body::-webkit-scrollbar {
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
.backup-modal-body::-webkit-scrollbar-track {
|
||||
background: rgba(9, 20, 39, 0.75);
|
||||
border-left: 1px solid rgba(88, 213, 255, 0.12);
|
||||
}
|
||||
|
||||
.backup-modal-body::-webkit-scrollbar-thumb {
|
||||
background: linear-gradient(180deg, rgba(88, 213, 255, 0.55), rgba(92, 135, 255, 0.55));
|
||||
border-radius: 10px;
|
||||
border: 2px solid rgba(9, 20, 39, 0.9);
|
||||
}
|
||||
|
||||
.backup-modal-body::-webkit-scrollbar-thumb:hover {
|
||||
background: linear-gradient(180deg, rgba(88, 213, 255, 0.8), rgba(92, 135, 255, 0.8));
|
||||
}
|
||||
|
||||
/* Provider Selection */
|
||||
.backup-provider-select {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.backup-provider-select label {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
color: var(--accent-primary);
|
||||
}
|
||||
|
||||
#backupProviderSelect {
|
||||
padding: 10px 12px;
|
||||
background: var(--bg-tertiary);
|
||||
border: 1px solid rgba(88, 213, 255, 0.25);
|
||||
border-radius: var(--radius-md);
|
||||
color: var(--text-primary);
|
||||
font-size: 13px;
|
||||
font-family: inherit;
|
||||
cursor: pointer;
|
||||
transition: all var(--transition-fast);
|
||||
}
|
||||
|
||||
#backupProviderSelect:hover {
|
||||
border-color: rgba(88, 213, 255, 0.4);
|
||||
background: rgba(19, 33, 58, 0.8);
|
||||
}
|
||||
|
||||
#backupProviderSelect:focus {
|
||||
outline: none;
|
||||
border-color: var(--accent-primary);
|
||||
box-shadow: 0 0 0 3px rgba(88, 213, 255, 0.15);
|
||||
background: rgba(19, 33, 58, 0.9);
|
||||
}
|
||||
|
||||
#backupProviderSelect option {
|
||||
background: var(--bg-secondary);
|
||||
color: var(--text-primary);
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
/* Credentials Sections */
|
||||
.backup-credentials-section {
|
||||
display: none;
|
||||
padding: 12px;
|
||||
background: linear-gradient(135deg, rgba(88, 213, 255, 0.08) 0%, rgba(122, 81, 255, 0.05) 100%);
|
||||
border: 1px solid rgba(88, 213, 255, 0.2);
|
||||
border-radius: var(--radius-md);
|
||||
gap: 12px;
|
||||
flex-direction: column;
|
||||
animation: slideDown 0.2s ease-out;
|
||||
}
|
||||
|
||||
@keyframes slideDown {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-8px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.backup-credentials-section.active {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.backup-credentials-section input,
|
||||
.backup-credentials-section textarea,
|
||||
.backup-credentials-section select {
|
||||
padding: 9px 10px;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 6px;
|
||||
color: var(--text-primary);
|
||||
font-size: 12px;
|
||||
font-family: inherit;
|
||||
transition: all var(--transition-fast);
|
||||
}
|
||||
|
||||
.backup-credentials-section input::placeholder {
|
||||
color: rgba(174, 189, 216, 0.35);
|
||||
}
|
||||
|
||||
.backup-credentials-section input:focus,
|
||||
.backup-credentials-section textarea:focus,
|
||||
.backup-credentials-section select:focus {
|
||||
outline: none;
|
||||
border-color: var(--accent-primary);
|
||||
box-shadow: 0 0 0 3px rgba(88, 213, 255, 0.12);
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
|
||||
.backup-credentials-section select option {
|
||||
background: var(--bg-secondary);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.backup-input-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.backup-input-group label {
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
color: var(--text-secondary);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.3px;
|
||||
}
|
||||
|
||||
/* Buttons */
|
||||
.backup-modal-buttons {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
padding: 16px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
|
||||
.backup-btn {
|
||||
padding: 10px 16px;
|
||||
border-radius: var(--radius-md);
|
||||
border: none;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all var(--transition-fast);
|
||||
min-width: 120px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 6px;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.backup-btn-primary {
|
||||
background: var(--accent-gradient);
|
||||
color: #000;
|
||||
box-shadow: 0 4px 12px rgba(88, 213, 255, 0.25);
|
||||
}
|
||||
|
||||
.backup-btn-primary:hover {
|
||||
box-shadow: 0 8px 20px rgba(88, 213, 255, 0.35);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.backup-btn-primary:active {
|
||||
transform: translateY(0);
|
||||
box-shadow: 0 2px 8px rgba(88, 213, 255, 0.25);
|
||||
}
|
||||
|
||||
.backup-btn-secondary {
|
||||
background: transparent;
|
||||
border: 1.5px solid rgba(88, 213, 255, 0.35);
|
||||
color: var(--text-primary);
|
||||
transition: all var(--transition-fast);
|
||||
}
|
||||
|
||||
.backup-btn-secondary:hover {
|
||||
background: rgba(88, 213, 255, 0.12);
|
||||
border-color: var(--accent-primary);
|
||||
color: var(--accent-primary);
|
||||
box-shadow: 0 4px 12px rgba(88, 213, 255, 0.15);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.backup-btn-secondary:active {
|
||||
transform: translateY(0);
|
||||
}
|
||||
|
||||
.backup-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
/* Backup List */
|
||||
#backupListContainer {
|
||||
background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 100%);
|
||||
border: 1px solid rgba(88, 213, 255, 0.15);
|
||||
border-radius: var(--radius-md);
|
||||
max-height: 250px;
|
||||
overflow-y: auto;
|
||||
min-height: 100px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.backup-list-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 12px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
||||
transition: background var(--transition-fast);
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.backup-list-info {
|
||||
flex: 1 1 auto;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.backup-list-name {
|
||||
font-weight: 600;
|
||||
margin-bottom: 4px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.backup-list-meta {
|
||||
color: var(--text-muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.backup-list-actions {
|
||||
flex: 0 0 auto;
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.backup-list-action {
|
||||
appearance: none;
|
||||
border-radius: 8px;
|
||||
padding: 7px 12px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
border: 1px solid rgba(88, 213, 255, 0.28);
|
||||
background: linear-gradient(180deg, rgba(20, 34, 58, 0.92), rgba(12, 24, 44, 0.92));
|
||||
color: var(--text-primary);
|
||||
cursor: pointer;
|
||||
transition: all var(--transition-fast);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.backup-list-action:hover {
|
||||
border-color: rgba(88, 213, 255, 0.6);
|
||||
background: linear-gradient(180deg, rgba(30, 52, 86, 0.94), rgba(15, 30, 56, 0.94));
|
||||
}
|
||||
|
||||
.backup-list-action--delete {
|
||||
color: #ff9f9f;
|
||||
border-color: rgba(239, 68, 68, 0.35);
|
||||
}
|
||||
|
||||
.backup-list-action--delete:hover {
|
||||
color: #ffd6d6;
|
||||
border-color: rgba(239, 68, 68, 0.65);
|
||||
background: linear-gradient(180deg, rgba(72, 24, 24, 0.88), rgba(48, 14, 14, 0.9));
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
.backup-list-item {
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.backup-list-actions {
|
||||
width: 100%;
|
||||
justify-content: flex-end;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.backup-list-action {
|
||||
flex: 1 1 auto;
|
||||
text-align: center;
|
||||
min-width: 130px;
|
||||
}
|
||||
}
|
||||
|
||||
.backup-list-item:hover {
|
||||
background: rgba(88, 213, 255, 0.1);
|
||||
}
|
||||
|
||||
.backup-list-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
/* Scrollbar Styling */
|
||||
#backupListContainer::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
#backupListContainer::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
#backupListContainer::-webkit-scrollbar-thumb {
|
||||
background: rgba(88, 213, 255, 0.2);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
#backupListContainer::-webkit-scrollbar-thumb:hover {
|
||||
background: rgba(88, 213, 255, 0.4);
|
||||
}
|
||||
Reference in New Issue
Block a user