How to adjust custom height and width to select advanced using selectize.js jquery module?

I am using https://github.com/brianreavis/selectize.js in a project, and I cannot adjust the height and width of the select input:

The problem is aggravated, since the standard text selection / input (using bootstrap 2) is 30 pixels in height, and with this plug-in it grows to 37 pixels and very poorly violates the visual interface of my user (increasing all inputs to 37 pixels is certainly not an option )

I also included the selectize.bootstrap2.css file with no luck.

+7
user-interface css jquery-plugins twitter-bootstrap
source share
1 answer

selectize.js setting for 30px height

.selectize-dropdown, .selectize-input { line-height: 14px; } 
+2
source share

All Articles