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:
authorChris Rebert <code@rebertia.com>2015-05-15 22:17:09 +0300
committerChris Rebert <code@rebertia.com>2015-05-15 22:17:13 +0300
commit82c9038f2085692270c23f68216b3965f2578d4c (patch)
tree77384286d213cc05e5b2b4db48470ceef676d5fd /scss/_progress.scss
parent62da5947a8b5d0b40e15073fc4f9f98c2139af99 (diff)
Unquote to avoid NUL chars in the output CSS
Diffstat (limited to 'scss/_progress.scss')
-rw-r--r--scss/_progress.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/scss/_progress.scss b/scss/_progress.scss
index c99b5af923..3c22e23eff 100644
--- a/scss/_progress.scss
+++ b/scss/_progress.scss
@@ -77,7 +77,7 @@
// }
// IE9 hacks to accompany custom markup. We don't need to scope this via media queries, but I feel better doing it anyway.
-@media screen and ("min-width:0\0") {
+@media screen and (min-width:0\0) {
.progress {
background-color: #eee;
@include border-radius($border-radius-base);
@@ -116,7 +116,7 @@
@include gradient-striped();
background-size: $spacer-y $spacer-y;
}
-@media screen and ("min-width:0\0") {
+@media screen and (min-width:0\0) {
.progress-bar-striped {
@include gradient-striped();
background-size: $spacer-y $spacer-y;
@@ -134,7 +134,7 @@
.progress-animated[value]::-moz-progress-bar {
animation: progress-bar-stripes 2s linear infinite;
}
-@media screen and ("min-width:0\0") {
+@media screen and (min-width:0\0) {
.progress-animated .progress-bar-striped {
animation: progress-bar-stripes 2s linear infinite;
}