Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit9dba6cf

Browse files
authored
Merge pull request#121 from minjk-bl/devops
Hotfix version for ML
2 parents6212522 +c0b0b8c commit9dba6cf

File tree

50 files changed

+5015
-1007
lines changed

Some content is hidden

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

50 files changed

+5015
-1007
lines changed

‎css/boardFrame.css‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,13 @@
238238
.vp-block.apps.vp-focus-child .vp-block-header {
239239
background-color:rgb(253,177,133);
240240
}
241+
.vp-block.visualization .vp-block-header {
242+
background-color:rgb(249,227,214);
243+
}
244+
.vp-block.visualization.vp-focus .vp-block-header,
245+
.vp-block.visualization.vp-focus-child .vp-block-header {
246+
background-color:rgb(253,177,133);
247+
}
241248
.vp-block.machine_learning .vp-block-header {
242249
background-color:#E8ECD0;
243250
}

‎css/component/dataSelector.css‎

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* Code Preview */
2+
.vp-ds-preview {
3+
width:100%;
4+
height:35px;
5+
background-image:repeating-linear-gradient( to right,var(--grid-line-color)0,var(--grid-line-color)0.25px, transparent1px, transparent5px ),repeating-linear-gradient( to bottom,var(--grid-line-color)0,var(--grid-line-color)0.25px, transparent1px, transparent5px );
6+
background-color: white;
7+
border:0.25px solid#E4E4E4;
8+
}
9+
.vp-ds-previewtextarea {
10+
display: none;
11+
}
12+
.vp-ds-preview .CodeMirror-code .cm-variable {
13+
background-color:rgba(47,133,90,0.2);
14+
}
15+
.vp-ds-preview .CodeMirror-code .cm-string {
16+
background-color:rgba(246,173,85,0.2);
17+
}

