-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathScriptEditorView.css
More file actions
51 lines (45 loc) · 812 Bytes
/
Copy pathScriptEditorView.css
File metadata and controls
51 lines (45 loc) · 812 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
.modal-panel {
position: fixed;
inset: 0;
background: #fff;
padding: 1.5rem;
display: flex;
flex-direction: column;
gap: 0.75rem;
z-index: 100;
}
.script-editor-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}
.script-editor-filename {
margin: 0;
font-family: monospace;
font-size: 0.875rem;
color: #64748b;
}
.script-editor-error {
margin: 0;
font-size: 0.875rem;
color: #dc2626;
}
.script-editor-actions {
display: flex;
gap: 0.5rem;
justify-content: flex-end;
}
.script-editor-textarea {
flex: 1;
font-family: monospace;
font-size: 0.875rem;
border: 1px solid #e2e8f0;
border-radius: 0.375rem;
padding: 0.75rem;
resize: none;
outline: none;
}
.script-editor-textarea:focus {
border-color: #2563eb;
}