From: Abdullah Salem Date: Tue, 31 May 2016 21:00:20 +0000 (+0300) Subject: Fixed the progress-bar black border in IE and Edge X-Git-Tag: v6.2.4-rc1~67^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F8874%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fixed the progress-bar black border in IE and Edge --- 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; + } } }