• pickypg's avatar
    Fix dropdown (and therefore typeahead) wrap · 812b9926
    pickypg authored
    I have recently been experimenting with a lot of Typeahead controls, and I ran into a situation where my Typeahead was too wide for my screen, particularly on mobile devices, and it was not wrapping as I had expected it to do.
    
    http://jsfiddle.net/Mtxkn/3/
    
    Changing the CSS for `.dropdown-menu > li > a` to `white-space: normal` causes it to wrap in every scenario that I have seen, whereas leaving it as `nowrap` never does what I want when the text is too long for a given row.
    
    It's possible that this has ramifications for other dropdown menus, but honestly I expect that even those would prefer to wrap than to extend the screen horizontally.  If that is not the case, then it would work to change the typeahead version of this only:
    
    ```css
    .typeahead > li > a {
        white-space: normal;
    }
    ```
    812b9926
Name
Last commit
Last update
..
tests Loading commit data...
accordion.less Loading commit data...
alerts.less Loading commit data...
bootstrap.less Loading commit data...
breadcrumbs.less Loading commit data...
button-groups.less Loading commit data...
buttons.less Loading commit data...
carousel.less Loading commit data...
close.less Loading commit data...
code.less Loading commit data...
component-animations.less Loading commit data...
dropdowns.less Loading commit data...
forms.less Loading commit data...
grid.less Loading commit data...
hero-unit.less Loading commit data...
labels-badges.less Loading commit data...
layouts.less Loading commit data...
media.less Loading commit data...
mixins.less Loading commit data...
modals.less Loading commit data...
navbar.less Loading commit data...
navs.less Loading commit data...
pager.less Loading commit data...
pagination.less Loading commit data...
popovers.less Loading commit data...
progress-bars.less Loading commit data...
reset.less Loading commit data...
responsive-1200px-min.less Loading commit data...
responsive-767px-max.less Loading commit data...
responsive-768px-979px.less Loading commit data...
responsive-navbar.less Loading commit data...
responsive-utilities.less Loading commit data...
responsive.less Loading commit data...
scaffolding.less Loading commit data...
sprites.less Loading commit data...
tables.less Loading commit data...
thumbnails.less Loading commit data...
tooltip.less Loading commit data...
type.less Loading commit data...
utilities.less Loading commit data...
variables.less Loading commit data...
wells.less Loading commit data...