summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/toastertable.html
diff options
context:
space:
mode:
authorBelen Barros Pena <belen.barros.pena@intel.com>2016-02-22 09:08:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-26 17:20:24 +0000
commit25b179d5c31ad12971aa2ff31ab72b6eae757a16 (patch)
tree6102ab5223da5d1545da1e2182fde11421264ec1 /bitbake/lib/toaster/toastergui/templates/toastertable.html
parenta97081ba5555691014312082037b8372ecd1e1e6 (diff)
downloadpoky-25b179d5c31ad12971aa2ff31ab72b6eae757a16.tar.gz
bitbake: toaster: adjust the search field width
The search field at the top of our tables was using one of the Bootstrap classes for text field sizing. Those classes are a bit rigid, resulting in text fields too wide that made other table controls wrap. Setting a maximum width to the search form using one of the span classes, combined with a % width css declaration, make for text fields that adapt a bit better to the horizontal space available in each table. (Bitbake rev: 7833fab2e03f2d9a01ab9ad0a13c190382098b5e) 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>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/templates/toastertable.html')
-rw-r--r--bitbake/lib/toaster/toastergui/templates/toastertable.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/toaster/toastergui/templates/toastertable.html b/bitbake/lib/toaster/toastergui/templates/toastertable.html
index 4cd1b4263a..21c3d36c72 100644
--- a/bitbake/lib/toaster/toastergui/templates/toastertable.html
+++ b/bitbake/lib/toaster/toastergui/templates/toastertable.html
@@ -46,9 +46,9 @@
46 <!-- control header --> 46 <!-- control header -->
47 <div class="navbar" id="table-chrome-{{table_name}}"> 47 <div class="navbar" id="table-chrome-{{table_name}}">
48 <div class="navbar-inner"> 48 <div class="navbar-inner">
49 <div class="navbar-search input-append pull-left"> 49 <div class="navbar-search input-append pull-left span6">
50 50
51 <input class="input-xxlarge" id="search-input-{{table_name}}" name="search" type="text" placeholder="Search {{title|lower}}" value="{%if request.GET.search%}{{request.GET.search}}{%endif%}"/> 51 <input id="search-input-{{table_name}}" name="search" type="text" placeholder="Search {{title|lower}}" value="{%if request.GET.search%}{{request.GET.search}}{%endif%}"/>
52 <a href="#" style="display:none" class="add-on btn remove-search-btn-{{table_name}}" tabindex="-1"> 52 <a href="#" style="display:none" class="add-on btn remove-search-btn-{{table_name}}" tabindex="-1">
53 <i class="icon-remove"></i> 53 <i class="icon-remove"></i>
54 </a> 54 </a>