From d66cbcecc4130cbe59bbd45e968d0f17430be732 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 27 Apr 2016 09:31:53 +0000 Subject: [PATCH] #fluidbook-workshop : fix non interactive anims prevent zoom @0:05 --- style/fluidbook.css | 4 ++++ style/fluidbook.less | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/style/fluidbook.css b/style/fluidbook.css index 15b7f7ac..e5d81675 100644 --- a/style/fluidbook.css +++ b/style/fluidbook.css @@ -548,9 +548,13 @@ header.hidden, position: absolute; z-index: 1 !important; } +.link.multimedia.notinteractive { + pointer-events: none; +} .link.contentLink { z-index: 0 !important; position: absolute; + pointer-events: none; } .link a { width: 100%; diff --git a/style/fluidbook.less b/style/fluidbook.less index b930ceb8..51f56343 100644 --- a/style/fluidbook.less +++ b/style/fluidbook.less @@ -625,11 +625,15 @@ footer.hidden, header.hidden, #interface.hidden { .link.multimedia { position: absolute; z-index: 1 !important; + &.notinteractive { + pointer-events: none; + } } .link.contentLink { z-index: 0 !important; position: absolute; + pointer-events: none; } .link a { -- 2.39.5