summaryrefslogtreecommitdiff
path: root/res/client/css/modules
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-04-10 04:19:17 +0300
committerLV-426 <lv-426@taproot.org.il>2015-04-10 04:19:17 +0300
commit48dc9fa7f62201d3a137e829d09d251c07559b85 (patch)
tree1d1bbf7a823db2efb81700d5b2a06acae3abae30 /res/client/css/modules
parent84e5a154bb47882cac7f4bfd21e91a4ecdc408ef (diff)
mixins.scss: rm browser specific directives
Diffstat (limited to 'res/client/css/modules')
-rw-r--r--res/client/css/modules/mixins.scss16
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