Skip to content

Commit b711225

Browse files
author
minjk-bl
committed
style changes
1 parent 05687c6 commit b711225

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

css/boardFrame.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@
217217
background-position: center;
218218
background-repeat: no-repeat;
219219
color: transparent;
220+
cursor: pointer;
220221
}
221222

222223
/* block color labeling */

css/root.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,9 @@ hr.vp-extra-menu-line {
297297
.w80 {
298298
width: 80px !important;
299299
}
300+
.w70 {
301+
width: 70px !important;
302+
}
300303
.w50 {
301304
width: 50px !important;
302305
}

js/m_logic/Elif.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ define([
107107
templateForBody() {
108108
/** Implement generating template */
109109
var page = new com_String();
110-
page.appendLine('<table class="v1 wp100" style="margin: 10px 0">');
110+
page.appendLine('<table class="v1 wp100 vp-tbl-gap5" style="margin: 10px 0">');
111111
// page.appendLine('<thead><tr><td></td><td>Parameter</td><td></td><td>Default Value</td></tr></thead>');
112-
page.appendLine('<colgroup><col width="20px"><col width="100px"><col width="100px"><col width="100px"><col width="100px"><col width="30px"></colgroup>');
112+
page.appendLine('<colgroup><col width="20px"><col width="100px"><col width="70px"><col width="100px"><col width="100px"><col width="30px"></colgroup>');
113113
page.appendLine('<tbody class="v1-table">');
114114
this.state.v1.forEach((v, idx) => {
115115
if (v.type == 'condition') {
@@ -137,7 +137,7 @@ define([
137137
// suggestInput for operator
138138
let operList = ['', '==', '!=', 'in', 'not in', '<', '<=', '>', '>='];
139139
var suggestInput = new SuggestInput();
140-
suggestInput.addClass('vp-input w100 v1-i2');
140+
suggestInput.addClass('vp-input w70 v1-i2');
141141
suggestInput.setSuggestList(function() { return operList; });
142142
suggestInput.setPlaceholder('Operator');
143143
suggestInput.setNormalFilter(false);

js/m_logic/If.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ define([
107107
templateForBody() {
108108
/** Implement generating template */
109109
var page = new com_String();
110-
page.appendLine('<table class="v1 wp100" style="margin: 10px 0">');
110+
page.appendLine('<table class="v1 wp100 vp-tbl-gap5" style="margin: 10px 0">');
111111
// page.appendLine('<thead><tr><td></td><td>Parameter</td><td></td><td>Default Value</td></tr></thead>');
112-
page.appendLine('<colgroup><col width="20px"><col width="100px"><col width="100px"><col width="100px"><col width="100px"><col width="30px"></colgroup>');
112+
page.appendLine('<colgroup><col width="20px"><col width="100px"><col width="70px"><col width="100px"><col width="100px"><col width="30px"></colgroup>');
113113
page.appendLine('<tbody class="v1-table">');
114114
this.state.v1.forEach((v, idx) => {
115115
if (v.type == 'condition') {
@@ -137,7 +137,7 @@ define([
137137
// suggestInput for operator
138138
let operList = ['', '==', '!=', 'in', 'not in', '<', '<=', '>', '>='];
139139
var suggestInput = new SuggestInput();
140-
suggestInput.addClass('vp-input w100 v1-i2');
140+
suggestInput.addClass('vp-input w70 v1-i2');
141141
suggestInput.setSuggestList(function() { return operList; });
142142
suggestInput.setPlaceholder('Operator');
143143
suggestInput.setNormalFilter(false);

js/m_logic/While.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ define([
107107
templateForBody() {
108108
/** Implement generating template */
109109
var page = new com_String();
110-
page.appendLine('<table class="v1 wp100" style="margin: 10px 0">');
110+
page.appendLine('<table class="v1 wp100 vp-tbl-gap5" style="margin: 10px 0">');
111111
// page.appendLine('<thead><tr><td></td><td>Parameter</td><td></td><td>Default Value</td></tr></thead>');
112-
page.appendLine('<colgroup><col width="20px"><col width="100px"><col width="100px"><col width="100px"><col width="100px"><col width="30px"></colgroup>');
112+
page.appendLine('<colgroup><col width="20px"><col width="100px"><col width="70px"><col width="100px"><col width="100px"><col width="30px"></colgroup>');
113113
page.appendLine('<tbody class="v1-table">');
114114
let that = this;
115115
this.state.v1.forEach((v, idx) => {
@@ -138,7 +138,7 @@ define([
138138
// suggestInput for operator
139139
let operList = ['', '==', '!=', 'in', 'not in', '<', '<=', '>', '>='];
140140
var suggestInput = new SuggestInput();
141-
suggestInput.addClass('vp-input w100 v1-i2');
141+
suggestInput.addClass('vp-input w70 v1-i2');
142142
suggestInput.setSuggestList(function() { return operList; });
143143
suggestInput.setPlaceholder('Operator');
144144
suggestInput.setNormalFilter(false);

0 commit comments

Comments
 (0)