forked from ControlCore-Project/concore-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsyncStatusPanel.css
More file actions
81 lines (68 loc) · 1.33 KB
/
Copy pathsyncStatusPanel.css
File metadata and controls
81 lines (68 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.sync-status-panel {
position: absolute;
right: 12px;
bottom: 12px;
z-index: 5;
width: 320px;
background: var(--bg-secondary);
color: var(--text-primary);
border: 1px solid var(--border-primary);
border-radius: 8px;
padding: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
font-size: 12px;
}
.sync-status-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
}
.sync-status-badge {
font-size: 11px;
border-radius: 10px;
padding: 2px 8px;
background: #666;
}
.sync-status-badge.synced {
background: #2e7d32;
}
.sync-status-badge.dirty {
background: #ef6c00;
}
.sync-status-badge.conflict {
background: #c62828;
}
.sync-status-badge.syncing {
background: #1565c0;
}
.sync-status-badge.error {
background: #7b1fa2;
}
.sync-status-meta {
display: grid;
grid-template-columns: 1fr;
row-gap: 4px;
margin-bottom: 8px;
}
.sync-key {
color: var(--text-primary);
opacity: 0.75;
margin-right: 4px;
}
.sync-value {
word-break: break-all;
}
.sync-status-result {
margin-bottom: 10px;
}
.sync-status-actions {
display: flex;
flex-wrap: wrap;
gap: 6px;
}
.sync-status-actions .confirm-btn,
.sync-status-actions .cancel-btn {
padding: 6px 8px;
font-size: 12px;
}