-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathScriptListView.css
More file actions
57 lines (49 loc) · 941 Bytes
/
Copy pathScriptListView.css
File metadata and controls
57 lines (49 loc) · 941 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
#script-list-section .script-list-header {
display: flex;
align-items: center;
justify-content: space-between;
height: 2rem;
margin-bottom: 0.75rem;
}
#script-list-section h2 {
font-size: 1rem;
font-weight: 600;
margin: 0;
}
.script-list {
list-style: none;
margin: 0;
padding: 0;
border: 1px solid #e2e8f0;
border-radius: 0.5rem;
background: #fff;
overflow: hidden;
}
.script-list li {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 0.5rem 0.5rem 1rem;
border-bottom: 1px solid #f1f5f9;
}
.script-list-item-filename {
font-family: monospace;
font-size: 0.9rem;
}
.script-list-item-actions {
display: flex;
gap: 0.25rem;
}
.script-list-empty {
margin: 0;
font-size: 0.875rem;
color: #94a3b8;
}
.script-list-delete-error {
margin: 0 0 0.75rem;
font-size: 0.875rem;
color: #dc2626;
}
.script-list li:last-child {
border-bottom: none;
}