diff options
author | Lorenzo Tilve <ltilve@igalia.com> | 2021-05-04 14:37:52 +0200 |
---|---|---|
committer | Lorenzo Tilve <ltilve@igalia.com> | 2021-05-04 14:37:52 +0200 |
commit | 086f40bce2b1b1ce8e62436a6f909f93b85a0d17 (patch) | |
tree | 323982156ef15e74e6ecf3590d9919db9c1083bd /src | |
parent | a5004048d9a28f83e9fe97d26a40ad020ddff6a1 (diff) |
Disable dragging and zoom events on app imagesmarlin_12.93.0marlin_12.92.0marlin_12.91.0marlin_12.90.1marlin_12.90.0marlin/12.93.0marlin/12.92.0marlin/12.91.0marlin/12.90.1marlin/12.90.0lamprey_11.92.0lamprey_11.91.0lamprey/11.92.0lamprey/11.91.012.93.012.92.012.91.012.90.112.90.011.92.011.91.0
Events triggered by webapps on those actions were producing
some race conditions eventually causing a freeze.
So disabling those and hiding displaying draggable link.
Bug-AGL: SPEC-3786
Signed-off-by: Lorenzo Tilve <ltilve@igalia.com>
Change-Id: Idaeb49143c98373b94be019974694f19f67ccb53
Diffstat (limited to 'src')
-rw-r--r-- | src/styles/main.scss | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/styles/main.scss b/src/styles/main.scss index e5e81f5..b33abd1 100644 --- a/src/styles/main.scss +++ b/src/styles/main.scss @@ -6,6 +6,13 @@ html { height: 100%; background-size: cover; -webkit-overflow-scrolling: touch; + user-select: none; +} + +img { + user-select: none !important; + touch-action: none; + pointer-events: none; } body { @@ -24,4 +31,4 @@ body { background: white; font-size: 1.5rem; } -}
\ No newline at end of file +} |