forked from SuperMap/iClient-JavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.css
More file actions
130 lines (112 loc) · 2.02 KB
/
editor.css
File metadata and controls
130 lines (112 loc) · 2.02 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
html, body, .wrapper {
height: 100% !important;
}
.wrapper {
overflow: hidden;
}
.main-header {
position: fixed;
width: 100%;
top:0;
}
.edit-container {
min-height: 52px;
background-color: #f9f9f9;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin-top: 60px;
}
.edit-container section.content {
min-height: 100%;
width: 100%;
padding: 0;
position: absolute;
top: 0;
bottom: 0;
}
.content .pane {
position: relative;
padding: 0;
}
#codePane {
height: 100%;
box-shadow: 2px 0px 6px #cccccc;
}
.codePaneTool {
position: absolute;
width: 100%;
height: 40px;
line-height: 24px;
z-index: 800;
background-color: white;
padding: 8px 22px;
box-shadow: 0 2px 10px #dddddd;
}
#editor {
font-family: Consolas, monaco, 'Courier New', Courier, monospace;
position: absolute;
top: 42px;
bottom: 0;
right: 0;
width: 100%;
line-height: 18px;
font-size: 13px;
}
#previewPane {
height: 100%;
}
#innerPage {
width: 100%;
height: 100%;
border: none;
}
.editorBtn {
display: inline-block;
width: 60px;
height: 24px;
line-height: 24px;
text-align: center;
color: #0083CB;
float: right;
cursor: pointer;
}
.editorBtn:hover {
font-weight: bold;
}
#showCodeBtn {
cursor: pointer;
z-index: 900;
position: absolute;
top: 4px;
right: 0;
padding: 0 10px;
min-width: 54px;
height: 30px;
line-height: 30px;
margin: 4px;
text-align: center;
background-color: rgba(34, 45, 50, 0.7);
color: #fff;
}
#showCodeBtn:hover {
background-color: rgba(34, 45, 50, 0.9);
}
@media screen and (max-width: 992px) {
#codePane {
display: none;
}
.codePaneTool {
padding: 8px 68px 8px 20px;
}
}
.ace_scrollbar::-webkit-scrollbar {
width: 8px;
}
.ace_scrollbar::-webkit-scrollbar-thumb {
border-radius: 12px;
background: #e7e7e7;
-webkit-box-shadow: inset 0 0 6px #d1cfcf;
}