Skip to content

Commit 3c640d2

Browse files
authored
Merge pull request #47 from minjk-bl/devops
Devops
2 parents 077089e + ec294a2 commit 3c640d2

File tree

305 files changed

+1897
-870
lines changed

Some content is hidden

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

305 files changed

+1897
-870
lines changed

css/api_block/index.css

Lines changed: 39 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
.vp-apiblock-left {
2727
/* padding: 1.5rem; */
28-
padding: 5px; /* 수정 */
28+
/* padding: 5px; */
2929
background-color: white;
3030

3131
/* 수정 */
@@ -54,8 +54,10 @@
5454

5555
.vp-apiblock-menu-search-container {
5656
position: relative;
57-
display: inline-block;
58-
width: 160px;
57+
/* display: inline-block;
58+
width: 160px; */
59+
padding: 10px 5px;
60+
border-bottom: 0.25px solid var(--border-gray-color);
5961
}
6062

6163
.vp-menu-search-box {
@@ -66,8 +68,8 @@
6668
.vp-menu-search-icon {
6769
position: absolute;
6870
color: #C4C4C4;
69-
right: 7px;
70-
top: 7px;
71+
right: 12px;
72+
top: 17px;
7173
}
7274

7375
.vp-apiblock-menu-apps {
@@ -83,14 +85,10 @@
8385
position: absolute;
8486
top: 0px;
8587
left: 200px;
86-
width: 210px;
87-
height: 210px;
88+
/* width: 210px;
89+
height: 210px; */
8890
z-index: 15;
8991
background: rgba(255, 255, 255, 0.8);
90-
grid-template-columns: 60px 60px 60px;
91-
grid-template-rows: 60px 60px 60px;
92-
grid-column-gap: 5px;
93-
grid-row-gap: 5px;
9492
padding: 10px;
9593
box-sizing: border-box;
9694
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
@@ -99,34 +97,55 @@
9997
border-radius: 5px;
10098
}
10199
.vp-apiblock-menu-apps-container.show {
102-
display: grid !important;
100+
display: block !important;
103101
}
104102

103+
.vp-apiblock-menu-apps-title {
104+
height: 25px;
105+
line-height: 25px;
106+
font-weight: bold;
107+
background: #FFFFFF;
108+
}
109+
.vp-apiblock-menu-apps-grid {
110+
display: grid;
111+
grid-template-columns: repeat(3, 58px);
112+
grid-template-rows: repeat(3, 58px);
113+
grid-column-gap: 5px;
114+
grid-row-gap: 5px;
115+
116+
margin: 10px 0px;
117+
}
105118
.vp-apiblock-menu-apps-item {
106-
width: 60px;
107-
height: 60px;
119+
width: 58;
120+
height: 58px;
108121
text-align: center;
109122
border: 0.25px solid #C4C4C4;
110123
box-sizing: border-box;
111124
box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
112125
border-radius: 2px;
113-
padding: 8px 0px;
126+
padding: 12px 0px;
127+
128+
cursor: pointer;
114129
}
115130
.vp-apiblock-menu-apps-item.line1 {
116131
background: #F9B52A;
117132
}
118133
.vp-apiblock-menu-apps-item.line2 {
119-
background: #EF8F3C
134+
background: #EF8F3C;
120135
}
121136
.vp-apiblock-menu-apps-item.line3 {
122137
background: #EB773C;
123138
}
139+
.vp-apiblock-menu-apps-item.preparing {
140+
background: var(--gray-color);
141+
}
124142
.vp-apiblock-menu-apps-item img {
125143
width: 24px;
126144
height: 24px;
127145
}
128146
.vp-apiblock-menu-apps-name {
129147
color: #FFFFFF;
148+
font-size: 11px;
130149
}
131150

132151
.vp-apiblock-menu-box {
@@ -149,6 +168,10 @@
149168
color: white;
150169
}
151170

171+
.vp-apiblock-tab-navigation-body {
172+
padding: 0px 5px;
173+
}
174+
152175
.vp-apiblock-option-tab {
153176
/* overflow: hidden auto; */
154177
/* padding: 1rem 0; */

css/common/frameEditor.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
line-height: 20px;
5252
top: 5px;
5353
text-align: center;
54+
cursor: pointer;
5455
}
5556

5657
.vp-fe-body {

css/common/popupPage.css

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
.vp-pp {
2+
position: absolute;
3+
top: 0;
4+
left: 0;
5+
width: 100%;
6+
height: 100%;
7+
8+
z-index: 1200;
9+
10+
background-color: rgba(0,0,0,.4);
11+
}
12+
13+
.vp-pp-container {
14+
position: relative;
15+
left: 50%;
16+
top: 50%;
17+
transform:translate(-50%, -50%);
18+
19+
min-width: 400px;
20+
min-height: 400px;
21+
width: 95%;
22+
height: 95%;
23+
24+
background-color: white;
25+
}
26+
27+
.vp-pp-title {
28+
height: 30px;
29+
padding: 5px 0px 5px 10px;
30+
31+
background-color: #EEE;
32+
border: 1px solid #ddd;;
33+
display: flex;
34+
flex-direction: row;
35+
position: relative;
36+
37+
font-weight: 700;
38+
}
39+
40+
.vp-pp-close {
41+
position: fixed;
42+
z-index: 3;
43+
right: 5px;
44+
width: 20px;
45+
height: 20px;
46+
line-height: 20px;
47+
top: 5px;
48+
text-align: center;
49+
cursor: pointer;
50+
}
51+
52+
.vp-pp-body {
53+
width: 100%;
54+
height: calc(100% - 30px);
55+
padding: 10px;
56+
display: grid;
57+
grid-row-gap: 5px;
58+
grid-template-rows: 35px 30px 60% calc(40% - 80px);
59+
overflow: auto;
60+
}
61+
62+
63+
/** buttons */
64+
.vp-pp-btn-box {
65+
position: absolute;
66+
bottom: 25px;
67+
right: 25px;
68+
}
69+
.vp-pp-btn-apply {
70+
width: 80px;
71+
height: 30px;
72+
background: #F37704;
73+
border: 0.25px solid #C4C4C4;
74+
box-sizing: border-box;
75+
border-radius: 2px;
76+
text-align: center;
77+
color: #FFFFFF;
78+
}
79+
.vp-pp-btn-apply:hover {
80+
background: var(--hightlight-color);
81+
}
82+
.vp-pp-btn-cancel {
83+
width: 80px;
84+
height: 30px;
85+
background: #E5E5E5;
86+
border: 0.25px solid #C4C4C4;
87+
box-sizing: border-box;
88+
border-radius: 2px;
89+
text-align: center;
90+
color: #696969;
91+
}
92+
.vp-pp-btn-cancel:hover {
93+
background: #ccc;
94+
}

css/common/snippets.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
line-height: 20px;
4747
top: 5px;
4848
text-align: center;
49+
cursor: pointer;
4950
}
5051

5152
.vp-sn-body {

css/common/subsetEditor.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
line-height: 20px;
5353
top: 5px;
5454
text-align: center;
55+
cursor: pointer;
5556
}
5657

5758
.vp-ds-body {

css/file_io/fileio.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#vp_fileioPage .vp-fileio-type {
2+
border: 2px solid var(--hightlight-color);
3+
width: 100%;
4+
height: 35px;
5+
background-position: 97% 50%;
6+
cursor: pointer;
7+
}
8+
9+
#vp_fileioPage .vp-fileio-body {
10+
padding: 5px;
11+
margin-top: 10px;
12+
}

css/file_io/instance.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,8 @@
8383
.vp-instance-box::-webkit-scrollbar-thumb {
8484
border-radius: 0;
8585
background: #b0b0b0;
86+
}
87+
88+
.vp-ds-button {
89+
width: 45px;
8690
}

css/file_io/udf.css

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,17 +131,21 @@
131131
position: absolute;
132132
top: 0px;
133133
right: 40px;
134-
width: 70px;
135-
height: 50px;
134+
/* width: 70px;
135+
height: 50px; */
136136
border: 0.25px solid var(--border-gray-color);
137137
background: #FFFFFF;
138+
padding: 5px;
138139
}
139140
.vp-sn-menu-item {
140141
height: 25px;
141142
line-height: 25px;
142143
padding: 0px 5px;
143144
cursor: pointer;
144145
}
146+
.vp-sn-menu-item:hover {
147+
color: var(--font-hightlight);
148+
}
145149

