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

Commitca7418d

Browse files
authored
Merge pull request#95 from minjk-bl/devops
Devops for v1.1.13
2 parents36e2a58 +83b4f4a commitca7418d

30 files changed

+2986
-246
lines changed

‎css/api_block/index.css‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@
141141
.vp-apiblock-menu-apps-item.line3 {
142142
background:#EB773C;
143143
}
144+
.vp-apiblock-menu-apps-item.line4 {
145+
background:#E56139;
146+
}
144147
.vp-apiblock-menu-apps-item.preparing {
145148
background:var(--gray-color);
146149
}
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
.vp-cs-select-container {
2+
width:100%;
3+
height:100%;
4+
display: grid;
5+
grid-template-columns:calc(47%-15px)50pxcalc(47%-15px);
6+
grid-auto-rows:100%;
7+
}
8+
.vp-cs-select-search {
9+
width:100%;
10+
}
11+
.vp-cs-select-search::after {
12+
content:'';
13+
background-image: url(../../../resource/close_big.svg);
14+
}
15+
.vp-cs-select-box {
16+
width:100%;
17+
height:100%;
18+
border:0.25px solid#E4E4E4;
19+
overflow-y: auto;
20+
overflow-x: hidden;
21+
}
22+
.vp-cs-select-box.left {
23+
height:calc(100%-30px);
24+
}
25+
.vp-cs-select-item {
26+
width:100%;
27+
height:25px;
28+
padding:0px10px;
29+
border-bottom:0.25px solid#E4E4E4;
30+
line-height:25px;
31+
background-color: white;
32+
text-overflow: ellipsis;
33+
overflow: hidden;
34+
white-space: nowrap;
35+
}
36+
.vp-cs-select-item:hover {
37+
cursor: pointer;
38+
background-color:#E4E4E4;
39+
}
40+
.vp-cs-select-item.selected {
41+
color:var(--font-hightlight);
42+
background-color:#F5F5F5;
43+
}
44+
/* Item Sorting FIXME: change span to class */
45+
.right .vp-cs-select-itemspan {
46+
padding:0px10px0px0px;
47+
}
48+
/* TODO: If sortable, apply this style */
49+
/* .right .vp-cs-select-item span:hover {
50+
cursor: n-resize;
51+
} */
52+
53+
/* Select Boxes */
54+
.vp-cs-select-btn-box {
55+
margin: auto;
56+
display: inherit;
57+
}
58+
.vp-cs-select-btn-boxbutton {
59+
height:24px;
60+
background:#FFFFFF;
61+
border:0.25px solid#E4E4E4;
62+
}
63+
.vp-cs-select-btn-boxbutton:not(:nth-child(1)) {
64+
margin-top:5px;
65+
}
66+
.vp-cs-select-btn-boxbutton:hover {
67+
background:#F8F8F8;
68+
}

‎css/common/groupby.css‎

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
.vp-gb-container {
2+
width:700px;
3+
height:550px;
4+
}
5+
6+
.vp-gb-container .vp-pp-body {
7+
overflow: hidden;
8+
}
9+
10+
.vp-gb-df-box {
11+
display: grid;
12+
grid-template-rows:30px;
13+
grid-row-gap:5px;
14+
}
15+
16+
.vp-gb-df-refresh {
17+
display: inline-block;
18+
cursor: pointer;
19+
margin-left:5px;
20+
}
21+
.vp-gb-df-boxlabel {
22+
font-weight: bold;
23+
}
24+
.vp-gb-df-boxselect,
25+
.vp-gb-df-boxinput {
26+
width:160px;
27+
}
28+
.vp-gb-by-grouper-box {
29+
display: inline-block;
30+
padding:0px5px;
31+
}
32+
.vp-gb-by-number {
33+
width:80px!important;
34+
}
35+
36+
.vp-gb-adv-box {
37+
border:1px solidvar(--border-gray-color);
38+
padding:10px;
39+
margin-top:5px;
40+
height:170px;
41+
overflow: auto;
42+
}
43+
.vp-gb-adv-item {
44+
margin-bottom:5px;
45+
}
46+
.vp-gb-adv-method-box {
47+
position: relative;
48+
display: inline-block;
49+
}
50+
.vp-gb-adv-method {
51+
padding-right:25px;
52+
}
53+
.vp-gb-adv-method-return {
54+
position: absolute;
55+
color:#C4C4C4;
56+
right:7px;
57+
top:7px;
58+
cursor: pointer;
59+
background: white;
60+
}
61+
.vp-gb-adv-item-delete {
62+
display: inline-block;
63+
padding-left:5px;
64+
}
65+
.vp-gb-naming-boxlabel {
66+
height:30px;
67+
line-height:30px;
68+
vertical-align: middle;
69+
font-weight: bold;
70+
margin-bottom:5px;
71+
}
72+
.vp-gb-naming-itemlabel {
73+
width:100px;
74+
height:30px;
75+
line-height:30px;
76+
vertical-align: middle;
77+
margin-bottom:5px;
78+
text-overflow: ellipsis;
79+
white-space: nowrap;
80+
overflow: hidden;
81+
font-weight: bold;
82+
}

