CSS issue on Twitter Typeahead with Bootstrap 3

前端 未结 14 925
醉话见心
醉话见心 2020-11-30 22:17

With the release of Bootstrap 3. Typeahead has been removed in favor of this:
https://github.com/twitter/typeahead.js

Ive integrated it successfully on remote fe

14条回答
  •  北海茫月
    2020-11-30 22:51

    A cleaner Less solution

    .tt-small {
    
        .twitter-typeahead {
    
            display: block !important; // Note: Override inline styles set by JavaScript
    
            &> .tt-hint {
    
                &:extend(.form-control);
    
                color: @medium-gray;
    
            }
        }
    }
    

    Where the markup looks something like:

提交回复
热议问题