From bce14074ae6690ecbcf0efc045508a46fc089393 Mon Sep 17 00:00:00 2001 From: OSHistory Date: Mon, 31 Jan 2022 13:09:08 +0100 Subject: [PATCH] fix: fix casing for z-index The CSS-property z-index had some faulty casings. Only occurs in src/ol/ol.css --- src/ol/ol.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ol/ol.css b/src/ol/ol.css index 015650d64d..18ad4ac1d3 100644 --- a/src/ol/ol.css +++ b/src/ol/ol.css @@ -39,13 +39,13 @@ height: 15px; background-color: #000000; float: right; - z-Index: 10; + z-index: 10; } .ol-scale-step-text { position: absolute; bottom: -5px; font-size: 12px; - z-Index: 11; + z-index: 11; color: #000000; text-shadow: -2px 0 #FFFFFF, 0 2px #FFFFFF, 2px 0 #FFFFFF, 0 -2px #FFFFFF; } @@ -60,7 +60,7 @@ .ol-scale-singlebar { position: relative; height: 10px; - z-Index: 9; + z-index: 9; box-sizing: border-box; border: 1px solid black; }