Skip to content

Commit 94f71bf

Browse files
authored
Merge pull request #119 from visualpython/release
Release v2.1.0
2 parents 328f7c1 + 8656de2 commit 94f71bf

Some content is hidden

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

90 files changed

+6145
-518
lines changed

css/boardFrame.css

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,12 @@
8383
}
8484
.vp-board-footer-buttons {
8585
position: absolute;
86-
right: 15px;
86+
right: 5px;
8787
z-index: 2;
8888
}
89+
.vp-board-buttons {
90+
margin-right: 5px;
91+
}
8992
.vp-board-loading {
9093
display: none;
9194
position: absolute;
@@ -234,6 +237,13 @@
234237
.vp-block.apps.vp-focus-child .vp-block-header {
235238
background-color: rgb(253, 177, 133);
236239
}
240+
.vp-block.machine_learning .vp-block-header {
241+
background-color: #E8ECD0;
242+
}
243+
.vp-block.machine_learning.vp-focus .vp-block-header,
244+
.vp-block.machine_learning.vp-focus-child .vp-block-header {
245+
background-color: #C6CE94;
246+
}
237247
.vp-block.logic-define .vp-block-header {
238248
background-color: rgb(213, 231, 222);
239249
}
@@ -312,14 +322,15 @@
312322
.vp-block-menu-box {
313323
position: fixed;
314324
background: #FFFFFF;
315-
width: 100px;
325+
width: 125px;
316326
border: 0.25px solid #E4E4E4;
317327
padding: 5px;
318328
z-index: 50;
319329
}
320330
.vp-block-menu-item {
321331
color: var(--font-primary);
322332
padding: 5px;
333+
font-size: 14px;
323334
}
324335
.vp-block-menu-item:hover {
325336
color: var(--font-hightlight);

css/component/instanceEditor.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
.vp-ins-select-container .vp-ins-search-icon {
1818
position: absolute;
1919
color: #C4C4C4;
20-
right: 5px;
21-
top: 5px;
20+
right: 7px;
21+
top: 7px;
2222
}
2323
.vp-ins-select-box {
2424
margin-top: 5px;
25-
border: 0.25px solid #C4C4C4;
25+
border: 0.25px solid var(--border-gray-color);
2626
}
2727
.vp-ins-select-list {
2828
height: 145px;
@@ -74,6 +74,10 @@
7474
.vp-ins-parameter-box {
7575
grid-column: 1/3;
7676
}
77+
.vp-ins-parameter-box:empty::after {
78+
content: '(Empty)';
79+
color: var(--gray-color);
80+
}
7781
.vp-ins-parameter {
7882
width: 100% !important;
7983
}

css/fileNavigation.css

Lines changed: 28 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/* Sidebar Menu */
2626
.fileNavigationPage-sidebar {
2727
float: left;
28-
width: 20%;
28+
width: 25%;
2929
height: 100%;
3030
background: #F5F5F5;
3131
padding-top: 10px;
@@ -34,24 +34,34 @@
3434
color: var(--font-hightlight)
3535
}
3636
.fnp-sidebar-menu {
37-
padding: 10px 0px 10px 14px;
37+
padding: 5px 0px 5px 15px;
3838
font-family: AppleSDGothicNeo;
39-
font-style: normal;
40-
font-weight: bold;
41-
font-size: 16px;
42-
line-height: 17px;
39+
font-weight: normal;
40+
font-size: 15px;
4341
color: #696969;
4442
cursor: pointer;
4543
margin-top: 10px;
4644
}
45+
46+
/* Path Bar */
4747
.fileNavigationPage-inner {
4848
float: right;
4949
display: grid;
50-
/* grid-template-rows: 30px auto min-content; */
5150
grid-template-rows: min-content auto min-content;
52-
width: 80%;
51+
width: 75%;
5352
height: 100%;
5453
}
54+
.fileNavigationPage-btn-prev:hover{
55+
cursor: pointer;
56+
transition: 0.7s;
57+
}
58+
59+
.fileNavigationPage-btn-next:hover{
60+
cursor: pointer;
61+
transition: 0.7s;
62+
}
63+
64+
/* Directory List */
5565
.fileNavigationPage-directory-container {
5666
overflow-y: auto;
5767
display: flex;
@@ -107,8 +117,7 @@
107117
display: none;
108118
}
109119
.fileNavigationPage-menu {
110-
min-height: 30px;
111-
/* height: 6%; */
120+
min-height: 35px;
112121
height: fit-content;
113122
padding-left: 10px;
114123
background-color: #EEE;
@@ -127,12 +136,15 @@
127136
display: flex;
128137
flex-direction: column;
129138
justify-content: center;
139+
padding-top: 5px;
130140
}
131141
.fileNavigationPage-menu-block {
132-
padding: 0 35px 0 10px;
142+
padding: 5px 35px 0 10px;
133143
display: flex;
134144
flex-direction: column;
135145
justify-content: center;
146+
font-family: AppleSDGothicNeo;
147+
font-weight: normal;
136148
}
137149
.fileNavigationPage-btn-move-to-folder {
138150
position: absolute;
@@ -180,6 +192,7 @@
180192
margin-left:5px;
181193
white-space: nowrap;
182194
color: var(--font-primary);
195+
font-size: 13px;
183196
}
184197
.fileNavigationPage-dir-text:hover {
185198
transition: 0.7s;
@@ -195,11 +208,7 @@
195208
position: fixed;
196209
z-index: 3;
197210
right: 10px;
198-
width: 20px;
199-
height: 20px;
200-
line-height: 20px;
201-
top: 3px;
202-
text-align: center;
211+
top: 5px;
203212
}
204213
.fileNavigationPage-closedBtn:hover {
205214
cursor: pointer;
@@ -213,16 +222,17 @@
213222
}
214223
.fileNavigationPage-button {
215224
padding: 5px;
216-
/* height: fit-content;
217-
min-height: 6%; */
218225
background: #EEE;
219226
border: 1px solid #DDD;
220227
}
221228
#vp_fileNavigationInput {
222229
width: calc(100% - 170px);
230+
font-size: 13px;
223231
}
224232
#vp_fileNavigationExt {
225233
width: 80px;
234+
color: var(--font-primary);
235+
font-family: 'AppleSDGothicNeo';
226236
}
227237
.fileNavigationPage-style-flex-column-center {
228238
display: flex;

css/m_apps/chart.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
grid-template-rows: 30px;
1010
grid-row-gap: 5px;
1111
border: 1px solid var(--border-gray-color);
12+
border-radius: 5px;
1213
padding: 10px 0px;
1314
}
1415
.vp-import-box label {

css/m_apps/groupby.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
overflow: auto;
3333
}
3434
.vp-gb-adv-item {
35-
margin-bottom: 5px;
35+
margin-bottom: 10px;
3636
}
3737
.vp-gb-adv-method-box {
3838
position: relative;

css/m_apps/import.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.vp-tab-button {
2+
display: inline-block;
3+
border: 0.24px solid var(--border-gray-color);
4+
padding: 5px;
5+
cursor: pointer;
6+
}
7+
.vp-tab-button.vp-tab-selected {
8+
color: var(--highlight-color);
9+
border-bottom: 2px solid var(--highlight-color);
10+
}

css/m_apps/pdf.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
width: 100%;
44
height: 100%;
55
grid-row-gap: 5px;
6-
grid-template-rows: 60px 140px 150px;
6+
grid-template-rows: 60px 100px 100px;
77
}
88
.vp-pdf-prepare-box {
99
display: grid;
@@ -35,13 +35,13 @@
3535
border-radius: 5px;
3636
box-sizing: border-box;
3737
padding: 15px;
38+
align-content: space-evenly;
3839
}
3940
.vp-pdf-df-box {
4041
display: grid;
4142
grid-template-columns: 95px auto;
42-
grid-row-gap: 3px;
43+
grid-row-gap: 5px;
4344
align-items: baseline;
44-
align-content: space-evenly;
4545
}
4646
.vp-pdf #vp_pdfVariable {
4747
width: 62%;

css/m_apps/subset.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@
198198
background: #FFFFFF;
199199
border: 0.25px solid #E4E4E4;
200200
grid-row-gap: 5px;
201+
margin-top: 5px;
201202
}
202203
.vp-ds-btn-add-condition {
203204
width: 95px;

css/menuFrame.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,15 @@
229229
.vp-menuitem.apps.vp-color-apps4 {
230230
background: #E56139;
231231
}
232+
.vp-menuitem.apps.vp-color-apps5 {
233+
background: #BEB727;
234+
}
235+
.vp-menuitem.apps.vp-color-apps6 {
236+
background: #91A541;
237+
}
238+
.vp-menuitem.apps.vp-color-apps7 {
239+
background: #718E41;
240+
}
232241
.vp-menuitem.apps.vp-color-preparing {
233242
background: var(--gray-color);
234243
}

0 commit comments

Comments
 (0)