Skip to content

Commit bc45757

Browse files
authored
Merge pull request #128 from minjk-bl/devops
Update for v2.2.0
2 parents 37c1b60 + 899eb08 commit bc45757

31 files changed

+2429
-462
lines changed

css/boardFrame.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -239,39 +239,39 @@
239239
background-color: rgb(253, 177, 133);
240240
}
241241
.vp-block.visualization .vp-block-header {
242-
background-color: rgb(249, 227, 214);
242+
background-color: #E8ECD0;
243243
}
244244
.vp-block.visualization.vp-focus .vp-block-header,
245245
.vp-block.visualization.vp-focus-child .vp-block-header {
246-
background-color: rgb(253, 177, 133);
246+
background-color: #C6CE94;
247247
}
248248
.vp-block.machine_learning .vp-block-header {
249-
background-color: #E8ECD0;
249+
background-color: #E5EEF8;
250250
}
251251
.vp-block.machine_learning.vp-focus .vp-block-header,
252252
.vp-block.machine_learning.vp-focus-child .vp-block-header {
253-
background-color: #C6CE94;
253+
background-color: #BFD5F0;
254254
}
255255
.vp-block.logic-define .vp-block-header {
256-
background-color: rgb(213, 231, 222);
256+
/* background-color: rgb(213, 231, 222); */
257257
}
258258
.vp-block.logic-define.vp-focus .vp-block-header,
259259
.vp-block.logic-define.vp-focus-child .vp-block-header {
260-
background-color: rgb(138, 214, 176);
260+
/* background-color: rgb(138, 214, 176); */
261261
}
262262
.vp-block.logic-control .vp-block-header {
263-
background-color: rgb(253, 239, 221);
263+
/* background-color: rgb(253, 239, 221); */
264264
}
265265
.vp-block.logic-control.vp-focus .vp-block-header,
266266
.vp-block.logic-control.vp-focus-child .vp-block-header {
267-
background-color: rgb(255, 207, 115);
267+
/* background-color: rgb(255, 207, 115); */
268268
}
269269
.vp-block.library .vp-block-header {
270-
background-color: rgb(249, 227, 214);
270+
/* background-color: rgb(249, 227, 214); */
271271
}
272272
.vp-block.library.vp-focus .vp-block-header,
273273
.vp-block.library.vp-focus-child .vp-block-header {
274-
background-color: rgb(253, 177, 133);
274+
/* background-color: rgb(253, 177, 133); */
275275
}
276276
/* block button group */
277277
.vp-block-button-group {

css/m_ml/fitPredict.css

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
.vp-model-select-box {
2+
grid-column-gap: 5px;
3+
}
4+
.vp-ins-select-title {
5+
font-weight: bold;
6+
color: var(--font-hightlight);
7+
padding: 5px 5px 5px 0px;
8+
}
9+
.vp-ins-select-container input.vp-ins-search {
10+
width: 100%;
11+
}
12+
.vp-ins-select-container .vp-ins-search-icon {
13+
position: absolute;
14+
color: #C4C4C4;
15+
right: 7px;
16+
top: 7px;
17+
}
18+
.vp-ins-select-box {
19+
margin-top: 5px;
20+
border: 0.25px solid var(--border-gray-color);
21+
}
22+
.vp-ins-select-list {
23+
height: 145px;
24+
width: 100%;
25+
list-style: none;
26+
margin: 0px;
27+
padding: 0px 5px 0px 5px;
28+
color: #696969;
29+
overflow: auto;
30+
}
31+
.vp-ins-select-item {
32+
padding-top: 3px;
33+
padding-bottom: 3px;
34+
cursor: pointer;
35+
border-bottom: 0.25px solid var(--light-gray-color);
36+
}
37+
.vp-ins-select-item.selected {
38+
color: var(--font-hightlight);
39+
background: var(--light-gray-color);
40+
}
41+
.vp-ins-select-item:hover {
42+
background: var(--light-gray-color);
43+
}
44+
.vp-ins-parameter-box {
45+
grid-column: 1/3;
46+
}

css/m_ml/modelInfo.css

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
.vp-ins-select-title {
2+
font-weight: bold;
3+
color: var(--font-hightlight);
4+
padding: 5px 5px 5px 0px;
5+
}
6+
.vp-ins-select-container input.vp-ins-search {
7+
width: 100%;
8+
}
9+
.vp-ins-select-container .vp-ins-search-icon {
10+
position: absolute;
11+
color: #C4C4C4;
12+
right: 7px;
13+
top: 7px;
14+
}
15+
.vp-ins-select-box {
16+
margin-top: 5px;
17+
border: 0.25px solid var(--border-gray-color);
18+
}
19+
.vp-ins-select-list {
20+
height: 145px;
21+
width: 100%;
22+
list-style: none;
23+
margin: 0px;
24+
padding: 0px 5px 0px 5px;
25+
color: #696969;
26+
overflow: auto;
27+
}
28+
.vp-ins-select-item {
29+
padding-top: 3px;
30+
padding-bottom: 3px;
31+
cursor: pointer;
32+
border-bottom: 0.25px solid var(--light-gray-color);
33+
}
34+
.vp-ins-select-item.selected {
35+
color: var(--font-hightlight);
36+
background: var(--light-gray-color);
37+
}
38+
.vp-ins-select-item:hover {
39+
background: var(--light-gray-color);
40+
}
41+
.vp-ins-parameter-box {
42+
grid-column: 1/3;
43+
}
File renamed without changes.

css/m_visualize/seaborn.css

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,24 @@
3434
width: 100%;
3535
}
3636
.vp-tab-page-box.plot {
37-
height: calc(100% - 30px);
37+
/* height: calc(100% - 30px); */
38+
min-height: 352px;
3839
align-content: baseline;
3940
}
4041
.vp-chart-plot-box {
42+
43+
}
44+
.vp-chart-body {
4145
display: grid;
4246
grid-template-columns: calc(50% - 8px) calc(50% - 8px);
4347
grid-row-gap: 5px;
4448
grid-column-gap: 15px;
4549
align-items: baseline;
4650
align-content: center;
51+
height: 100%;
4752
}
4853
.vp-chart-left-box {
49-
display: grid;
50-
grid-row-gap: 3px;
54+
5155
}
5256
.vp-chart-left-box > label {
5357
margin-bottom: 0px;
@@ -66,4 +70,14 @@
6670
.vp-chart-preview-box {
6771
min-height: 150px;
6872
width: 100%;
73+
height: calc(100% - 30px);
74+
}
75+
76+
.vp-tab-page label {
77+
margin-bottom: 0px;
78+
}
79+
.vp-chart-setting-footer {
80+
position: absolute;
81+
left: 20px;
82+
bottom: 15px;
6983
}

css/menuFrame.css

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -230,13 +230,16 @@
230230
background: #E56139;
231231
}
232232
.vp-menuitem.apps.vp-color-apps5 {
233-
background: #BEB727;
233+
background: #97AA4E;
234234
}
235235
.vp-menuitem.apps.vp-color-apps6 {
236-
background: #91A541;
236+
background: #88B4E9;
237237
}
238238
.vp-menuitem.apps.vp-color-apps7 {
239-
background: #718E41;
239+
background: #6C9BD1;
240+
}
241+
.vp-menuitem.apps.vp-color-apps8 {
242+
background: #578BC7;
240243
}
241244
.vp-menuitem.apps.vp-color-preparing {
242245
background: var(--gray-color);
@@ -252,14 +255,14 @@
252255
}
253256
/* MenuItem - Logic */
254257
.vp-menuitem.logic-define {
255-
background-color: rgb(213, 231, 222);
258+
/* background-color: rgb(213, 231, 222); */
256259
}
257260
.vp-menuitem.logic-control {
258-
background-color: rgb(253, 239, 221);
261+
/* background-color: rgb(253, 239, 221); */
259262
}
260263
/* MenuItem - Library */
261264
.vp-menuitem.library {
262-
background-color: rgb(249, 227, 214);
265+
/* background-color: rgb(249, 227, 214); */
263266
}
264267

