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

Commit831cd2c

Browse files
authored
Merge pull request#218 from minjk-bl/devops
Devops for Statistics packages
2 parents6237f23 +cb48069 commit831cd2c

File tree

65 files changed

+6173
-364
lines changed

Some content is hidden

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

65 files changed

+6173
-364
lines changed

‎visualpython/css/component/dataSelector.css‎

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
/* DataSelector target*/
22
.vp-ds-box {
3-
display: inline-block;
3+
display: inline-flex;
44
}
55
.vp-ds-filter {
66
position: relative;
7-
/* width: 20px;
8-
height: 20px; */
9-
right:25px;
7+
right:20px;
108
cursor: pointer;
11-
/* LAB: img to background-image */
12-
display: inline-block;
139
background: center/ contain no-repeat url(../../img/filter.svg);
1410
width:12px;
1511
height:12px;
12+
top:9px;
1613
}
1714
.vp-ds-boxinput.vp-ds-target {
1815
padding-right:23px;

‎visualpython/css/component/multiSelector.css‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
grid-template-columns:calc(47%-15px)50pxcalc(47%-15px);
66
grid-auto-rows:100%;
77
}
8-
.vp-cs-select-search {
8+
.vp-cs-select-containerinput.vp-cs-select-search {
99
width:100%;
1010
}
1111
.vp-cs-select-search::after {

‎visualpython/css/component/popupComponent.css‎

Lines changed: 53 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,8 @@
274274
padding:1px8px05px;
275275
}
276276
/* checkbox */
277-
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox) {
277+
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox),
278+
.vp-popup-frameinput[type=radio]:not(.vp-radio) {
278279
position: absolute;
279280
width:1px;
280281
height:1px;
@@ -285,7 +286,9 @@
285286
border:0;
286287
}
287288
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox)+label,
288-
.vp-popup-framelabelinput[type=checkbox]:not(.vp-checkbox)+span {
289+
.vp-popup-frameinput[type=radio]:not(.vp-radio)+label,
290+
.vp-popup-framelabelinput[type=checkbox]:not(.vp-checkbox)+span,
291+
.vp-popup-framelabelinput[type=radio]:not(.vp-radio)+span {
289292
display: inline-block;
290293
position: relative;
291294
padding-left:20px;
@@ -295,7 +298,9 @@
295298
vertical-align: middle;
296299
}
297300
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox):disabled+label,
298-
.vp-popup-framelabelinput[type=checkbox]:not(.vp-checkbox):disabled+span {
301+
.vp-popup-frameinput[type=radio]:not(.vp-radio):disabled+label,
302+
.vp-popup-framelabelinput[type=checkbox]:not(.vp-checkbox):disabled+span,
303+
.vp-popup-framelabelinput[type=radio]:not(.vp-radio):disabled+span {
299304
color:var(--vp-gray-color);
300305
}
301306
.vp-popup-frameinput[type=checkbox]:not(.vp-checkbox)+label::before,
@@ -322,7 +327,7 @@
322327
width:15px;
323328
height:15px;
324329
background: url(../../img/checkbox_checked.svg);
325-
background-size:14px14px;
330+
background-size:15px15px;
326331
background-repeat: no-repeat;
327332
border: none;
328333
box-sizing: border-box;
@@ -336,7 +341,50 @@
336341
width:15px;
337342
height:15px;
338343
background: url(../../img/checkbox_unchecked.svg);
339-
background-size:14px14px;
344+
background-size:15px15px;
345+
background-repeat: no-repeat;
346+
border: none;
347+
box-sizing: border-box;
348+
}
349+
.vp-popup-frameinput[type=radio]:not(.vp-radio)+label::before,
350+
.vp-popup-framelabelinput[type=radio]:not(.vp-radio)+span::before {
351+
content:'';
352+
position: absolute;
353+
left:0;
354+
top:0;
355+
width:15px;
356+
height:15px;
357+
text-align: center;
358+
background: url(../../img/radio_unchecked.svg);
359+
background-size:15px15px;
360+
background-repeat: no-repeat;
361+
border: none;
362+
box-sizing: border-box;
363+
}
364+
.vp-popup-frameinput[type=radio]:not(.vp-radio):checked+label::before,
365+
.vp-popup-framelabelinput[type=radio]:not(.vp-radio):checked+span::before {
366+
content:'';
367+
position: absolute;
368+
left:0;
369+
top:0;
370+
width:15px;
371+
height:15px;
372+
background: url(../../img/radio_checked.svg);
373+
background-size:15px15px;
374+
background-repeat: no-repeat;
375+
border: none;
376+
box-sizing: border-box;
377+
}
378+
.vp-popup-frameinput[type=radio]:not(.vp-radio):disabled+label::before,
379+
.vp-popup-framelabelinput[type=radio]:not(.vp-radio):disabled+span::before {
380+
content:'';
381+
position: absolute;
382+
left:0;
383+
top:0;
384+
width:15px;
385+
height:15px;
386+
background: url(../../img/radio_unchecked.svg);
387+
background-size:15px15px;
340388
background-repeat: no-repeat;
341389
border: none;
342390
box-sizing: border-box;

‎visualpython/css/m_apps/frame.css‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,10 @@
256256
.vp-inner-popup-addtype {
257257
width:153px;
258258
}
259+
.vp-inner-popup-condition-use-text {
260+
position: sticky;
261+
left:190px;
262+
}
259263
.vp-inner-popup-delete-value {
260264
display: inline-block;
261265
cursor: pointer;
@@ -294,7 +298,6 @@
294298
.vp-inner-popup-sortby-down {
295299
float: right;
296300
display: inline-block;
297-
298301
}
299302

300303
/* UDF Editor - CodeMirror */
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
/*
2+
* Project Name : Visual Python
3+
* Description : GUI-based Python code generator
4+
* File Name : descStats.css
5+
* Author : Black Logic
6+
* Note : stylesheet for descStats.html
7+
* License : GNU GPLv3 with Visual Python special exception
8+
* Date : 2023. 05. 31
9+
* Change Date :
10+
*/
11+
.vp-percentile-box {
12+
width:300px;
13+
height:100px;
14+
border:0.25px solidvar(--vp-border-gray-color);
15+
padding:05px;
16+
}
17+
.vp-percentile-item {
18+
height:30px;
19+
width:100%;
20+
border-bottom:0.25px solidvar(--vp-border-gray-color);
21+
padding:010px;
22+
line-height:30px;
23+
display: flex;
24+
column-gap:5px;
25+
align-items: center;
26+
}
27+
.vp-percentile-value {
28+
width:95%;
29+
}
30+
.vp-percentile-box:not(.disabled) .vp-percentile-remove {
31+
cursor: pointer;
32+
}
33+
.vp-percentile-box.disabled {
34+
background-color:var(--vp-light-gray-color);
35+
cursor: not-allowed;
36+
}

‎visualpython/css/m_stats/probDist.css‎

Whitespace-only changes.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/*
2+
* Project Name : Visual Python
3+
* Description : GUI-based Python code generator
4+
* File Name : regression.css
5+
* Author : Black Logic
6+
* Note : stylesheet for regression.html
7+
* License : GNU GPLv3 with Visual Python special exception
8+
* Date : 2023. 05. 31
9+
* Change Date :
10+
*/
11+
.vp-categorical-box {
12+
display: grid;
13+
grid-template-columns:repeat(2,1fr);
14+
border:0.25px solidvar(--vp-border-gray-color);
15+
padding:5px;
16+
min-height:30px;
17+
}

‎visualpython/css/menuFrame.css‎

Lines changed: 44 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,19 @@
2727
background-color:var(--vp-background-color);
2828
border-bottom:1px solidvar(--vp-border-gray-color);
2929
}
30+
.vp-package-manager {
31+
/* display: inline-flex; */
32+
display: none;
33+
float: right;
34+
position: relative;
35+
font-size:18px;
36+
font-weight: bold;
37+
color:var(--vp-highlight-color);
38+
margin:8px6px8px3px;
39+
cursor: pointer;
40+
width:18px;
41+
height:18px;
42+
}
3043
.vp-version-updater {
3144
display: none;
3245
float: right;
@@ -82,14 +95,12 @@ input.vp-menu-search-box {
8295
.vp-menu-search-icon {
8396
width:20px;
8497
height:20px;
85-
position: relative;
86-
right:30px;
87-
top:6px;
88-
/* LAB: img to background-image */
98+
position: absolute;
99+
right:45px;
100+
top:15px;
89101
background-image: url(../img/search.svg);
90102
background-repeat: no-repeat;
91103
background-size: contain;
92-
height:100%;
93104
}
94105
/* LAB: img to background-image */
95106
#vp_wrapper.lab .vp-menu-search-icon {
@@ -428,16 +439,40 @@ input.vp-menu-search-box {
428439
}
429440
/* statistics */
430441
.vp-menuitem.apps .stats_probDist {
431-
background: top/ contain no-repeat url(../img/apps/apps_white.svg);
442+
background: top/ contain no-repeat url(../img/apps/apps_probDist.svg);
443+
}
444+
.vp-menuitem.apps .stats_descStats {
445+
background: top/ contain no-repeat url(../img/apps/apps_descStats.svg);
432446
}
433447
.vp-menuitem.apps .stats_normTest {
434-
background: top/ contain no-repeat url(../img/apps/apps_white.svg);
448+
background: top/ contain no-repeat url(../img/apps/apps_probDist.svg);
435449
}
436450
.vp-menuitem.apps .stats_equalVarTest {
437-
background: top/ contain no-repeat url(../img/apps/apps_white.svg);
451+
background: top/ contain no-repeat url(../img/apps/apps_equalVarTest.svg);
452+
}
453+
.vp-menuitem.apps .stats_corrAnalysis {
454+
background: top/ contain no-repeat url(../img/apps/apps_corrAnalysis.svg);
455+
}
456+
.vp-menuitem.apps .stats_reliabAnalysis {
457+
background: top/ contain no-repeat url(../img/apps/apps_corrAnalysis.svg);
458+
}
459+
.vp-menuitem.apps .stats_chi2test {
460+
background: top/ contain no-repeat url(../img/apps/apps_chi2test.svg);
438461
}
439462
.vp-menuitem.apps .stats_studentstTest {
440-
background: top/ contain no-repeat url(../img/apps/apps_white.svg);
463+
background: top/ contain no-repeat url(../img/apps/apps_studentstTest.svg);
464+
}
465+
.vp-menuitem.apps .stats_anova {
466+
background: top/ contain no-repeat url(../img/apps/apps_anova.svg);
467+
}
468+
.vp-menuitem.apps .stats_factorAnalysis {
469+
background: top/ contain no-repeat url(../img/apps/apps_factorAnalysis.svg);
470+
}
471+
.vp-menuitem.apps .stats_regression {
472+
background: top/ contain no-repeat url(../img/apps/apps_regression.svg);
473+
}
474+
.vp-menuitem.apps .stats_logisticRegression {
475+
background: top/ contain no-repeat url(../img/apps/apps_logisticRegression.svg);
441476
}
442477
/* machine learning */
443478
.vp-menuitem.apps .ml_dataSet {

‎visualpython/css/root.css‎

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,11 @@ select.vp-select:disabled {
9696

9797
/* image icons */
9898
/* LAB: img to background-image */
99+
.vp-icon-setting {
100+
background: center/ contain no-repeat url(../img/setting.svg);
101+
width:100%;
102+
height:100%;
103+
}
99104
.vp-icon-refresh {
100105
background: top/ contain no-repeat url(../img/refresh.svg);
101106
height:100%;
@@ -483,7 +488,13 @@ button.vp-button {
483488
hr.vp-extra-menu-line {
484489
margin:5px0px7px0px;
485490
}
486-
/* width style*/
491+
/* height style */
492+
#vp_wrapper .h150,
493+
.vp-popup-frame .h150,
494+
.vp-inner-popup-body .h150 {
495+
height:150px!important;
496+
}
497+
/* width style */
487498
#vp_wrapper .wp100,
488499
.vp-popup-frame .wp100,
489500
.vp-inner-popup-body .wp100 {
@@ -564,6 +575,18 @@ hr.vp-extra-menu-line {
564575
.vp-inline-block {
565576
display: inline-block!important;
566577
}
578+
/* Flex */
579+
.vp-flex-box {
580+
display: flex;
581+
}
582+
.vp-flex-gap5 {
583+
display: flex;
584+
gap:5px;
585+
}
586+
.vp-flex-gap10 {
587+
display: flex;
588+
gap:10px;
589+
}
567590
/* Grid style */
568591
.vp-grid-box {
569592
display: grid;
@@ -607,13 +630,28 @@ hr.vp-extra-menu-line {
607630
align-items: baseline;
608631
align-content: space-evenly;
609632
}
633+
.vp-grid-col-120 {
634+
display: grid;
635+
grid-template-columns:120px auto;
636+
grid-row-gap:5px;
637+
align-items: baseline;
638+
align-content: space-evenly;
639+
}
610640
.vp-grid-col-130 {
611641
display: grid;
612642
grid-template-columns:130px auto;
613643
grid-row-gap:5px;
614644
align-items: baseline;
615645
align-content: space-evenly;
616646
}
647+
.vp-grid-col-160 {
648+
display: grid;
649+
grid-template-columns:160px auto;
650+
grid-row-gap:5px;
651+
/* align-items: baseline; */
652+
align-items: start;
653+
align-content: space-evenly;
654+
}
617655
/* Table style */
618656
.vp-tbl-gap5 {
619657
border-spacing:5px;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp