Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markotto@twitter.com>2012-03-12 01:41:52 +0400
committerMark Otto <markotto@twitter.com>2012-03-12 01:41:52 +0400
commita97b9c112238d3f146276a97998ed5c2bb1bc1bc (patch)
tree5bce0bc1714cd3be11f1be0ad9bad6ade702327e /docs/assets/css/bootstrap-responsive.css
parentbf6cdff88a273b912567e37eb6b4809c65efd18e (diff)
in responsive layouts <767px, ensure inputs are not larger than 100% with box-sizing and a max-width
Diffstat (limited to 'docs/assets/css/bootstrap-responsive.css')
-rw-r--r--docs/assets/css/bootstrap-responsive.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/assets/css/bootstrap-responsive.css b/docs/assets/css/bootstrap-responsive.css
index 47d25b0e8e..f1ab51a219 100644
--- a/docs/assets/css/bootstrap-responsive.css
+++ b/docs/assets/css/bootstrap-responsive.css
@@ -168,6 +168,16 @@
width: auto;
margin: 0;
}
+ input,
+ textarea,
+ select,
+ .uneditable-input {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ -ms-box-sizing: border-box;
+ box-sizing: border-box;
+ max-width: 100%;
+ }
}
@media (min-width: 768px) and (max-width: 979px) {
.row {