aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-06-25 20:20:32 -0700
committerMark Otto <[email protected]>2012-06-25 20:20:32 -0700
commit244a9ab79d13a88b8bb5ef59665a82088edd62d9 (patch)
treebc4ce6a8de57b7b0e98967a6e9c22769ba40574a /less
parenta85499749a2baf10dcb5192c2cc152cfd5ac463e (diff)
downloadbootstrap-244a9ab79d13a88b8bb5ef59665a82088edd62d9.tar.xz
bootstrap-244a9ab79d13a88b8bb5ef59665a82088edd62d9.zip
reverse the gradient on striped progress bars so it matches the active state when animated
Diffstat (limited to 'less')
-rw-r--r--less/mixins.less2
1 files changed, 1 insertions, 1 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 2b0baa913..e1e06bd2a 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -440,7 +440,7 @@
background-image: -o-radial-gradient(circle, @innerColor, @outerColor);
background-repeat: no-repeat;
}
- .striped(@color, @angle: -45deg) {
+ .striped(@color, @angle: 45deg) {
background-color: @color;
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,.15)), color-stop(.75, rgba(255,255,255,.15)), color-stop(.75, transparent), to(transparent));
background-image: -webkit-linear-gradient(@angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);