aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-07-18 19:53:32 -0700
committerMark Otto <[email protected]>2013-07-18 19:53:32 -0700
commite440ff4b3f872af175873283899cb40f50b8010f (patch)
tree5d85cf9f4a540fc4ca88cb7785816c20c364b8a7 /css.html
parent0a3722112c9dff08785689051e581857cce572de (diff)
downloadbootstrap-e440ff4b3f872af175873283899cb40f50b8010f.tar.xz
bootstrap-e440ff4b3f872af175873283899cb40f50b8010f.zip
`<input>` and `<select>` sizing update
Restores `font-size` and more to the `<select>` element while also changing from `min-height` to `height` for input sizing. Fixes #8520 as opened by @ShaunR (would've merged that PR but I moved everything around right before).
Diffstat (limited to 'css.html')
-rw-r--r--css.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/css.html b/css.html
index c0e6c5061..4500efdd1 100644
--- a/css.html
+++ b/css.html
@@ -1772,12 +1772,26 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<input class="input-large" type="text" placeholder=".input-large">
<input type="text" placeholder="Default input">
<input class="input-small" type="text" placeholder=".input-small">
+
+ <select class="input-large">
+ <option value="">.input-large</option>
+ </select>
+ <select>
+ <option value="">Default select</option>
+ </select>
+ <select class="input-small">
+ <option value="">.input-small</option>
+ </select>
</div>
</form>
{% highlight html %}
<input class="input-large" type="text" placeholder=".input-large">
<input type="text" placeholder="Default input">
<input class="input-small" type="text" placeholder=".input-small">
+
+<select class="input-large">...</select>
+<select>...</select>
+<select class="input-small">...</select>
{% endhighlight %}
<h4>Column sizing</h4>