-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselection.css
More file actions
46 lines (42 loc) · 1.05 KB
/
Copy pathselection.css
File metadata and controls
46 lines (42 loc) · 1.05 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
.promptcard-selection-overlay {
position: fixed;
inset: 0;
z-index: 2147483647;
cursor: crosshair;
background: rgba(10, 14, 24, 0.28);
user-select: none;
}
.promptcard-selection-hint {
position: fixed;
top: 18px;
left: 50%;
transform: translateX(-50%);
padding: 10px 14px;
border-radius: 999px;
background: rgba(15, 23, 42, 0.92);
color: #fff;
font: 600 14px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}
.promptcard-selection-box {
position: fixed;
display: none;
border: 2px solid #ffffff;
background: rgba(79, 70, 229, 0.18);
box-shadow: 0 0 0 9999px rgba(10, 14, 24, 0.42), 0 0 0 1px rgba(79, 70, 229, 0.9) inset;
}
.promptcard-selection-box.is-visible {
display: block;
}
.promptcard-selection-cancel {
position: fixed;
top: 16px;
right: 16px;
border: 0;
border-radius: 999px;
padding: 10px 14px;
background: rgba(255, 255, 255, 0.96);
color: #1f2430;
font: 700 14px -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
cursor: pointer;
}