Skip to content

Commit c5503a9

Browse files
committed
#31 - frame editor as popup
1 parent 99d33f9 commit c5503a9

File tree

4 files changed

+560
-300
lines changed

4 files changed

+560
-300
lines changed

css/pandas/frameEditor.css renamed to css/common/frameEditor.css

Lines changed: 78 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,61 @@
1-
21
.vp-fe {
2+
position: absolute;
3+
top: 0;
4+
left: 0;
5+
width: 100%;
6+
height: 100%;
7+
8+
z-index: 1200;
9+
10+
background-color: rgba(0,0,0,.4);
11+
}
12+
13+
.vp-fe-button {
14+
width: 45px;
15+
}
16+
17+
.vp-fe-container {
18+
position: relative;
19+
left: 50%;
20+
top: 50%;
21+
transform:translate(-50%, -50%);
22+
23+
min-width: 400px;
24+
min-height: 400px;
25+
width: 90%;
26+
height: 90%;
27+
28+
background-color: white;
29+
}
30+
31+
.vp-fe-title {
32+
height: 30px;
33+
padding: 5px 0px 5px 10px;
34+
35+
background-color: #EEE;
36+
border: 1px solid #ddd;;
37+
display: flex;
38+
flex-direction: row;
39+
position: relative;
40+
41+
font-weight: 700;
42+
}
43+
44+
.vp-fe-close {
45+
position: fixed;
46+
z-index: 3;
47+
right: 5px;
48+
width: 20px;
49+
height: 20px;
50+
line-height: 20px;
51+
top: 5px;
52+
text-align: center;
53+
}
54+
55+
.vp-fe-body {
56+
width: 100%;
57+
height: 100%;
58+
padding: 10px;
359
display: grid;
460
grid-row-gap: 5px;
561
}
@@ -111,4 +167,25 @@
111167

112168
.vp-fe-table-more {
113169
margin: 5px;
170+
}
171+
172+
.vp-fe-info {
173+
width: 100%;
174+
}
175+
176+
.vp-fe-info-content {
177+
width: 100%;
178+
overflow: auto;
179+
}
180+
181+
.vp-fe-info-content pre {
182+
width: 300px;
183+
padding:10px;
184+
white-space: pre-wrap;
185+
overflow: auto;
186+
white-space: pre-wrap; /* CSS3*/
187+
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
188+
white-space: -pre-wrap; /* Opera 4-6 */
189+
white-space: -o-pre-wrap; /* Opera 7 */
190+
word-wrap: break-all; /* Internet Explorer 5.5+ */
114191
}

0 commit comments

Comments
 (0)