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
.app-code-editor {
width: 100%;
height: 100%;
min-width: 300px;
min-height: 300px;
position: relative;
overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 12px 0px;
border-radius: 4px;
border-color: red;
}
.app-code-editor__header {
// height: 22px;
padding: 5px 15px;
display: flex;
align-items: center;
z-index: 1;
font-size: 12px;
font-weight: 800;
justify-content: space-between;
&.app-code-editor__header--hidden {
display: none;
}
}
.app-code-editor__header__left__toolbar{
.ivu-sleect{
width: 110px;
}
.ivu-select-selection,
.ivu-select-selected-value {
height: 22px;
line-height: 22px;
border: 0px;
border-radius: 0px;
background: transparent;
color: rgb(157, 165, 180);
}
.ivu-select-arrow {
top: 16px;
}
}
.app-code-editor__header__right__toolbar{
.toolbar-item {
cursor: pointer;
padding: 3px;
color: rgb(157, 165, 180);
display: flex;
align-items: center;
justify-content: center;
border-radius: 2px;
}
.toolbar-item:hover {
background-color: rgba(106, 108, 109, 0.31);
}
}
.app-code-editor__header.vs-dark {
background-color: rgb(33, 37, 43);
}
.app-code-editor__content {
min-height: 278px;
height: calc(100% - 22px);
width: 100%;
}