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>2014-12-11 23:05:29 +0300
committerMark Otto <markdotto@gmail.com>2014-12-11 23:05:29 +0300
commitfef873a840add12495baa7cf2ffb5361f5ab1c63 (patch)
tree8006636fae5c5e326f9412082eb3e68a280c434c /scss/_progress.scss
parent16bd4a2787da663cfc3f4934029a29e017cba2d2 (diff)
fix all validation, turn off some settings, add sort order
Diffstat (limited to 'scss/_progress.scss')
-rw-r--r--scss/_progress.scss17
1 files changed, 5 insertions, 12 deletions
diff --git a/scss/_progress.scss b/scss/_progress.scss
index ccfda15f52..beeff3816e 100644
--- a/scss/_progress.scss
+++ b/scss/_progress.scss
@@ -1,5 +1,3 @@
-/*csslint empty-rules: false, important: true*/
-
//
// Progress bars
// --------------------------------------------------
@@ -9,11 +7,6 @@
// Progress animations
//
-@-webkit-keyframes progress-bar-stripes {
- from { background-position: $line-height-computed 0; }
- to { background-position: 0 0; }
-}
-
@keyframes progress-bar-stripes {
from { background-position: $line-height-computed 0; }
to { background-position: 0 0; }
@@ -31,12 +24,12 @@
margin-bottom: $line-height-computed;
}
.progress[value] {
- // Reset the default appearance
- appearance: none;
- // Remove Firefox and Opera border
- border: 0;
// IE10 uses `color` to set the bar background-color
color: #0074d9;
+ // Remove Firefox and Opera border
+ border: 0;
+ // Reset the default appearance
+ appearance: none;
}
.progress[value]::-webkit-progress-bar {
background-color: #eee;
@@ -99,8 +92,8 @@
border-bottom-left-radius: $border-radius-base;
}
.progress[width^="0"] {
- color: $gray-light;
min-width: 2rem;
+ color: $gray-light;
background-color: transparent;
background-image: none;
}