From f320ecee84333d2dd21e8f062dd8287ef56676e0 Mon Sep 17 00:00:00 2001 From: Quy Date: Thu, 29 Dec 2016 09:25:06 -0800 Subject: [PATCH] Drop IE9 comment --- scss/mixins/_gradients.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/scss/mixins/_gradients.scss b/scss/mixins/_gradients.scss index ebe797aa70..8bfd97c4d8 100644 --- a/scss/mixins/_gradients.scss +++ b/scss/mixins/_gradients.scss @@ -11,7 +11,6 @@ // Vertical gradient, from top to bottom // // Creates two color stops, start and end, by specifying a color and position for each color stop. -// Color stops are not available in IE9. @mixin gradient-y($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) { background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent); background-repeat: repeat-x;