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

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Stevens <jan@playpass.be>2015-08-21 09:55:53 +0300
committerJan Stevens <jan@playpass.be>2015-08-21 09:55:53 +0300
commit6e34c9d10e5285a460d85371ca093272f02641f4 (patch)
treef0a9077306d6caba79753e5433b00ae254ea509d /assets/stylesheets/bootstrap/mixins/_image.scss
parent66e4af2ad8251ca945a9e2a1398bc8ce2f29bdf3 (diff)
Tracking official versions instead of v4-dev, now using v4.0.0-alpha
Diffstat (limited to 'assets/stylesheets/bootstrap/mixins/_image.scss')
-rw-r--r--assets/stylesheets/bootstrap/mixins/_image.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/stylesheets/bootstrap/mixins/_image.scss b/assets/stylesheets/bootstrap/mixins/_image.scss
index e5ae10a..bec9626 100644
--- a/assets/stylesheets/bootstrap/mixins/_image.scss
+++ b/assets/stylesheets/bootstrap/mixins/_image.scss
@@ -19,7 +19,7 @@
// Short retina mixin for setting background-image and -size.
@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
- background-image: url($file-1x);
+ background-image: url("#{file-1x}");
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
@@ -27,7 +27,7 @@
only screen and ( min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {
- background-image: url($file-2x);
+ background-image: url("#{file-2x}");
background-size: $width-1x $height-1x;
}
}