Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 35 additions & 7 deletions css/common/instanceEditor.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,32 @@
display: grid;
grid-template-columns: 50% 50%;
grid-gap: 10px;
padding: 5px 14px 0px 14px;
/* padding: 5px 14px 0px 14px; */
padding-right: 14px;
}
.vp-ins-select-container {

}
.vp-ins-select-title {
font-weight: bold;
font-weight: 700;
color: var(--hightlight-color);
padding: 5px 5px 5px 0px;
}
#vp-wrapper .vp-ins-select-container input.vp-ins-search {
width: 100%;
}
#vp-wrapper .vp-ins-select-container .vp-ins-search-icon {
position: absolute;
color: #C4C4C4;
right: 5px;
top: 5px;
}
.vp-ins-select-box {
margin-top: 5px;
border: 0.25px solid #C4C4C4;
}
.vp-ins-select-list {
height: 200px;
height: 145px;
width: 100%;

list-style: none;
Expand All @@ -45,9 +53,14 @@
background: #b0b0b0;
}
.vp-ins-select-item {
margin-top: 3px;
margin-bottom: 3px;
padding-top: 3px;
padding-bottom: 3px;
cursor: pointer;
border-bottom: 0.25px solid var(--light-gray-color);
}
.vp-ins-select-item.selected {
color : var(--hightlight-color);
background: var(--light-gray-color);
}
.vp-ins-select-item span {
background: #e0e0e0;
Expand All @@ -56,10 +69,10 @@
margin-right: 5px;
}
.vp-ins-select-item:hover {
color: #F37704;
background: var(--light-gray-color);
}
.vp-ins-select-item:hover span {
background: #F37704;
background: var(--hightlight-color);
color: #FFFFFF;
}
.vp-ins-option-box.api {
Expand All @@ -71,4 +84,19 @@
}
.vp-ins-parameter {
width: 100% !important;
}

.vp-create-var-box {
position: relative;
margin-top: 5px;
}
#vp-wrapper .vp-ins-select-container .vp-create-var {
width: 100%;
}
#vp-wrapper .vp-ins-select-container .vp-create-var-btn {
position: absolute;
color: #C4C4C4;
right: 5px;
top: 5px;
cursor: pointer;
}
4 changes: 4 additions & 0 deletions css/common/subsetEditor.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
background-color: rgba(0,0,0,.4);
}

.vp-ds-button {
width: 45px;
}

.vp-ds-container {
position: relative;
left: 50%;
Expand Down
18 changes: 14 additions & 4 deletions css/file_io/instance.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
vertical-align: top;
}
.vp-instance-toolbar {
/* display: none; */
grid-column: 2/3;
}
.vp-instance-toolbar .vp-toolbar-button {
Expand All @@ -20,9 +21,15 @@
border-radius: 2px;
}


.vp-instance-label {
grid-column: 1/2;
font-weight: 700;
margin: 0px;
}

.vp-instance-box {
grid-column-start: 1;
grid-column-end: 3;
}

.vp-instance-base > hr {
Expand All @@ -31,15 +38,18 @@
grid-column: 1/3;
}

.vp-ins-container {
.vp-ins-container.variable {
grid-column: 1/3;
}

.vp-ins-container.allocate {
grid-column: 1/3;
grid-row: 5;
}

/* udf editor - CodeMirror */
#vp-wrapper .vp-option-page .vp-instance-box .CodeMirror {
display: inline-block;
width: calc(100% - 60px);
width: calc(100% - 55px);
height: 30px;
border: 1px solid silver;
overflow: hidden;
Expand Down
Loading