From 4bf9af9c82c1433e5e4bacbe771c8e4b7c569ce0 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Sun, 14 Dec 2014 16:53:58 +0100 Subject: [PATCH] iOS does not support unprefixed "transform" --- wcfsetup/install/files/style/dropdown.less | 3 ++- wcfsetup/install/files/style/imageViewer.less | 1 + wcfsetup/install/files/style/user.less | 3 ++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/wcfsetup/install/files/style/dropdown.less b/wcfsetup/install/files/style/dropdown.less index b96fc372c3..65b16450c1 100644 --- a/wcfsetup/install/files/style/dropdown.less +++ b/wcfsetup/install/files/style/dropdown.less @@ -376,8 +376,9 @@ right: (@wcfGapSmall + @wcfGapTiny); top: 50%; - -ms-transform: translateY(-50%); transform: translateY(-50%); + -ms-transform: translateY(-50%); + -webkit-transform: translateY(-50%); .transition(opacity, .3s, linear); } diff --git a/wcfsetup/install/files/style/imageViewer.less b/wcfsetup/install/files/style/imageViewer.less index 7d4cd5aa4d..ebbf9ea40a 100644 --- a/wcfsetup/install/files/style/imageViewer.less +++ b/wcfsetup/install/files/style/imageViewer.less @@ -230,6 +230,7 @@ transform: translateX(-50%); -ms-transform: translateX(-50%); + -webkit-transform: translateX(-50%); > span { font-size: 32px; diff --git a/wcfsetup/install/files/style/user.less b/wcfsetup/install/files/style/user.less index 996026d5b0..db3cd43a0a 100644 --- a/wcfsetup/install/files/style/user.less +++ b/wcfsetup/install/files/style/user.less @@ -333,8 +333,9 @@ right: @wcfGapLarge; top: 50%; - -ms-transform: translateY(-50%); transform: translateY(-50%); + -ms-transform: translateY(-50%); + -webkit-transform: translateY(-50%); .transition(opacity, .3s, linear); } -- 2.20.1