forked from ControlCore-Project/concore-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeEdit.css
More file actions
43 lines (36 loc) · 705 Bytes
/
Copy pathcodeEdit.css
File metadata and controls
43 lines (36 loc) · 705 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
.textField {
background-color: #f5f5f5;
font-size: 15px;
}
.textField textarea {
background-color: transparent;
font-size: 15px;
font-family: monospace;
width: 100%;
border: none;
resize: none;
padding: 0px;
outline: 0px;
}
.preTextField, .postTextField {
height: 20px;
}
.textField .mainTextField {
height: 100px;
padding-left: 10px;
width: calc(100% - 50px);
}
.textField:focus{
outline: auto;
}
.textField .docStr{
background-color: transparent;
font-size: 15px;
font-family: monospace;
width: 100%;
white-space: break-spaces;
}
[data-theme='dark'] .textField {
background-color: #2D2D2D;
color: #E4E4E4;
}