From: Marcel Werk Date: Mon, 2 Apr 2012 20:41:29 +0000 (+0200) Subject: Disabled box shadows for opera :( X-Git-Tag: 2.0.0_Beta_1~1172 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=99143e91115b6a6d85104dcb7407b6e39beac9e6;p=GitHub%2FWoltLab%2FWCF.git Disabled box shadows for opera :( --- diff --git a/wcfsetup/install/files/style/message.less b/wcfsetup/install/files/style/message.less index 7b92719c1f..4527e68766 100644 --- a/wcfsetup/install/files/style/message.less +++ b/wcfsetup/install/files/style/message.less @@ -3,7 +3,7 @@ border: 1px solid @wcfContainerBorderColor; position: relative; - .boxShadow(0, 0, #eee, 7px); + //.boxShadow(0, 0, #eee, 7px); .borderRadius(); &:after { diff --git a/wcfsetup/install/files/style/mixins.less b/wcfsetup/install/files/style/mixins.less index a98c4abe40..9ea461bcb8 100644 --- a/wcfsetup/install/files/style/mixins.less +++ b/wcfsetup/install/files/style/mixins.less @@ -68,24 +68,24 @@ -webkit-box-shadow: @topOffset @leftOffset @blurriness @shadowHeight @color; -moz-box-shadow: @topOffset @leftOffset @blurriness @shadowHeight @color; -ms-box-shadow: @topOffset @leftOffset @blurriness @shadowHeight @color; - -o-box-shadow: @topOffset @leftOffset @blurriness @shadowHeight @color; - box-shadow: @topOffset @leftOffset @blurriness @shadowHeight @color; +// -o-box-shadow: @topOffset @leftOffset @blurriness @shadowHeight @color; +// box-shadow: @topOffset @leftOffset @blurriness @shadowHeight @color; } .boxShadowInset(@topOffset, @leftOffset, @color, @blurriness: 5px, @shadowHeight: 0) { -webkit-box-shadow: inset @topOffset @leftOffset @blurriness @shadowHeight @color; -moz-box-shadow: inset @topOffset @leftOffset @blurriness @shadowHeight @color; -ms-box-shadow: inset @topOffset @leftOffset @blurriness @shadowHeight @color; - -o-box-shadow: inset @topOffset @leftOffset @blurriness @shadowHeight @color; - box-shadow: inset @topOffset @leftOffset @blurriness @shadowHeight @color; +// -o-box-shadow: inset @topOffset @leftOffset @blurriness @shadowHeight @color; +// box-shadow: inset @topOffset @leftOffset @blurriness @shadowHeight @color; } .boxShadowNative(@parameters) { -webkit-box-shadow: @parameters; -moz-box-shadow: @parameters; -ms-box-shadow: @parameters; - -o-box-shadow: @parameters; - box-shadow: @parameters; +// -o-box-shadow: @parameters; +// box-shadow: @parameters; } .borderRadius(@borderRadius: @wcfContainerBorderRadius) {