diff options
author | Belen Barros Pena <belen.barros.pena@intel.com> | 2016-02-22 09:08:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-26 17:20:12 +0000 |
commit | 48f0ae2c12475953643a60bcd122273eff012bed (patch) | |
tree | e70e4cc761cc83cb0e9d564840af3e6bb5fde152 | |
parent | 07eb4f274ca4f002a9280b2cf6e7b81bc17c4ed6 (diff) | |
download | poky-48f0ae2c12475953643a60bcd122273eff012bed.tar.gz |
bitbake: toaster: fix custom image name form
The placeholder text in the form where you name your new custom images
didn't display fully. This patch fixes the styles so that the text shows
properly. It also changes the text itself to make it a bit shorter.
[YOCTO #9122]
(Bitbake rev: 9df802182b0b96295b148a1681c2265e72d8306b)
Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/toaster/toastergui/static/css/default.css | 2 | ||||
-rw-r--r-- | bitbake/lib/toaster/toastergui/templates/newcustomimage_modal.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css index b674a9de8e..c5a580f7f2 100644 --- a/bitbake/lib/toaster/toastergui/static/css/default.css +++ b/bitbake/lib/toaster/toastergui/static/css/default.css | |||
@@ -197,7 +197,7 @@ table p { margin-bottom: 0 } | |||
197 | .configuration-alert p { margin-bottom: 0px; } | 197 | .configuration-alert p { margin-bottom: 0px; } |
198 | .project-form { margin-top: 10px; } | 198 | .project-form { margin-top: 10px; } |
199 | .add-layers .btn-block + .btn-block, .build .btn-block + .btn-block { margin-top: 0px; } | 199 | .add-layers .btn-block + .btn-block, .build .btn-block + .btn-block { margin-top: 0px; } |
200 | input.huge { font-size: 17.5px; padding: 11px 19px; } | 200 | input.huge { font-size: 17.5px; padding: 11px; min-width: 60%; } |
201 | .build-form { margin-bottom: 0px; } | 201 | .build-form { margin-bottom: 0px; } |
202 | .build-form .input-append { margin-bottom: 0px; } | 202 | .build-form .input-append { margin-bottom: 0px; } |
203 | .build-form .btn-large { padding: 11px 35px; } | 203 | .build-form .btn-large { padding: 11px 35px; } |
diff --git a/bitbake/lib/toaster/toastergui/templates/newcustomimage_modal.html b/bitbake/lib/toaster/toastergui/templates/newcustomimage_modal.html index fed489fad9..b1b5148c08 100644 --- a/bitbake/lib/toaster/toastergui/templates/newcustomimage_modal.html +++ b/bitbake/lib/toaster/toastergui/templates/newcustomimage_modal.html | |||
@@ -22,7 +22,7 @@ | |||
22 | <span class="help-block span8">Image names must be unique. They should not contain spaces or capital letters, and the only allowed special character is dash (-).<p></p> | 22 | <span class="help-block span8">Image names must be unique. They should not contain spaces or capital letters, and the only allowed special character is dash (-).<p></p> |
23 | </span></div> | 23 | </span></div> |
24 | <div class="control-group controls"> | 24 | <div class="control-group controls"> |
25 | <input type="text" class="huge span5" placeholder="Type the name, something like 'core-image-myimage'" required> | 25 | <input type="text" class="huge" placeholder="Type the custom image name" required> |
26 | <span class="help-block error" id="invalid-name-help" style="display:none"></span> | 26 | <span class="help-block error" id="invalid-name-help" style="display:none"></span> |
27 | </div> | 27 | </div> |
28 | </div> | 28 | </div> |