Skip to content

Commit aad32d8

Browse files
authored
Merge pull request #19 from minjk-bl/devops
Devops
2 parents 83548bc + c5d6276 commit aad32d8

File tree

7 files changed

+354
-145
lines changed

7 files changed

+354
-145
lines changed

css/common/instanceEditor.css

Lines changed: 35 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,32 @@
44
display: grid;
55
grid-template-columns: 50% 50%;
66
grid-gap: 10px;
7-
padding: 5px 14px 0px 14px;
7+
/* padding: 5px 14px 0px 14px; */
8+
padding-right: 14px;
89
}
910
.vp-ins-select-container {
1011

1112
}
1213
.vp-ins-select-title {
13-
font-weight: bold;
14+
font-weight: 700;
15+
color: var(--hightlight-color);
1416
padding: 5px 5px 5px 0px;
1517
}
1618
#vp-wrapper .vp-ins-select-container input.vp-ins-search {
1719
width: 100%;
1820
}
21+
#vp-wrapper .vp-ins-select-container .vp-ins-search-icon {
22+
position: absolute;
23+
color: #C4C4C4;
24+
right: 5px;
25+
top: 5px;
26+
}
1927
.vp-ins-select-box {
2028
margin-top: 5px;
2129
border: 0.25px solid #C4C4C4;
2230
}
2331
.vp-ins-select-list {
24-
height: 200px;
32+
height: 145px;
2533
width: 100%;
2634

2735
list-style: none;
@@ -45,9 +53,14 @@
4553
background: #b0b0b0;
4654
}
4755
.vp-ins-select-item {
48-
margin-top: 3px;
49-
margin-bottom: 3px;
56+
padding-top: 3px;
57+
padding-bottom: 3px;
5058
cursor: pointer;
59+
border-bottom: 0.25px solid var(--light-gray-color);
60+
}
61+
.vp-ins-select-item.selected {
62+
color : var(--hightlight-color);
63+
background: var(--light-gray-color);
5164
}
5265
.vp-ins-select-item span {
5366
background: #e0e0e0;
@@ -56,10 +69,10 @@
5669
margin-right: 5px;
5770
}
5871
.vp-ins-select-item:hover {
59-
color: #F37704;
72+
background: var(--light-gray-color);
6073
}
6174
.vp-ins-select-item:hover span {
62-
background: #F37704;
75+
background: var(--hightlight-color);
6376
color: #FFFFFF;
6477
}
6578
.vp-ins-option-box.api {
@@ -71,4 +84,19 @@
7184
}
7285
.vp-ins-parameter {
7386
width: 100% !important;
87+
}
88+
89+
.vp-create-var-box {
90+
position: relative;
91+
margin-top: 5px;
92+
}
93+
#vp-wrapper .vp-ins-select-container .vp-create-var {
94+
width: 100%;
95+
}
96+
#vp-wrapper .vp-ins-select-container .vp-create-var-btn {
97+
position: absolute;
98+
color: #C4C4C4;
99+
right: 5px;
100+
top: 5px;
101+
cursor: pointer;
74102
}

css/common/subsetEditor.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
background-color: rgba(0,0,0,.4);
1313
}
1414

15+
.vp-ds-button {
16+
width: 45px;
17+
}
18+
1519
.vp-ds-container {
1620
position: relative;
1721
left: 50%;

css/file_io/instance.css

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
vertical-align: top;
1010
}
1111
.vp-instance-toolbar {
12+
/* display: none; */
1213
grid-column: 2/3;
1314
}
1415
.vp-instance-toolbar .vp-toolbar-button {
@@ -20,9 +21,15 @@
2021
border-radius: 2px;
2122
}
2223

23-
2424
.vp-instance-label {
2525
grid-column: 1/2;
26+
font-weight: 700;
27+
margin: 0px;
28+
}
29+
30+
.vp-instance-box {
31+
grid-column-start: 1;
32+
grid-column-end: 3;
2633
}
2734

2835
.vp-instance-base > hr {
@@ -31,15 +38,18 @@
3138
grid-column: 1/3;
3239
}
3340

34-
.vp-ins-container {
41+
.vp-ins-container.variable {
42+
grid-column: 1/3;
43+
}
44+
45+
.vp-ins-container.allocate {
3546
grid-column: 1/3;
36-
grid-row: 5;
3747
}
3848

3949
/* udf editor - CodeMirror */
4050
#vp-wrapper .vp-option-page .vp-instance-box .CodeMirror {
4151
display: inline-block;
42-
width: calc(100% - 60px);
52+
width: calc(100% - 55px);
4353
height: 30px;
4454
border: 1px solid silver;
4555
overflow: hidden;

0 commit comments

Comments
 (0)