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
1 change: 1 addition & 0 deletions css/api_block/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
height: calc(100% - 100px);
}
.vp-apiblock-tab-container {
min-width: 265px;
}
.vp-apiblock-tab-header {
height: 40px;
Expand Down
33 changes: 33 additions & 0 deletions css/common/bind.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.vp-bd-container {
width: 700px;
height: 550px;
}

.vp-bd-container .vp-pp-body {
overflow: hidden;
}

.vp-bd-grid-box {
display: grid;
grid-template-rows: 30px;
grid-row-gap: 5px;
}
.vp-bd-grid-box label {
font-weight: bold;
}
.vp-bd-grid-box select,
.vp-bd-grid-box input {
width: 160px;
}

.vp-bd-type-box {
display: grid;
grid-template-rows: 30px;
grid-row-gap: 5px;
}

.vp-bd-df-refresh {
display: inline-block;
cursor: pointer;
margin-left: 5px;
}
4 changes: 0 additions & 4 deletions css/common/merge.css

This file was deleted.

42 changes: 42 additions & 0 deletions css/common/reshape.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
.vp-rs-container {
width: 700px;
height: 550px;
}

.vp-rs-container .vp-pp-body {
overflow: hidden;
}

.vp-rs-df-box {
display: grid;
grid-template-rows: 30px;
grid-row-gap: 5px;
}

.vp-rs-df-refresh {
display: inline-block;
cursor: pointer;
margin-left: 5px;
}
.vp-rs-df-box label {
font-weight: bold;
}
.vp-rs-df-box select,
.vp-rs-df-box input {
width: 160px;
}

.vp-rs-type-box {
display: grid;
grid-template-rows: 30px;
grid-row-gap: 5px;
}
.vp-rs-type-title {
/* background: var(--light-gray-color); */
border: 1px solid var(--border-gray-color);
height: 30px;
line-height: 30px;
vertical-align: middle;
padding: 0px 10px;
font-weight: bold;
}
25 changes: 24 additions & 1 deletion css/component/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@
background: #EF6B10;
}
.vp-button.disabled,
.vp-button.disabled:hover {
.vp-button.disabled:hover,
.vp-button:disabled,
.vp-button:disabled:hover {
background: #E5E5E5;
border: 0px;
border: 0.25px solid #E4E4E4;
Expand All @@ -64,6 +66,20 @@
border-right: 1px solid var(--font-primary);
}

/* Scrollbar */
.vp-scrollbar {
overflow-y: auto;
--webkit-mask-position: left top;
}
.vp-scrollbar::-webkit-scrollbar {
width: 5px;
height: 5px;
}
.vp-scrollbar::-webkit-scrollbar-thumb {
border: 0.3px solid #C4C4C4;
background: #C4C4C4;
}

/* Width selector */
.wp50 {
width: 50px;
Expand All @@ -78,6 +94,13 @@
width: 120px;
}

.w40 {
width: 40%;
}
.w100 {
width: 100%;
}

/* font selector */
.fb {
font-weight: bold;
Expand Down
35 changes: 32 additions & 3 deletions css/matplotlib/plot.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,34 @@
--bgcolor: #696969;
}

/* Import Options box*/
.vp-import-box {
display: grid;
grid-template-rows: 30px;
grid-row-gap: 5px;
border: 1px solid var(--border-gray-color);
padding: 10px 0px;
}
.vp-import-box label {
min-width: 130px;
max-width: 300px;
vertical-align: middle;
text-align: left;
font-weight: bold;
height: 30px;
padding: 2px 5px 2px 16px;
}
.vp-import-box input[type="text"] {
width: 160px;
}
.vp-import-box input[type="number"] {
width: 79px;
}
.vp-pl-import-run {
float: right;
margin-right: 10px;
}

.vp-icon-btn.vp-close-view {
position: absolute;
right: 10px;
Expand Down Expand Up @@ -268,18 +296,19 @@
.vp-method-select {
border: 0.25px solid #C4C4C4;
overflow-y: auto;
width: 125px;
width: 250px;
height: 100px;
}
.vp-column-select-item,
.vp-method-select-item {
padding-left: 3px;
cursor: pointer;
padding: 3px;
border-bottom: 0.25px solid var(--border-gray-color);
}
.vp-column-select-item.selected,
.vp-method-select-item.selected {
color: var(--font-hightlight);
background: #C4C4C4;
background: var(--light-gray-color);
}

/* Select Data Button */
Expand Down
Loading