diff options
| author | Elliot Smith <elliot.smith@intel.com> | 2016-04-12 12:07:01 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-15 08:35:03 +0100 |
| commit | cd7b48cd0da27f415194d3aaeb330ba6eb7d5d9d (patch) | |
| tree | f0053453162a55de7cb7390d234d0e8612a074d7 /bitbake/lib/toaster/toastergui/static/css | |
| parent | 64622029d7226c64bc1c92bf9680119946cf8b81 (diff) | |
| download | poky-cd7b48cd0da27f415194d3aaeb330ba6eb7d5d9d.tar.gz | |
bitbake: toaster: migrate typeahead library
Migrate from Bootstrap 2's built-in typeahead to Twitter's
typeahead library.
This is to facilitate moving to Bootstrap 3, which doesn't have
a typeahead.
(Bitbake rev: 0748177b40188a6fb735fe1ba1c17294afa4a3d0)
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Michael Wood <michael.g.wood@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/static/css')
| -rw-r--r-- | bitbake/lib/toaster/toastergui/static/css/default.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastergui/static/css/default.css b/bitbake/lib/toaster/toastergui/static/css/default.css index b024d962aa..d0e45b6edc 100644 --- a/bitbake/lib/toaster/toastergui/static/css/default.css +++ b/bitbake/lib/toaster/toastergui/static/css/default.css | |||
| @@ -341,3 +341,22 @@ input.input-lg { | |||
| 341 | line-height: 1.33333; | 341 | line-height: 1.33333; |
| 342 | padding: 10px 16px; | 342 | padding: 10px 16px; |
| 343 | } | 343 | } |
| 344 | |||
| 345 | /* styling for standalone typeahead library */ | ||
| 346 | .tt-menu { | ||
| 347 | margin-top: 2px; | ||
| 348 | border-radius: 4px; | ||
| 349 | width: 100%; | ||
| 350 | } | ||
| 351 | |||
| 352 | .tt-suggestion { | ||
| 353 | cursor: pointer; | ||
| 354 | overflow: hidden; | ||
| 355 | white-space: nowrap; | ||
| 356 | text-overflow: ellipsis; | ||
| 357 | } | ||
| 358 | |||
| 359 | .tt-suggestion.active { | ||
| 360 | background-color: #0081c2; | ||
| 361 | color: white; | ||
| 362 | } | ||
