From ad5cd8400869c5e2de634f10beabb64b2efb3116 Mon Sep 17 00:00:00 2001 From: Abdullah Salem Date: Wed, 1 Jun 2016 00:00:20 +0300 Subject: [PATCH] Fixed the progress-bar black border in IE and Edge --- scss/forms/_progress.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scss/forms/_progress.scss b/scss/forms/_progress.scss index e6811bc4c..d157a33aa 100644 --- a/scss/forms/_progress.scss +++ b/scss/forms/_progress.scss @@ -81,5 +81,14 @@ $progress-radius: $global-radius !default; } } } + + // For IE and Edge + &::-ms-fill{ + @if hasvalue($progress-radius) { + border-radius: $progress-radius; + } + + border: 0; + } } } -- 2.47.2