diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-04-10 04:19:17 +0300 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-04-10 04:19:17 +0300 |
| commit | 48dc9fa7f62201d3a137e829d09d251c07559b85 (patch) | |
| tree | 1d1bbf7a823db2efb81700d5b2a06acae3abae30 /res/client/css/modules | |
| parent | 84e5a154bb47882cac7f4bfd21e91a4ecdc408ef (diff) | |
mixins.scss: rm browser specific directives
Diffstat (limited to 'res/client/css/modules')
| -rw-r--r-- | res/client/css/modules/mixins.scss | 16 |
1 files changed, 4 insertions, 12 deletions
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 |
