diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-06-28 12:58:33 +0200 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2014-06-28 12:58:33 +0200 |
commit | 213c8d13541f3ac4c68098a6528d1bdcc716ab32 (patch) | |
tree | b6cd953d4f2f814aab3ab13838ae222a045cba95 /css | |
parent | 7e8fd09376a75ac793bbea4efff30d5056fea559 (diff) | |
download | fosdem-2018-presentation-213c8d13541f3ac4c68098a6528d1bdcc716ab32.tar fosdem-2018-presentation-213c8d13541f3ac4c68098a6528d1bdcc716ab32.tar.gz |
fix double-navigation on touch for some android systems
Diffstat (limited to 'css')
-rw-r--r-- | css/reveal.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/css/reveal.css b/css/reveal.css index 54106e5..20d1405 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -248,6 +248,8 @@ body { z-index: 30; right: 10px; bottom: 10px; + + -webkit-user-select: none; } .reveal .controls div { @@ -258,6 +260,7 @@ body { border: 12px solid transparent; -moz-transform: scale(.9999); + -webkit-tap-highlight-color: rgba( 0, 0, 0, 0 ); -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; |