‎css/common/merge.css‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vp-mg-container {
2+
width:700px;
3+
height:550px;
4+
}

‎css/common/popupPage.css‎

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
width:100%;
4646
height:calc(98%-80px);
4747
padding:20px;
48-
display: grid;
48+
/*display: grid;
4949
grid-row-gap: 5px;
50-
grid-template-rows:30px30px60%calc(40%-80px);
50+
grid-template-rows: 30px 30px 60% calc(40% - 80px); */
5151
overflow: auto;
5252
}
5353
.vp-pp-preview-box {
@@ -120,3 +120,38 @@
120120
color:var(--font-hightlight);
121121
background:var(--light-gray-color);
122122
}
123+
124+
125+
.vp-pp-popup-box {
126+
position: absolute;
127+
left:50%;
128+
top:50%;
129+
transform:translate(-50%,-50%);
130+
min-width:400px;
131+
min-height:150px;
132+
width:30%;
133+
height: fit-content;
134+
background-color: white;
135+
z-index:200;
136+
border:0.25px solidvar(--border-gray-color);
137+
box-shadow:1px1px2pxrgb(000/10%);
138+
}
139+
.vp-pp-popup-body {
140+
height:calc(100%-80px);
141+
padding:10px;
142+
}
143+
.vp-pp-popup-close {
144+
position: fixed;
145+
z-index:3;
146+
right:5px;
147+
width:30px;
148+
height:20px;
149+
line-height:20px;
150+
top:10px;
151+
text-align: center;
152+
cursor: pointer;
153+
}
154+
.vp-pp-popup-button-box {
155+
float: right;
156+
margin:015px15px0;
157+
}

‎css/component/common.css‎

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,23 @@
6262
display: inline-block;
6363
height:15px;
6464
border-right:1px solidvar(--font-primary);
65+
}
66+
67+
/* Width selector */
68+
.wp50 {
69+
width:50px;
70+
}
71+
.wp80 {
72+
width:80px;
73+
}
74+
.wp100 {
75+
width:100px;
76+
}
77+
.wp120 {
78+
width:120px;
79+
}
80+
81+
/* font selector */
82+
.fb {
83+
font-weight: bold;
6584
}

‎css/file_io/instance.css‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
grid-column:1/2;
2525
font-weight:700;
2626
margin:0px;
27+
28+
line-height:30px;
29+
vertical-align: middle;
2730
}
2831
.vp-instance-box {
2932
grid-column-start:1;
@@ -37,10 +40,7 @@
3740
}
3841
.vp-ins-container.variable {
3942
grid-column:1/3;
40-
}
41-
42-
.vp-ins-container.allocate {
43-
grid-column:1/3;
43+
height:250px;
4444
}
4545

4646
/* UDF Editor - CodeMirror */

‎css/main.css‎

Lines changed: 27 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -104,14 +104,15 @@ body {
104104
}
105105
#vp-wrapperinput[type=number] {
106106
font-size:14px;
107-
line-height:16px;
108-
padding:3px7px;
109-
color:var(--font-primary);
110-
background:#FFFFFF;
111-
outline: none;
112-
border:0.25px solidvar(--border-gray-color);
113-
box-sizing: border-box;
114-
text-align: right;
107+
line-height:30px;
108+
height:30px;
109+
padding:3px3px;
110+
color:var(--font-primary);
111+
background:#FFFFFF;
112+
outline:var(--highlight-color);
113+
border:0.25px solidvar(--border-gray-color);
114+
box-sizing: border-box;
115+
text-align: right;
115116
}
116117
#vp-wrapperinput[type=number]::placeholder {
117118
text-align: left;
@@ -137,6 +138,10 @@ input[type=number]::-webkit-inner-spin-button { margin-left: 5px; }
137138
padding-left:18px;
138139
cursor: pointer;
139140
}
141+
#vp-wrapperinput[type=checkbox]:disabled+label,
142+
#vp-wrapperlabelinput[type=checkbox]:disabled+span {
143+
color:var(--gray-color);
144+
}
140145
#vp-wrapperinput[type=checkbox]+label::before,
141146
#vp-wrapperlabelinput[type=checkbox]+span::before {
142147
content:'';
@@ -166,6 +171,20 @@ input[type=number]::-webkit-inner-spin-button { margin-left: 5px; }
166171
border: none;
167172
box-sizing: border-box;
168173
}
174+
#vp-wrapperinput[type=checkbox]:disabled+label::before,
175+
#vp-wrapperlabelinput[type=checkbox]:disabled+span::before {
176+
content:'';
177+
position: absolute;
178+
left:0;
179+
top:0;
180+
width:15px;
181+
height:15px;
182+
background: url(../resource/checkbox_gray.svg);
183+
background-size:15px15px;
184+
background-repeat: no-repeat;
185+
border: none;
186+
box-sizing: border-box;
187+
}
169188
#vp-wrapperinput[type=text].vp-file-browser {
170189
color:#C4C4C4;
171190
font-style: normal;

‎resource/apps/apps_profiling.svg‎

Lines changed: 7 additions & 0 deletions
Loading

‎resource/apps/apps_pymupdf.svg‎

Lines changed: 7 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp