Skip to content

Commit 102d68e

Browse files
authored
Merge pull request #77 from visualpython/release
Release v1.1.7
2 parents 946c924 + 06967cf commit 102d68e

134 files changed

Lines changed: 2469 additions & 1817 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

css/api_block/index.css

Lines changed: 49 additions & 278 deletions
Large diffs are not rendered by default.

css/common/frameEditor.css

Lines changed: 83 additions & 117 deletions
Large diffs are not rendered by default.

css/common/instanceEditor.css

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
/* select boxes */
1+
/* Select Boxes */
22
.vp-ins-box {
33
width: 100%;
44
display: grid;
55
grid-template-columns: 50% 50%;
66
grid-gap: 10px;
7-
/* padding: 5px 14px 0px 14px; */
8-
padding-right: 14px;
7+
padding-right: 15px;
98
}
109
.vp-ins-select-container {
11-
1210
}
1311
.vp-ins-select-title {
1412
font-weight: 700;
15-
color: var(--hightlight-color);
13+
color: var(--font-hightlight);
1614
padding: 5px 5px 5px 0px;
1715
}
1816
#vp-wrapper .vp-ins-select-container input.vp-ins-search {
@@ -31,12 +29,10 @@
3129
.vp-ins-select-list {
3230
height: 145px;
3331
width: 100%;
34-
3532
list-style: none;
3633
margin: 0px;
3734
padding: 0px 5px 0px 5px;
3835
color: #696969;
39-
4036
overflow: auto;
4137
}
4238
.vp-ins-select-list::-webkit-scrollbar {
@@ -47,7 +43,6 @@
4743
border-radius: 0;
4844
background: #eeeeee;
4945
}
50-
5146
.vp-ins-select-list::-webkit-scrollbar-thumb {
5247
border-radius: 0;
5348
background: #b0b0b0;
@@ -59,7 +54,7 @@
5954
border-bottom: 0.25px solid var(--light-gray-color);
6055
}
6156
.vp-ins-select-item.selected {
62-
color : var(--hightlight-color);
57+
color : var(--font-hightlight);
6358
background: var(--light-gray-color);
6459
}
6560
.vp-ins-select-item span {
@@ -72,20 +67,18 @@
7267
background: var(--light-gray-color);
7368
}
7469
.vp-ins-select-item:hover span {
75-
background: var(--hightlight-color);
70+
background: var(--highlight-color);
7671
color: #FFFFFF;
7772
}
7873
.vp-ins-option-box.api {
7974
width: 95%;
8075
}
81-
8276
.vp-ins-parameter-box {
8377
grid-column: 1/3;
8478
}
8579
.vp-ins-parameter {
8680
width: 100% !important;
8781
}
88-
8982
.vp-create-var-box {
9083
position: relative;
9184
margin-top: 5px;
@@ -96,7 +89,7 @@
9689
#vp-wrapper .vp-ins-select-container .vp-create-var-btn {
9790
position: absolute;
9891
color: #C4C4C4;
99-
right: 5px;
100-
top: 5px;
92+
right: 9px;
93+
top: 9px;
10194
cursor: pointer;
10295
}

css/common/popupPage.css

Lines changed: 16 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -4,74 +4,64 @@
44
left: 0;
55
width: 100%;
66
height: 100%;
7-
87
z-index: 1200;
9-
108
background-color: rgba(0,0,0,.4);
119
}
12-
1310
.vp-pp-container {
1411
position: relative;
1512
left: 50%;
1613
top: 50%;
1714
transform:translate(-50%, -50%);
18-
1915
min-width: 400px;
2016
min-height: 400px;
2117
width: 95%;
2218
height: 95%;
23-
2419
background-color: white;
2520
}
26-
2721
.vp-pp-title {
28-
height: 30px;
22+
height: 40px;
2923
padding: 5px 0px 5px 10px;
30-
31-
background-color: #EEE;
24+
background-color: #eee;
3225
border: 1px solid #ddd;;
3326
display: flex;
3427
flex-direction: row;
3528
position: relative;
36-
29+
align-items: center;
30+
font-size: 16px;
3731
font-weight: 700;
3832
}
39-
4033
.vp-pp-close {
4134
position: fixed;
4235
z-index: 3;
4336
right: 5px;
44-
width: 20px;
37+
width: 30px;
4538
height: 20px;
4639
line-height: 20px;
47-
top: 5px;
40+
top: 10px;
4841
text-align: center;
4942
cursor: pointer;
5043
}
51-
5244
.vp-pp-body {
5345
width: 100%;
54-
height: calc(100% - 80px);
55-
padding: 10px;
46+
height: calc(98% - 80px);
47+
padding: 20px;
5648
display: grid;
5749
grid-row-gap: 5px;
58-
grid-template-rows: 35px 30px 60% calc(40% - 80px);
50+
grid-template-rows: 30px 30px 60% calc(40% - 80px);
5951
overflow: auto;
6052
}
61-
6253
.vp-pp-preview-box {
6354
display: none;
6455
width: 100%;
6556
height: 100px;
6657
position: absolute;
6758
bottom: 50px;
68-
6959
background: #F7F7F7;
7060
border: 0.25px solid #E4E4E4;
7161
padding: 10px;
7262
}
7363

74-
/** buttons */
64+
/** Buttons */
7565
.vp-pp-btn-box {
7666
/* position: absolute;
7767
bottom: 25px;
@@ -85,15 +75,15 @@
8575
}
8676
.vp-pp-btn-preview {
8777
left: 15px;
88-
top: 11px;
78+
top: 9px;
8979
}
9080
.vp-pp-btn-cancel {
91-
top: 11px;
92-
right: 105px;
81+
top: 9px;
82+
right: 106px;
9383
}
9484
.vp-pp-btn-runadd {
9585
position: absolute;
96-
top: 11px;
86+
top: 9px;
9787
right: 15px;
9888
width: fit-content;
9989
height: 30px;
@@ -109,17 +99,17 @@
10999
.vp-pp-btn-detail {
110100
display: inline-block;
111101
width: 20px;
102+
height: 28px;
112103
border-radius: 0px 2px 2px 0px;
104+
padding: 0;
113105
}
114106
.vp-pp-detail-box {
115107
display: none;
116108
background: white;
117109
border: 0.25px solid var(--border-gray-color);
118110
position: absolute;
119111
bottom: 35px;
120-
right: 1px;
121112
width: 84px;
122-
height: 30px;
123113
text-align: center;
124114
line-height: 30px;
125115
}

0 commit comments

Comments
 (0)