-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.css
More file actions
113 lines (95 loc) · 1.46 KB
/
Copy pathpopup.css
File metadata and controls
113 lines (95 loc) · 1.46 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 320px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-size: 13px;
color: #333;
padding: 16px;
}
.view {
display: flex;
flex-direction: column;
gap: 12px;
}
.view[hidden] {
display: none;
}
.header {
font-size: 15px;
font-weight: 600;
}
.btn {
padding: 8px 16px;
border: none;
border-radius: 6px;
font-size: 13px;
cursor: pointer;
}
.btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.btn-primary {
background: #4772fa;
color: #fff;
}
.btn-primary:hover:not(:disabled) {
background: #3a5fd9;
}
select {
padding: 8px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 13px;
background: #fff;
}
.preview {
display: grid;
grid-template-columns: auto 1fr;
gap: 4px 10px;
align-items: baseline;
}
.label {
font-weight: 600;
color: #666;
white-space: nowrap;
}
.value {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.value.url {
color: #4772fa;
font-size: 11px;
}
.link {
text-align: center;
font-size: 11px;
color: #888;
}
.feedback {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 14px;
border-radius: 8px;
}
.feedback[hidden] {
display: none;
}
.feedback.success {
background: #e6f9e6;
color: #2a7d2a;
}
.feedback.error {
background: #fde8e8;
color: #c0392b;
}