aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-09-10 22:51:16 -0700
committerMark Otto <[email protected]>2012-09-10 22:51:16 -0700
commit0489c708c7104fffa7bddad18399f46db78e56fa (patch)
tree638329b5583e85945627ffacb916c5580b2b847f
parent39791a8ea8445932cebab737087da8710255556a (diff)
downloadbootstrap-0489c708c7104fffa7bddad18399f46db78e56fa.tar.xz
bootstrap-0489c708c7104fffa7bddad18399f46db78e56fa.zip
fixes #5040 manually: remove overflow: auto; from .modal to resolve sporadic modal right padding issues with scrollbars
-rw-r--r--docs/assets/css/bootstrap.css3
-rw-r--r--less/modals.less1
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/css/bootstrap.css b/docs/assets/css/bootstrap.css
index 2e9734cf5..37700b36c 100644
--- a/docs/assets/css/bootstrap.css
+++ b/docs/assets/css/bootstrap.css
@@ -4911,11 +4911,12 @@ input[type="submit"].btn.btn-mini {
z-index: 1050;
width: 560px;
margin: -250px 0 0 -280px;
- overflow: auto;
background-color: #ffffff;
border: 1px solid #999;
border: 1px solid rgba(0, 0, 0, 0.3);
*border: 1px solid #999;
+ /* IE6-7 */
+
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
diff --git a/less/modals.less b/less/modals.less
index a0401c4d1..5f7b43ef6 100644
--- a/less/modals.less
+++ b/less/modals.less
@@ -36,7 +36,6 @@
top: 50%;
left: 50%;
z-index: @zindexModal;
- overflow: auto;
width: 560px;
margin: -250px 0 0 -280px;
background-color: @white;