dokubootstrap-simplified
dokubootstrap-simplified copied to clipboard
Upgrade to bootstrap to 3.2.0
Hi, the text input on search box hasn't bootstrap class "form-control" (inside function _tpl_output_search_bar() ) ;-)
Great job!
PS: Another tip: for me is better translate the word "Options" dropdown menu item (file: main.php). I Fix it with tpl_getLang('options') .. and upgraded files language
where would you suggest to put "form-control"? if I put it in the then it messes up the complete top-bar style
Sorry, you're right!! It doesn't work beacause you use again bootstrap release 3.0.2 . In my project I use Bootstrap 3.2.0 and I put new class element to row:
print 'id="qsearch__in" accesskey="f" name="id" class="edit form-control" title="[F]" />';
The difference between boostrapt style is:
Your older version: .navbar-form .form-control { display: inline-block; }
The newer version: .navbar-form .form-control { display: inline-block; vertical-align: middle; width: auto; }