Skip to content

Commit 73fb9a1

Browse files
author
Florian Kissling
committed
Fix indention to match Select2's (and Bootstrap Sass') style.
1 parent a9beac8 commit 73fb9a1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/scss/mixins/_gradients.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
// Creates two color stops, start and end, by specifying a color and position for each color stop.
66
// Color stops are not available in IE9 and below.
77
@mixin gradient-vertical($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
8-
background-image: -webkit-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // Safari 5.1-6, Chrome 10+
9-
background-image: -o-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // Opera 12
10-
background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
11-
background-repeat: repeat-x;
12-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down
8+
background-image: -webkit-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // Safari 5.1-6, Chrome 10+
9+
background-image: -o-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // Opera 12
10+
background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
11+
background-repeat: repeat-x;
12+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down
1313
}

0 commit comments

Comments
 (0)