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

github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2014-11-18 14:45:40 +0300
committerGleb Mazovetskiy <glebm@google.com>2015-01-18 01:49:14 +0300
commit0445445727423f03d0dfc457560250172a7dcfb3 (patch)
treea2ec4d74f5e24b9545077a014b2b05079c1fb18a /assets
parent386bf387ccabd3aec63745ec58fb828c5cd28f80 (diff)
fix escaping
Diffstat (limited to 'assets')
-rw-r--r--assets/stylesheets/bootstrap/_carousel.scss4
-rw-r--r--assets/stylesheets/bootstrap/mixins/_hide-text.scss2
-rw-r--r--assets/stylesheets/bootstrap/mixins/_opacity.scss2
3 files changed, 4 insertions, 4 deletions
diff --git a/assets/stylesheets/bootstrap/_carousel.scss b/assets/stylesheets/bootstrap/_carousel.scss
index 3a9853bc..b4a53124 100644
--- a/assets/stylesheets/bootstrap/_carousel.scss
+++ b/assets/stylesheets/bootstrap/_carousel.scss
@@ -27,8 +27,8 @@
// WebKit CSS3 transforms for supported devices
@media all and (transform-3d), (-webkit-transform-3d) {
- @include transition-transform(~'0.6s ease-in-out');
- @include backface-visibility(~'hidden');
+ @include transition-transform(0.6s ease-in-out);
+ @include backface-visibility(hidden);
@include perspective(1000);
&.next,
diff --git a/assets/stylesheets/bootstrap/mixins/_hide-text.scss b/assets/stylesheets/bootstrap/mixins/_hide-text.scss
index 45db6385..c59d7361 100644
--- a/assets/stylesheets/bootstrap/mixins/_hide-text.scss
+++ b/assets/stylesheets/bootstrap/mixins/_hide-text.scss
@@ -8,7 +8,7 @@
// Deprecated as of v3.0.1 (will be removed in v4)
@mixin hide-text() {
- font: #{0/0} a;
+ font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
diff --git a/assets/stylesheets/bootstrap/mixins/_opacity.scss b/assets/stylesheets/bootstrap/mixins/_opacity.scss
index df088adf..88e9a576 100644
--- a/assets/stylesheets/bootstrap/mixins/_opacity.scss
+++ b/assets/stylesheets/bootstrap/mixins/_opacity.scss
@@ -4,5 +4,5 @@
opacity: $opacity;
// IE8 filter
$opacity-ie: ($opacity * 100);
- filter: #{alpha(opacity=$opacity-ie)};
+ filter: alpha(opacity=$opacity-ie);
}