-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompleted-actions.css
More file actions
57 lines (51 loc) · 1.22 KB
/
Copy pathcompleted-actions.css
File metadata and controls
57 lines (51 loc) · 1.22 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
/* Completed Actions - matching archive actions */
.completed-actions {
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.restore-completed-btn {
background: rgba(79, 172, 254, 0.15);
border: 1px solid rgba(79, 172, 254, 0.3);
color: var(--text-primary);
width: 28px;
height: 28px;
border-radius: 6px;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
}
.restore-completed-btn:hover {
background: rgba(79, 172, 254, 0.25);
border-color: rgba(79, 172, 254, 0.5);
transform: scale(1.05);
}
.restore-completed-btn:active {
transform: scale(0.95);
}
.delete-completed-btn {
background: rgba(245, 87, 108, 0.1);
border: 1px solid rgba(245, 87, 108, 0.3);
color: #f5576c;
width: 28px;
height: 28px;
border-radius: 6px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
padding: 0;
}
.delete-completed-btn:hover {
background: rgba(245, 87, 108, 0.2);
border-color: rgba(245, 87, 108, 0.5);
transform: scale(1.05);
}
.delete-completed-btn:active {
transform: scale(0.95);
}