‎css/m_apps/snippets.css‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
.vp-sn-export-mode .vp-sn-item-menu {
164164
display: none;
165165
}
166-
.vp-sn-export-modeinput.vp-sn-checkbox {
166+
.vp-sn-export-modeinput[type=checkbox].vp-sn-checkbox {
167167
display: inline-block;
168168
position: relative!important;
169169
width:13px;

‎css/m_apps/subset.css‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@
116116
.vp-ds-rowtype-box.condition .vp-td-line {
117117
padding-bottom:5px;
118118
}
119+
.vp-ds-rowtype-box.conditiontable {
120+
width:100%;
121+
}
119122
.vp-ds-rowtype-box.conditiontabletd {
120123
padding-bottom:20px;
121124
}

‎css/m_visualize/seaborn.css‎

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
.vp-chart-setting {
2+
float: right;
3+
color:var(--gray-color);
4+
padding-right:5px;
5+
cursor: pointer;
6+
}
7+
.vp-tab-bar {
8+
width:100%;
9+
overflow-y: hidden;
10+
}
11+
.vp-tab-item {
12+
display: inline-block;
13+
position: relative;
14+
width:85px;
15+
height:30px;
16+
line-height:30px;
17+
background:var(--light-gray-color);
18+
cursor: pointer;
19+
border:0.24px solid#E4E4E4;
20+
box-sizing: border-box;
21+
border-radius:2px2px0px0px;
22+
font-weight: bold;
23+
text-align: center;
24+
}
25+
.vp-tab-item.vp-focus {
26+
color:var(--font-hightlight);
27+
background: white;
28+
border-bottom:3px solid#FFCF73;
29+
}
30+
.vp-tab-page {
31+
width:100%;
32+
height:180px;
33+
}
34+
35+
.vp-chart-left-box,
36+
.vp-chart-right-box {
37+
padding:3px;
38+
height:250px;
39+
}
40+
41+
.vp-chart-preview-box {
42+
min-height:150px;
43+
}

‎css/popupComponent.css‎

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -402,3 +402,84 @@
402402
text-align: center;
403403
cursor: pointer;
404404
}
405+
/* variable popup */
406+
.vp-variable-popup-box {
407+
position: absolute;
408+
left:calc(50%-135px);
409+
top:calc(50%-135px);
410+
min-width:370px;
411+
min-height:370px;
412+
width:370px;
413+
height:370px;
414+
background-color: white;
415+
z-index:200;
416+
border:0.25px solidvar(--border-gray-color);
417+
box-shadow:1px1px2pxrgb(000/10%);
418+
}
419+
.vp-variable-popup-header {
420+
position: relative;
421+
height:30px;
422+
background:var(--light-gray-color);
423+
border-bottom:1px solidvar(--border-gray-color);
424+
}
425+
.vp-variable-popup-title {
426+
line-height:33px;
427+
width:calc(100%-30px);
428+
height:30px;
429+
padding-left:10px;
430+
font-size:15px;
431+
color:var(--font-primary);
432+
cursor: pointer;
433+
}
434+
.vp-variable-popup-body {
435+
height:calc(100%-70px);
436+
padding:10px;
437+
}
438+
.vp-variable-popup-button-box {
439+
float: right;
440+
margin:010px10px0;
441+
}
442+
.vp-variable-popup-close {
443+
position: absolute;
444+
width:20px;
445+
height:20px;
446+
top:4px;
447+
right:5px;
448+
z-index:3;
449+
line-height:20px;
450+
text-align: center;
451+
cursor: pointer;
452+
}
453+
/* body top-bar */
454+
.vp-popup-body-top-bar {
455+
text-align: right;
456+
}
457+
.vp-popup-body-top-bar-item {
458+
margin-bottom:5px;
459+
}
460+
.vp-popup-body-top-bar-item:hover {
461+
color:var(--font-hightlight);
462+
}
463+
.vp-popup-body-top-bar-itemimg {
464+
-moz-box-sizing: border-box;
465+
box-sizing: border-box;
466+
width:22px;/* Width of new image */
467+
height:22px;/* Height of new image */
468+
padding-left:22px;/* Equal to width of new image */
469+
margin-bottom:5px;
470+
}
471+
.vp-popup-body-top-bar-item[data-type="import"]img {
472+
background: url(../../visualpython/img/import.svg) no-repeat;
473+
}
474+
.vp-popup-body-top-bar-item[data-type="import"]:hoverimg {
475+
background: url(../../visualpython/img/import_activated.svg) no-repeat;
476+
}
477+
.vp-popup-body-top-bar-item[data-type="package"] {
478+
margin-left:10px;
479+
}
480+
.vp-popup-body-top-bar-item[data-type="package"]img {
481+
background: url(../../visualpython/img/setting.svg) no-repeat;
482+
}
483+
.vp-popup-body-top-bar-item[data-type="package"]:hoverimg {
484+
background: url(../../visualpython/img/setting_activated.svg) no-repeat;
485+
}

‎css/root.css‎

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,17 @@ body {
129129
}
130130

131131
/* Input & Select Design - width m&s */
132+
.vp-input.l,
133+
.vp-select.l {
134+
width:232px!important;
135+
}
132136
.vp-input.m,
133137
.vp-select.m {
134-
width:116px;
138+
width:116px!important;
135139
}
136140
.vp-input.s,
137141
.vp-select.s {
138-
width:55px;
142+
width:55px!important;
139143
}
140144

141145
/* Buttons */
@@ -197,7 +201,6 @@ body {
197201
color:#696969;
198202
cursor: not-allowed;
199203
}
200-
201204
.vp-checkbox {
202205
display: inline-block;
203206
position: relative!important;

‎data/libraries.json‎

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3033,20 +3033,6 @@
30333033
"icon":"apps/apps_reshape.svg"
30343034
}
30353035
},
3036-
{
3037-
"id" :"apps_chart",
3038-
"type" :"function",
3039-
"level":1,
3040-
"name" :"Chart",
3041-
"tag" :"CHART,APPS",
3042-
"path" :"visualpython - apps - chart",
3043-
"desc" :"Chart",
3044-
"file" :"m_apps/Chart",
3045-
"apps" : {
3046-
"color":3,
3047-
"icon":"apps/apps_chart.svg"
3048-
}
3049-
},
30503036
{
30513037
"id" :"apps_markdown",
30523038
"type" :"function",
@@ -3061,6 +3047,20 @@
30613047
"icon":"apps/apps_markdown.svg"
30623048
}
30633049
},
3050+
{
3051+
"id" :"visualize_chart",
3052+
"type" :"function",
3053+
"level":1,
3054+
"name" :"Chart",
3055+
"tag" :"MATPLOTLIB,CHART,VISUALIZATION,VISUALIZE",
3056+
"path" :"visualpython - visualization - matplotlib",
3057+
"desc" :"Matplotlib chart creation",
3058+
"file" :"m_apps/Chart",
3059+
"apps" : {
3060+
"color":3,
3061+
"icon":"apps/apps_chart.svg"
3062+
}
3063+
},
30643064
{
30653065
"id" :"apps_pdf",
30663066
"type" :"function",

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp