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 <markdotto@gmail.com>2016-10-10 00:14:39 +0300
committerMark Otto <markdotto@gmail.com>2016-10-10 00:14:39 +0300
commit88bf5af896a872d65752956e85adb66a9192e697 (patch)
tree0df3e8d7436708bc4fa6e4790aa326f92b45132f /scss/_images.scss
parent3dc4b3647ce2b27b0216fe8103253ffe9633fde9 (diff)
Remove display from the .img-fluid utility
Creating max-width images is not dependent on the display, so setting it is redundant. Cleans up the comments and implementation of the mixin as well. Fixes #20767
Diffstat (limited to 'scss/_images.scss')
-rw-r--r--scss/_images.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/_images.scss b/scss/_images.scss
index 3ca811ecd9..3cdedc4ffc 100644
--- a/scss/_images.scss
+++ b/scss/_images.scss
@@ -6,7 +6,7 @@
// which weren't expecting the images within themselves to be involuntarily resized.
// See also https://github.com/twbs/bootstrap/issues/18178
.img-fluid {
- @include img-fluid();
+ @include img-fluid;
}
@@ -20,7 +20,7 @@
@include box-shadow($thumbnail-box-shadow);
// Keep them at most 100% wide
- @include img-fluid(inline-block);
+ @include img-fluid;
}
//