From: Vincent Vanwaelscappel Date: Fri, 6 Oct 2017 14:00:43 +0000 (+0200) Subject: fix #1442 @2 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=632a66ddb18cc78145b541d5dc166a58663a98f2;p=fluidbook-html5.git fix #1442 @2 --- diff --git a/images/cursors/zoom-in.cur b/images/cursors/zoom-in.cur new file mode 100644 index 00000000..d83628a0 Binary files /dev/null and b/images/cursors/zoom-in.cur differ diff --git a/images/cursors/zoom-out.cur b/images/cursors/zoom-out.cur new file mode 100644 index 00000000..f09ec129 Binary files /dev/null and b/images/cursors/zoom-out.cur differ diff --git a/style/fluidbook.less b/style/fluidbook.less index c269e533..9252c7b3 100644 --- a/style/fluidbook.less +++ b/style/fluidbook.less @@ -188,14 +188,28 @@ body, html { /* Desktop devices */ -.desktop { - #links { - cursor: zoom-in; - +.msie { + &.desktop { + #links { + cursor: url(./images/cursors/zoom-in.cur), auto; + } + .zoomed { + #links { + cursor: url(./images/cursors/zoom-out.cur), auto; + } + } } - .zoomed { +} + +&.no-msie { + &.desktop { #links { - cursor: zoom-out; + cursor: zoom-in; + } + .zoomed { + #links { + cursor: zoom-out; + } } } }