File tree 5 files changed +504
-70
lines changed 5 files changed +504
-70
lines changed Original file line number Diff line number Diff line change
1
+ .vp-gb-container {
2
+ width : 700px ;
3
+ height : 550px ;
4
+ }
5
+
6
+ .vp-gb-df-box {
7
+ display : grid;
8
+ grid-template-rows : 30px ;
9
+ grid-row-gap : 5px ;
10
+ }
11
+
12
+ .vp-gb-df-refresh {
13
+ display : inline-block;
14
+ cursor : pointer;
15
+ margin-left : 5px ;
16
+ }
17
+ .vp-gb-df-box label {
18
+ font-weight : bold;
19
+ }
20
+ .vp-gb-df-box select ,
21
+ .vp-gb-df-box input {
22
+ width : 160px ;
23
+ }
24
+ .vp-gb-adv-box {
25
+ border : 1px solid var (--border-gray-color );
26
+ padding : 10px ;
27
+ margin-top : 5px ;
28
+ height : 180px ;
29
+ }
Original file line number Diff line number Diff line change 45
45
width : 100% ;
46
46
height : calc (98% - 80px );
47
47
padding : 20px ;
48
- display : grid;
48
+ /* display: grid;
49
49
grid-row-gap: 5px;
50
- grid-template-rows : 30px 30px 60% calc (40% - 80px );
50
+ grid-template-rows: 30px 30px 60% calc(40% - 80px); */
51
51
overflow : auto;
52
52
}
53
53
.vp-pp-preview-box {
120
120
color : var (--font-hightlight );
121
121
background : var (--light-gray-color );
122
122
}
123
+
124
+
125
+ .vp-pp-popup-box {
126
+ position : absolute;
127
+ left : 50% ;
128
+ top : 50% ;
129
+ transform : translate (-50% , -50% );
130
+ min-width : 400px ;
131
+ min-height : 150px ;
132
+ width : 30% ;
133
+ height : fit-content;
134
+ background-color : white;
135
+ z-index : 200 ;
136
+ border : 0.25px solid var (--border-gray-color );
137
+ box-shadow : 1px 1px 2px rgb (0 0 0 / 10% );
138
+ }
139
+ .vp-pp-popup-body {
140
+ height : calc (100% - 80px );
141
+ padding : 10px ;
142
+ }
143
+ .vp-pp-popup-close {
144
+ position : fixed;
145
+ z-index : 3 ;
146
+ right : 5px ;
147
+ width : 30px ;
148
+ height : 20px ;
149
+ line-height : 20px ;
150
+ top : 10px ;
151
+ text-align : center;
152
+ cursor : pointer;
153
+ }
154
+ .vp-pp-popup-button-box {
155
+ float : right;
156
+ margin : 0 15px 15px 0 ;
157
+ }
Original file line number Diff line number Diff line change 62
62
display : inline-block;
63
63
height : 15px ;
64
64
border-right : 1px solid var (--font-primary );
65
+ }
66
+
67
+ /* Width selector */
68
+ .wp50 {
69
+ width : 50px ;
70
+ }
71
+ .wp80 {
72
+ width : 80px ;
73
+ }
74
+ .wp100 {
75
+ width : 100px ;
76
+ }
77
+ .wp120 {
78
+ width : 120px ;
79
+ }
80
+
81
+ /* font selector */
82
+ .fb {
83
+ font-weight : bold;
65
84
}
Original file line number Diff line number Diff line change @@ -809,6 +809,7 @@ define([
809
809
file : 'nbextensions/visualpython/src/common/vpGroupby' ,
810
810
icon : '/nbextensions/visualpython/resource/apps/apps_groupby.svg' ,
811
811
color : 2 ,
812
+ config : { width : '700px' , height : '550px' }
812
813
} ,
813
814
'merge' : {
814
815
label : 'Merge' ,
You can’t perform that action at this time.
0 commit comments