146150
.vp-sn-search-box {
147151

@@ -166,23 +170,27 @@
166170
.vp-sn-func-right {
167171
float: right;
168172
}
169-
.vp-sn-filter {
173+
.vp-sn-sort {
170174
cursor: pointer;
171175
}
172-
.vp-sn-filter-menu-box {
176+
.vp-sn-sort-menu-box {
173177
display: none;
174178
position: absolute;
175-
width: 80px;
176-
height: 50px;
179+
/* width: 80px;
180+
height: 50px; */
177181
border: 0.25px solid var(--border-gray-color);
178182
background: #FFFFFF;
183+
padding: 5px;
179184
}
180-
.vp-sn-filter-menu-item {
185+
.vp-sn-sort-menu-item {
181186
height: 25px;
182187
line-height: 25px;
183188
padding: 0px 5px;
184189
cursor: pointer;
185190
}
191+
.vp-sn-sort-menu-item:hover {
192+
color: var(--font-hightlight);
193+
}
186194

187195
.vp-sn-func-export-mode {
188196
display: none;

data/libraries.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@
1717
<desc>사용 패키지 선언 타이틀 캡션 테스트</desc>
1818
<file>file_io/import.js</file>
1919
</item>
20-
<item id="com_instance" type="function" level="1" name="Instance" tag="INSTANCE, 인스턴스, 한 줄 코드">
20+
<!-- <item id="com_instance" type="function" level="1" name="Instance" tag="INSTANCE, 인스턴스, 한 줄 코드">
2121
<path>visualpython - common - instance</path>
2222
<desc>Instance</desc>
2323
<file>file_io/instance.js</file>
24-
</item>
24+
</item> -->
2525
<!-- <item id="com_markdown" type="function" level="1" name="Markdown" tag="MARKDOWN">
2626
<path>visualpython - common - markdown</path>
2727
<desc>마크다운</desc>
2828
<file>markdown/markdown.js</file>
2929
</item> -->
30-
<item id="com_variables" type="function" level="1" name="Variable List" tag="VARIABLES, 변수">
30+
<!-- <item id="com_variables" type="function" level="1" name="Variable List" tag="VARIABLES, 변수">
3131
<path>visualpython - common - variables</path>
3232
<desc>변수 정보</desc>
3333
<file>file_io/variables.js</file>
@@ -36,7 +36,7 @@
3636
<path>visualpython - common - udf</path>
3737
<desc>사용자 코드 입력</desc>
3838
<file>file_io/udf.js</file>
39-
</item>
39+
</item> -->
4040
<!-- <item id="com_sample" type="function" level="1" name="optionSample" tag="SAMPLE">
4141
<path>visualpython - common - optionSample</path>
4242
<desc>옵션 샘플</desc>
@@ -1221,7 +1221,7 @@
12211221
<desc>데이터를 차트로 표현하는 함수</desc>
12221222
<file>pandas/plot.js</file>
12231223
</item>
1224-
<item id="pd_frameEditor" type="function" level="1" name="Frame Editor" tag="FRAME EDITOR">
1224+
<!-- <item id="pd_frameEditor" type="function" level="1" name="Frame Editor" tag="FRAME EDITOR">
12251225
<path>visualpython - pandas - subset</path>
12261226
<desc>frame editor</desc>
12271227
<file>pandas/frameEditor.js</file>
@@ -1230,7 +1230,7 @@
12301230
<path>visualpython - pandas - subset</path>
12311231
<desc>subset dataframe</desc>
12321232
<file>pandas/subset.js</file>
1233-
</item>
1233+
</item> -->
12341234
<!-- Input/output -->
12351235
<item id="pd_inputOutput" type="package" level="1" name="Input/output" tag="파일 불러오기, 저장, FILE INPUT OUTPUT">
12361236
<path>visualpython - pandas - input output</path>

resource/apps/apps_groupby.svg

Lines changed: 6 additions & 0 deletions
Loading

resource/apps/apps_import.svg

Lines changed: 7 additions & 0 deletions
Loading

resource/apps/apps_markdown.svg

Lines changed: 7 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)