From 48dc9fa7f62201d3a137e829d09d251c07559b85 Mon Sep 17 00:00:00 2001 From: LV-426 Date: Fri, 10 Apr 2015 04:19:17 +0300 Subject: mixins.scss: rm browser specific directives --- res/client/css/modules/mixins.scss | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'res/client/css/modules') diff --git a/res/client/css/modules/mixins.scss b/res/client/css/modules/mixins.scss index 10ff7454..e449b836 100644 --- a/res/client/css/modules/mixins.scss +++ b/res/client/css/modules/mixins.scss @@ -1,23 +1,15 @@ @mixin rz-box-shadow($offset-x, $offset-y, $blur, $spread, $color) { - -webkit-box-shadow: $offset-x $offset-y $blur $spread $color; - -moz-box-shadow: $offset-x $offset-y $blur $spread $color; - box-shadow: $offset-x $offset-y $blur $spread $color; + box-shadow: $offset-x $offset-y $blur $spread $color; } @mixin rz-inset-box-shadow($offset-x, $offset-y, $blur, $color) { - -webkit-box-shadow: inset $offset-x $offset-y $blur $color; - -moz-box-shadow: inset $offset-x $offset-y $blur $color; - box-shadow: inset $offset-x $offset-y $blur $color; + box-shadow: inset $offset-x $offset-y $blur $color; } @mixin rz-box-sizing-border() { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; + box-sizing: border-box; } @mixin rz-box-sizing-padding() { - -webkit-box-sizing: padding-box; - -moz-box-sizing: padding-box; - box-sizing: padding-box; + box-sizing: padding-box; } \ No newline at end of file -- cgit v1.3.1