diff options
author | Jouni Koivuviita <jouni@vaadin.com> | 2014-06-26 12:34:12 +0300 |
---|---|---|
committer | Jouni Koivuviita <jouni@vaadin.com> | 2014-06-26 12:34:12 +0300 |
commit | b20adbbded1f0b04dcbc7074b166339eb884dcc1 (patch) | |
tree | 2e3c0c52504637bfd583faf8bb75642f19b8432f /WebContent/VAADIN/themes/valo/components/_checkbox.scss | |
parent | 6327a7ea520aa314fc416d2ba94ab99d0e27dcab (diff) | |
download | vaadin-framework-b20adbbded1f0b04dcbc7074b166339eb884dcc1.tar.gz vaadin-framework-b20adbbded1f0b04dcbc7074b166339eb884dcc1.zip |
box-shadow should have -webkit prefix (#14093)
Mass find-and-replace, tested to work as before in Chrome, and that the
output now includes box -webkit-box-shadow as well as box-shadow.
Bourbon needed to be imported before the css3 utils, so that the
box-shadow mixin can be overridden (Bourbon prints a warning as it has
already deprecated box-shadow prefixes).
Change-Id: I6b4f2047a6d8bfb74f2dbf999d10f7e00005e794
Diffstat (limited to 'WebContent/VAADIN/themes/valo/components/_checkbox.scss')
-rw-r--r-- | WebContent/VAADIN/themes/valo/components/_checkbox.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebContent/VAADIN/themes/valo/components/_checkbox.scss b/WebContent/VAADIN/themes/valo/components/_checkbox.scss index 9dfe2984a0..0ee703c372 100644 --- a/WebContent/VAADIN/themes/valo/components/_checkbox.scss +++ b/WebContent/VAADIN/themes/valo/components/_checkbox.scss @@ -44,7 +44,7 @@ &:focus ~ label:before { @include valo-button-focus-style($background-color: $background-color, $border-fallback: null, $include-box-shadow: false); - box-shadow: valo-bevel-and-shadow($background-color: $background-color, $bevel: $v-bevel, $shadow: $v-shadow, $gradient: $v-gradient, $include-focus: true); + @include box-shadow(valo-bevel-and-shadow($background-color: $background-color, $bevel: $v-bevel, $shadow: $v-shadow, $gradient: $v-gradient, $include-focus: true)); } & ~ label:before, |