mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-20 17:54:23 +01:00
fixes #9582: restore img-responsive as a class and move it's mixin to mixins.less
This commit is contained in:
parent
1b6a5bbca2
commit
fee3f1e733
6
dist/css/bootstrap.css
vendored
6
dist/css/bootstrap.css
vendored
@ -344,6 +344,12 @@ img {
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.img-responsive {
|
||||||
|
display: block;
|
||||||
|
height: auto;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
.img-rounded {
|
.img-rounded {
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
|
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@ -294,10 +294,10 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
// RETINA IMAGE SUPPORT
|
// Retina images
|
||||||
// --------------------------------------------------
|
//
|
||||||
|
|
||||||
// Short retina mixin for setting background-image and -size
|
// Short retina mixin for setting background-image and -size
|
||||||
|
|
||||||
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
|
.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
|
||||||
background-image: url("@{file-1x}");
|
background-image: url("@{file-1x}");
|
||||||
|
|
||||||
@ -314,6 +314,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Responsive image
|
||||||
|
//
|
||||||
|
// Keep images from scaling beyond the width of their parents.
|
||||||
|
|
||||||
|
.img-responsive(@display: block;) {
|
||||||
|
display: @display;
|
||||||
|
max-width: 100%; // Part 1: Set a maximum relative to the parent
|
||||||
|
height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// COMPONENT MIXINS
|
// COMPONENT MIXINS
|
||||||
// --------------------------------------------------
|
// --------------------------------------------------
|
||||||
|
|
||||||
@ -376,7 +387,7 @@
|
|||||||
border-color: @border;
|
border-color: @border;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Hover states for `.table-hover`
|
// Hover states for `.table-hover`
|
||||||
// Note: this is not available for cells or rows within `thead` or `tfoot`.
|
// Note: this is not available for cells or rows within `thead` or `tfoot`.
|
||||||
.table-hover > tbody > tr {
|
.table-hover > tbody > tr {
|
||||||
@ -710,12 +721,12 @@
|
|||||||
font-size: @font-size;
|
font-size: @font-size;
|
||||||
line-height: @line-height;
|
line-height: @line-height;
|
||||||
border-radius: @border-radius;
|
border-radius: @border-radius;
|
||||||
|
|
||||||
select& {
|
select& {
|
||||||
height: @input-height;
|
height: @input-height;
|
||||||
line-height: @input-height;
|
line-height: @input-height;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea& {
|
textarea& {
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
@ -73,10 +73,8 @@ img {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Responsive images (ensure images don't scale beyond their parents)
|
// Responsive images (ensure images don't scale beyond their parents)
|
||||||
.img-responsive(@display: block;) {
|
.img-responsive {
|
||||||
display: @display;
|
.img-responsive();
|
||||||
max-width: 100%; // Part 1: Set a maximum relative to the parent
|
|
||||||
height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Rounded corners
|
// Rounded corners
|
||||||
|
Loading…
x
Reference in New Issue
Block a user