diff options
| author | Mark Otto <[email protected]> | 2012-07-09 00:53:56 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-07-09 00:53:56 -0700 |
| commit | dbea3e27849bc2e2aa5315e02e026872b913691f (patch) | |
| tree | 98c798703d5f840f50cf2575fe1537ef0c546236 /less | |
| parent | 646c87c15185ccad652541523b5774a0148fe9c4 (diff) | |
| download | bootstrap-dbea3e27849bc2e2aa5315e02e026872b913691f.tar.xz bootstrap-dbea3e27849bc2e2aa5315e02e026872b913691f.zip | |
update comments after merging gradient change
Diffstat (limited to 'less')
| -rw-r--r-- | less/mixins.less | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/less/mixins.less b/less/mixins.less index 98a719978..10239b38c 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -403,7 +403,7 @@ background-image: -webkit-gradient(linear, 0 0, 100% 0, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+ background-image: -webkit-linear-gradient(left, @startColor, @endColor); // Safari 5.1+, Chrome 10+ background-image: -o-linear-gradient(left, @startColor, @endColor); // Opera 11.10 - background-image: linear-gradient(to right, @startColor, @endColor); // Le standard, IE10 + background-image: linear-gradient(to right, @startColor, @endColor); // Standard, IE10 background-repeat: repeat-x; filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@startColor),argb(@endColor))); // IE9 and down } @@ -413,7 +413,7 @@ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+ background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+ background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10 - background-image: linear-gradient(to bottom, @startColor, @endColor); // The standard, IE10 + background-image: linear-gradient(to bottom, @startColor, @endColor); // Standard, IE10 background-repeat: repeat-x; filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@startColor),argb(@endColor))); // IE9 and down } @@ -423,7 +423,7 @@ background-image: -moz-linear-gradient(@deg, @startColor, @endColor); // FF 3.6+ background-image: -webkit-linear-gradient(@deg, @startColor, @endColor); // Safari 5.1+, Chrome 10+ background-image: -o-linear-gradient(@deg, @startColor, @endColor); // Opera 11.10 - background-image: linear-gradient(@deg, @startColor, @endColor); // The standard, IE10 + background-image: linear-gradient(@deg, @startColor, @endColor); // Standard, IE10 } .vertical-three-colors(@startColor: #00b3ee, @midColor: #7a43b6, @colorStop: 50%, @endColor: #c3325f) { background-color: mix(@midColor, @endColor, 80%); |
