diff options
author | J.M <me@mynetx.net> | 2013-11-02 23:19:35 +0100 |
---|---|---|
committer | J.M <me@mynetx.net> | 2013-11-02 23:19:35 +0100 |
commit | 68da4154af6c7ca782f5cac2cebafb355b925b0c (patch) | |
tree | 76b0dcf48997c11609111641d165165f04d9ce63 /app/assets/stylesheets/gitlab_bootstrap/mixins.scss | |
parent | 4c47a89fa5db6ccfcc9ae21fbfd7bb94b427b313 (diff) | |
download | gitlab-ce-68da4154af6c7ca782f5cac2cebafb355b925b0c.tar.gz |
Support -ms-linear-gradient style for IE10+
Diffstat (limited to 'app/assets/stylesheets/gitlab_bootstrap/mixins.scss')
-rw-r--r-- | app/assets/stylesheets/gitlab_bootstrap/mixins.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/gitlab_bootstrap/mixins.scss b/app/assets/stylesheets/gitlab_bootstrap/mixins.scss index 8b975a12cf7..edb086989c5 100644 --- a/app/assets/stylesheets/gitlab_bootstrap/mixins.scss +++ b/app/assets/stylesheets/gitlab_bootstrap/mixins.scss @@ -25,6 +25,7 @@ background-image: -webkit-gradient(linear, 0 0, 0 100%, from($from), to($to)); background-image: -webkit-linear-gradient($from, $to); background-image: -moz-linear-gradient($from, $to); + background-image: -ms-linear-gradient($from, $to); background-image: -o-linear-gradient($from, $to); } @@ -45,6 +46,7 @@ background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #f5f5f5), to(#e1e1e1)); background-image: -webkit-linear-gradient(#f5f5f5 6.6%, #e1e1e1); background-image: -moz-linear-gradient(#f5f5f5 6.6%, #e1e1e1); + background-image: -ms-linear-gradient(#f5f5f5 6.6%, #e1e1e1); background-image: -o-linear-gradient(#f5f5f5 6.6%, #e1e1e1); } @@ -53,6 +55,7 @@ background-image: -webkit-gradient(linear, 0 0, 0 30, color-stop(0.066, #eee), to(#dfdfdf)); background-image: -webkit-linear-gradient(#eee 6.6%, #dfdfdf); background-image: -moz-linear-gradient(#eee 6.6%, #dfdfdf); + background-image: -ms-linear-gradient(#eee 6.6%, #dfdfdf); background-image: -o-linear-gradient(#eee 6.6%, #dfdfdf); } @@ -60,6 +63,7 @@ background: #eee; background-image: -webkit-linear-gradient(#e9e9e9, #d7d7d7); background-image: -moz-linear-gradient(#e9e9e9, #d7d7d7); + background-image: -ms-linear-gradient(#e9e9e9, #d7d7d7); background-image: -o-linear-gradient(#e9e9e9, #d7d7d7); } |