-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
39 lines (31 loc) · 909 Bytes
/
Copy pathstyles.css
File metadata and controls
39 lines (31 loc) · 909 Bytes
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
.rustshare-sync-status {
display: inline-flex;
align-items: center;
gap: 4px;
}
.rustshare-sync-status-icon {
width: 10px;
height: 10px;
border-radius: 50%;
}
.rustshare-sync-status--connected .rustshare-sync-status-icon {
background-color: var(--color-green);
}
.rustshare-sync-status--disconnected .rustshare-sync-status-icon {
background-color: var(--color-red);
}
.rustshare-sync-status--syncing .rustshare-sync-status-icon {
background-color: var(--color-yellow);
}
.rustshare-sync-status--synced .rustshare-sync-status-icon {
background-color: var(--color-green);
}
.rustshare-sync-status--conflict .rustshare-sync-status-icon {
background-color: var(--color-orange);
}
.rustshare-sync-status--error .rustshare-sync-status-icon {
background-color: var(--color-red);
}
.rustshare-sync-status--offline .rustshare-sync-status-icon {
background-color: var(--text-muted);
}