265268
/* Task Bar */

css/popupComponent.css

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
font-family: 'AppleSDGothicNeo';
6666
color: var(--font-hightlight);
6767
}
68-
.vp-popup-toggle {
68+
.vp-popup-maximize {
6969
position: absolute;
7070
width: 15px;
7171
height: 20px;
@@ -77,6 +77,31 @@
7777
cursor: pointer;
7878
color: var(--gray-color);
7979
}
80+
.vp-popup-return {
81+
position: absolute;
82+
width: 15px;
83+
height: 20px;
84+
top: 4px;
85+
right: 32px;
86+
z-index: 3;
87+
line-height: 20px;
88+
text-align: center;
89+
cursor: pointer;
90+
color: var(--gray-color);
91+
display: none;
92+
}
93+
.vp-popup-toggle {
94+
position: absolute;
95+
width: 15px;
96+
height: 20px;
97+
top: 4px;
98+
right: 58px;
99+
z-index: 3;
100+
line-height: 20px;
101+
text-align: center;
102+
cursor: pointer;
103+
color: var(--gray-color);
104+
}
80105
.vp-popup-close {
81106
position: absolute;
82107
width: 20px;
@@ -94,6 +119,9 @@
94119
padding: 15px;
95120
overflow: auto;
96121
}
122+
.vp-popup-content {
123+
min-height: calc(100% - 30px);
124+
}
97125
.vp-popup-footer {
98126
position: relative;
99127
height: 50px;

css/root.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,9 @@ hr.vp-extra-menu-line {
336336
width: 10px !important;
337337
}
338338
/* temporary margin */
339+
.mt5 {
340+
margin-top: 5px;
341+
}
339342
.mb5 {
340343
margin-bottom: 5px;
341344
}

0 commit comments

Comments
 (0)