diff options
| author | Marcel Jackwerth <[email protected]> | 2012-03-15 18:11:17 +0100 |
|---|---|---|
| committer | Marcel Jackwerth <[email protected]> | 2012-03-15 18:11:17 +0100 |
| commit | 1a1cab2d0612d150045947da183fff2464e892e0 (patch) | |
| tree | 71ee1c47245dac7972ea32b6ff29f01bb65471e0 | |
| parent | 8e0afbeaa42dfabb75817b7fc1c677cd372c8c43 (diff) | |
| download | bootstrap-1a1cab2d0612d150045947da183fff2464e892e0.tar.xz bootstrap-1a1cab2d0612d150045947da183fff2464e892e0.zip | |
Invert progress-bar-stripes direction
| -rw-r--r-- | less/progress-bars.less | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/less/progress-bars.less b/less/progress-bars.less index 5979a3691..3da1f6f17 100644 --- a/less/progress-bars.less +++ b/less/progress-bars.less @@ -7,26 +7,26 @@ // Webkit @-webkit-keyframes progress-bar-stripes { - from { background-position: 0 0; } - to { background-position: 40px 0; } + from { background-position: 40px 0; } + to { background-position: 0 0; } } // Firefox @-moz-keyframes progress-bar-stripes { - from { background-position: 0 0; } - to { background-position: 40px 0; } + from { background-position: 40px 0; } + to { background-position: 0 0; } } // IE9 @-ms-keyframes progress-bar-stripes { - from { background-position: 0 0; } - to { background-position: 40px 0; } + from { background-position: 40px 0; } + to { background-position: 0 0; } } // Spec @keyframes progress-bar-stripes { - from { background-position: 0 0; } - to { background-position: 40px 0; } + from { background-position: 40px 0; } + to { background-position: 0 0; } } |
