Merge pull request #13131 from ahocevar/unset-canvas

Unset canvas css in stylesheet
This commit is contained in:
Andreas Hocevar
2021-12-20 13:48:46 +01:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -27,7 +27,6 @@ export function createCanvasContext2D(
canvas = new OffscreenCanvas(opt_width || 300, opt_height || 300);
} else {
canvas = document.createElement('canvas');
canvas.style.all = 'unset';
}
if (opt_width) {
canvas.width = opt_width;

View File

@@ -76,6 +76,9 @@
user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.ol-viewport canvas {
all: unset;
}
.ol-selectable {
-webkit-touch-callout: default;
-webkit-user-select: text;