From 196d6e79e289c04b21e0ff3caa93740343439461 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Tue, 8 Nov 2016 13:29:01 +0000 Subject: [PATCH] Don't pin change node input widths --- nodes/core/logic/15-change.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nodes/core/logic/15-change.html b/nodes/core/logic/15-change.html index 0a8c6d57e..c9c3a7a13 100644 --- a/nodes/core/logic/15-change.html +++ b/nodes/core/logic/15-change.html @@ -141,14 +141,14 @@ selectField.append($("").val(selectOptions[i].v).text(selectOptions[i].l)); } - var propertyName = $('',{style:"width:250px",class:"node-input-rule-property-name",type:"text"}) + var propertyName = $('',{class:"node-input-rule-property-name",type:"text"}) .appendTo(row1) .typedInput({types:['msg','flow','global']}); $('
',{style:"display:inline-block;text-align:right; width:120px; padding-right:10px; box-sizing:border-box;"}) .text(to) .appendTo(row2); - var propertyValue = $('',{style:"width:250px",class:"node-input-rule-property-value",type:"text"}) + var propertyValue = $('',{class:"node-input-rule-property-value",type:"text"}) .appendTo(row2) .typedInput({default:'str',types:['msg','flow','global','str','num','bool','json','date']}); @@ -156,7 +156,7 @@ $('
',{style:"display:inline-block;text-align:right; width:120px; padding-right:10px; box-sizing:border-box;"}) .text(search) .appendTo(row3_1); - var fromValue = $('',{style:"width:250px",class:"node-input-rule-property-search-value",type:"text"}) + var fromValue = $('',{class:"node-input-rule-property-search-value",type:"text"}) .appendTo(row3_1) .typedInput({default:'str',types:['msg','flow','global','str','re','num','bool']}); @@ -164,14 +164,14 @@ $('
',{style:"display:inline-block;text-align:right; width:120px; padding-right:10px; box-sizing:border-box;"}) .text(replace) .appendTo(row3_2); - var toValue = $('',{style:"width:250px",class:"node-input-rule-property-replace-value",type:"text"}) + var toValue = $('',{class:"node-input-rule-property-replace-value",type:"text"}) .appendTo(row3_2) .typedInput({default:'str',types:['msg','flow','global','str','num','bool','json']}); $('
',{style:"display:inline-block;text-align:right; width:120px; padding-right:10px; box-sizing:border-box;"}) .text(to) .appendTo(row4); - var moveValue = $('',{style:"width:250px",class:"node-input-rule-property-move-value",type:"text"}) + var moveValue = $('',{class:"node-input-rule-property-move-value",type:"text"}) .appendTo(row4) .typedInput({default:'msg',types:['msg','flow','global']});