Skip to content

Commit 4c10b66

Browse files
authored
Merge pull request #99 from visualpython/release
Release v1.1.14
2 parents d851e92 + b119587 commit 4c10b66

33 files changed

+3019
-993
lines changed

css/api_block/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
height: calc(100% - 100px);
2020
}
2121
.vp-apiblock-tab-container {
22+
min-width: 265px;
2223
}
2324
.vp-apiblock-tab-header {
2425
height: 40px;

css/common/bind.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.vp-bd-container {
2+
width: 700px;
3+
height: 550px;
4+
}
5+
6+
.vp-bd-container .vp-pp-body {
7+
overflow: hidden;
8+
}
9+
10+
.vp-bd-grid-box {
11+
display: grid;
12+
grid-template-rows: 30px;
13+
grid-row-gap: 5px;
14+
}
15+
.vp-bd-grid-box label {
16+
font-weight: bold;
17+
}
18+
.vp-bd-grid-box select,
19+
.vp-bd-grid-box input {
20+
width: 160px;
21+
}
22+
23+
.vp-bd-type-box {
24+
display: grid;
25+
grid-template-rows: 30px;
26+
grid-row-gap: 5px;
27+
}
28+
29+
.vp-bd-df-refresh {
30+
display: inline-block;
31+
cursor: pointer;
32+
margin-left: 5px;
33+
}

css/common/merge.css

Lines changed: 0 additions & 4 deletions
This file was deleted.

css/common/reshape.css

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
.vp-rs-container {
2+
width: 700px;
3+
height: 550px;
4+
}
5+
6+
.vp-rs-container .vp-pp-body {
7+
overflow: hidden;
8+
}
9+
10+
.vp-rs-df-box {
11+
display: grid;
12+
grid-template-rows: 30px;
13+
grid-row-gap: 5px;
14+
}
15+
16+
.vp-rs-df-refresh {
17+
display: inline-block;
18+
cursor: pointer;
19+
margin-left: 5px;
20+
}
21+
.vp-rs-df-box label {
22+
font-weight: bold;
23+
}
24+
.vp-rs-df-box select,
25+
.vp-rs-df-box input {
26+
width: 160px;
27+
}
28+
29+
.vp-rs-type-box {
30+
display: grid;
31+
grid-template-rows: 30px;
32+
grid-row-gap: 5px;
33+
}
34+
.vp-rs-type-title {
35+
/* background: var(--light-gray-color); */
36+
border: 1px solid var(--border-gray-color);
37+
height: 30px;
38+
line-height: 30px;
39+
vertical-align: middle;
40+
padding: 0px 10px;
41+
font-weight: bold;
42+
}

css/component/common.css

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@
4646
background: #EF6B10;
4747
}
4848
.vp-button.disabled,
49-
.vp-button.disabled:hover {
49+
.vp-button.disabled:hover,
50+
.vp-button:disabled,
51+
.vp-button:disabled:hover {
5052
background: #E5E5E5;
5153
border: 0px;
5254
border: 0.25px solid #E4E4E4;
@@ -64,6 +66,20 @@
6466
border-right: 1px solid var(--font-primary);
6567
}
6668

69+
/* Scrollbar */
70+
.vp-scrollbar {
71+
overflow-y: auto;
72+
--webkit-mask-position: left top;
73+
}
74+
.vp-scrollbar::-webkit-scrollbar {
75+
width: 5px;
76+
height: 5px;
77+
}
78+
.vp-scrollbar::-webkit-scrollbar-thumb {
79+
border: 0.3px solid #C4C4C4;
80+
background: #C4C4C4;
81+
}
82+
6783
/* Width selector */
6884
.wp50 {
6985
width: 50px;
@@ -78,6 +94,13 @@
7894
width: 120px;
7995
}
8096

97+
.w40 {
98+
width: 40%;
99+
}
100+
.w100 {
101+
width: 100%;
102+
}
103+
81104
/* font selector */
82105
.fb {
83106
font-weight: bold;

css/matplotlib/plot.css

Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
33
--bgcolor: #696969;
44
}
55

6+
/* Import Options box*/
7+
.vp-import-box {
8+
display: grid;
9+
grid-template-rows: 30px;
10+
grid-row-gap: 5px;
11+
border: 1px solid var(--border-gray-color);
12+
padding: 10px 0px;
13+
}
14+
.vp-import-box label {
15+
min-width: 130px;
16+
max-width: 300px;
17+
vertical-align: middle;
18+
text-align: left;
19+
font-weight: bold;
20+
height: 30px;
21+
padding: 2px 5px 2px 16px;
22+
}
23+
.vp-import-box input[type="text"] {
24+
width: 160px;
25+
}
26+
.vp-import-box input[type="number"] {
27+
width: 79px;
28+
}
29+
.vp-pl-import-run {
30+
float: right;
31+
margin-right: 10px;
32+
}
33+
634
.vp-icon-btn.vp-close-view {
735
position: absolute;
836
right: 10px;
@@ -268,18 +296,19 @@
268296
.vp-method-select {
269297
border: 0.25px solid #C4C4C4;
270298
overflow-y: auto;
271-
width: 125px;
299+
width: 250px;
272300
height: 100px;
273301
}
274302
.vp-column-select-item,
275303
.vp-method-select-item {
276-
padding-left: 3px;
277304
cursor: pointer;
305+
padding: 3px;
306+
border-bottom: 0.25px solid var(--border-gray-color);
278307
}
279308
.vp-column-select-item.selected,
280309
.vp-method-select-item.selected {
281310
color: var(--font-hightlight);
282-
background: #C4C4C4;
311+
background: var(--light-gray-color);
283312
}
284313

285314
/* Select Data Button */

0 commit comments

Comments
 (0)