summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2015-02-24 17:20:49 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-24 23:35:43 +0000
commitbd5087dc77881d7d171e28e10c21f2f2d05c1e95 (patch)
treec9a303fdf0b1eee6f9eae3c92708c365900786c3 /bitbake
parent43afafeffa85d6268a8346e9feb542385183a5cf (diff)
downloadpoky-bd5087dc77881d7d171e28e10c21f2f2d05c1e95.tar.gz
bitbake: toastergui: fix spacing and input field sizes
The revision label was missing the projec-form class (which controls the spacing in the form), and the revision text field was a bit too long, so changed it from span4 to span3. (Bitbake rev: 219d57d1cec178820f679a4153324986c37821db) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/importlayer.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/importlayer.html b/bitbake/lib/toaster/toastergui/templates/importlayer.html
index 1196e0cf41..19d2fc4af8 100644
--- a/bitbake/lib/toaster/toastergui/templates/importlayer.html
+++ b/bitbake/lib/toaster/toastergui/templates/importlayer.html
@@ -75,11 +75,11 @@
75 <input type="text" id="layer-subdir"> 75 <input type="text" id="layer-subdir">
76 76
77 <div class="control-group" id="layer-revision-ctrl"> 77 <div class="control-group" id="layer-revision-ctrl">
78 <label class="control-label" for="layer-git-ref">Revision 78 <label class="control-label project-form" for="layer-git-ref">Revision
79 <span class="icon-question-sign get-help" title="You can provide a Git branch, a tag or a commit SHA as the revision"></span> 79 <span class="icon-question-sign get-help" title="You can provide a Git branch, a tag or a commit SHA as the revision"></span>
80 </label> 80 </label>
81 <div class="controls"> 81 <div class="controls">
82 <input type="text" class="span4" id="layer-git-ref" required> 82 <input type="text" class="span3" id="layer-git-ref" required>
83 <span class="help-inline" style="diaply:none;" id="invalid-layer-revision-hint"></span> 83 <span class="help-inline" style="diaply:none;" id="invalid-layer-revision-hint"></span>
84 </div> 84 </div>
85 </div> 85 </div>