summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/mixins.scss
diff options
context:
space:
mode:
authorConnor Shea <connor.james.shea@gmail.com>2016-05-30 18:53:07 -0600
committerConnor Shea <connor.james.shea@gmail.com>2016-05-30 18:53:07 -0600
commitccb20c1622b30eeec5951bbe6431a3df53dfe7ed (patch)
treef3b08203a0d308ff21ffa42107e25ea3e8225f9a /app/assets/stylesheets/framework/mixins.scss
parentde20bd5b31715f096db3fb0155c82b0eea992b6c (diff)
downloadgitlab-ce-ccb20c1622b30eeec5951bbe6431a3df53dfe7ed.tar.gz
Remove unnecessary vendor prefixes for browsers we no longer support.
Diffstat (limited to 'app/assets/stylesheets/framework/mixins.scss')
-rw-r--r--app/assets/stylesheets/framework/mixins.scss8
1 files changed, 0 insertions, 8 deletions
diff --git a/app/assets/stylesheets/framework/mixins.scss b/app/assets/stylesheets/framework/mixins.scss
index 250d6309291..828e7224231 100644
--- a/app/assets/stylesheets/framework/mixins.scss
+++ b/app/assets/stylesheets/framework/mixins.scss
@@ -2,18 +2,10 @@
* Generic mixins
*/
@mixin box-shadow($shadow) {
- -webkit-box-shadow: $shadow;
- -moz-box-shadow: $shadow;
- -ms-box-shadow: $shadow;
- -o-box-shadow: $shadow;
box-shadow: $shadow;
}
@mixin border-radius($radius) {
- -webkit-border-radius: $radius;
- -moz-border-radius: $radius;
- -ms-border-radius: $radius;
- -o-border-radius: $radius;
border-radius: $radius;
}