mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
fixes #3291: remove float on responsive .thumbnails for 767px and down to ensure thumbnail images don't pop out of container in FF
This commit is contained in:
parent
f495a8d0cc
commit
148e5a3d89
4
docs/assets/css/bootstrap-responsive.css
vendored
4
docs/assets/css/bootstrap-responsive.css
vendored
@ -805,7 +805,11 @@
|
|||||||
display: block;
|
display: block;
|
||||||
float: none;
|
float: none;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
max-width: 100%;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
.input-large,
|
.input-large,
|
||||||
.input-xlarge,
|
.input-xlarge,
|
||||||
|
@ -51,6 +51,9 @@
|
|||||||
.thumbnails {
|
.thumbnails {
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
|
.thumbnails > li {
|
||||||
|
float: none;
|
||||||
|
}
|
||||||
// Make all grid-sized elements block level again
|
// Make all grid-sized elements block level again
|
||||||
[class*="span"],
|
[class*="span"],
|
||||||
.row-fluid [class*="span"] {
|
.row-fluid [class*="span"] {
|
||||||
|
Loading…
Reference in New Issue
Block a user