mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	Better right alignment of numerics in delay and trigger nodes
This commit is contained in:
		| @@ -27,7 +27,7 @@ | ||||
|     </div> | ||||
|     <div id="delay-details" class="form-row"> | ||||
|         <label for="node-input-timeout"><i class="fa fa-clock-o"></i> <span data-i18n="delay.for"></span></label> | ||||
|         <input type="text" id="node-input-timeout" placeholder="Time" style="text-align:right; width:50px !important"> | ||||
|         <input type="text" id="node-input-timeout" placeholder="Time" style="text-align:end; width:50px !important"> | ||||
|         <select id="node-input-timeoutUnits" style="width:200px !important"> | ||||
|           <option value="milliseconds" data-i18n="delay.milisecs"></option> | ||||
|           <option value="seconds" data-i18n="delay.secs"></option> | ||||
| @@ -39,7 +39,7 @@ | ||||
|  | ||||
|     <div id="rate-details" class="form-row"> | ||||
|         <label for="node-input-rate"><i class="fa fa-clock-o"></i> <span data-i18n="delay.rate"></span></label> | ||||
|         <input type="text" id="node-input-rate" placeholder="1" style="text-align:right; width:30px !important"> | ||||
|         <input type="text" id="node-input-rate" placeholder="1" style="text-align:end; width:30px !important"> | ||||
|         <label for="node-input-rateUnits"><span data-i18n="delay.msgper"></span></label> | ||||
|         <select id="node-input-rateUnits" style="width:140px !important"> | ||||
|           <option value="second" data-i18n="delay.sec"></option> | ||||
| @@ -54,9 +54,9 @@ | ||||
|  | ||||
|     <div id="random-details" class="form-row"> | ||||
|         <label for="node-input-randomFirst"><i class="fa fa-clock-o"></i> <span data-i18n="delay.between"></span></label> | ||||
|         <input type="text" id="node-input-randomFirst" placeholder="" style="text-align:right; width:30px !important"> | ||||
|         <input type="text" id="node-input-randomFirst" placeholder="" style="text-align:end; width:30px !important"> | ||||
|           &   | ||||
|         <input type="text" id="node-input-randomLast" placeholder="" style="text-align:right; width:30px !important"> | ||||
|         <input type="text" id="node-input-randomLast" placeholder="" style="text-align:end; width:30px !important"> | ||||
|         <select id="node-input-randomUnits" style="width:140px !important"> | ||||
|           <option value="milliseconds" data-i18n="delay.milisecs"></option> | ||||
|           <option value="seconds" data-i18n="delay.secs"></option> | ||||
|   | ||||
| @@ -32,7 +32,7 @@ | ||||
|             <option value="wait" data-i18n="trigger.wait-for"></option> | ||||
|         </select> | ||||
|         <span class="node-type-wait"> | ||||
|             <input type="text" id="node-input-duration" style="text-align:right; width:70px !important"> | ||||
|             <input type="text" id="node-input-duration" style="text-align:end; width:70px !important"> | ||||
|             <select id="node-input-units" style="width:140px !important"> | ||||
|                 <option value="ms" data-i18n="trigger.duration.ms"></option> | ||||
|                 <option value="s" data-i18n="trigger.duration.s"></option> | ||||
| @@ -60,7 +60,7 @@ | ||||
|     <br/> | ||||
|     <div class="form-row"> | ||||
|         <label for="node-input-name"><i class="fa fa-tag"></i> <span data-i18n="common.label.name"></span></label> | ||||
|         <input type="text" id="node-input-name" data-i18n="[placeholder]common.label.name"> | ||||
|         <input type="text" id="node-input-name" data-i18n="[placeholder]common.label.name"></input> | ||||
|     </div> | ||||
|     <div class="form-tips" data-i18n="[html]trigger.tip"></div> | ||||
| </script> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user