From 37aa73b88961f6188d6608dd32eee32080d6c409 Mon Sep 17 00:00:00 2001 From: Ofer Lehr Date: Fri, 5 Dec 2014 23:40:06 +0200 Subject: fixes #182 Also started using mixins for browser prefixes - box shadow and box sizing --- res/css/modules/mixins.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'res/css/modules') diff --git a/res/css/modules/mixins.scss b/res/css/modules/mixins.scss index e69de29b..9afcbe80 100644 --- a/res/css/modules/mixins.scss +++ b/res/css/modules/mixins.scss @@ -0,0 +1,11 @@ +@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; +} + +@mixin rz-box-sizing-border() { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} \ No newline at end of file -- cgit v1.3.1