-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAddScriptView.css
More file actions
57 lines (50 loc) · 973 Bytes
/
Copy pathAddScriptView.css
File metadata and controls
57 lines (50 loc) · 973 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.add-script-filename-row {
display: flex;
align-items: center;
gap: 0.25rem;
}
.add-script-input {
border: 1px solid #e2e8f0;
border-radius: 0.375rem;
padding: 0.5rem 0.75rem;
font-size: 0.875rem;
font-family: monospace;
outline: none;
}
.add-script-input:focus {
border-color: #2563eb;
}
.add-script-ext {
font-family: monospace;
font-size: 0.875rem;
color: #64748b;
}
.add-script-error {
margin: 0;
min-height: 1.2rem; /* Prevents layout shift when error appears/disappears. */
font-size: 0.875rem;
color: #dc2626;
}
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
}
.modal-dialog {
background: #fff;
border-radius: 0.5rem;
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
min-width: 24rem;
}
.add-script-actions {
display: flex;
gap: 0.5rem;
justify-content: flex-end;
}