diff options
| author | Mark Otto <[email protected]> | 2012-03-11 21:21:51 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-03-11 21:21:51 -0700 |
| commit | ee5d2ec91aab9ec086b57a21059617355639b32c (patch) | |
| tree | d5b779245ade0e1534e4f4aefdce4e0fb1d69477 /docs/assets/css/bootstrap.css | |
| parent | c8f4325c192f97e9c8d09e7d8ad3059be694fc4c (diff) | |
| download | bootstrap-ee5d2ec91aab9ec086b57a21059617355639b32c.tar.xz bootstrap-ee5d2ec91aab9ec086b57a21059617355639b32c.zip | |
add block level input mixin for border-box box-sizing
Diffstat (limited to 'docs/assets/css/bootstrap.css')
| -rw-r--r-- | docs/assets/css/bootstrap.css | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css index 65b63118c..e3572169d 100644 --- a/docs/assets/css/bootstrap.css +++ b/docs/assets/css/bootstrap.css @@ -117,6 +117,19 @@ textarea { text-indent: 100%; white-space: nowrap; } +.input-block-level { + display: block; + width: 100%; + min-height: 28px; + /* Make inputs at least the height of their button counterpart */ + + /* Makes inputs behave like true block-level elements */ + + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + -ms-box-sizing: border-box; + box-sizing: border-box; +} body { margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
