From c1c652f448e456ecf658c5a1d57e9cd6bca79bb3 Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Fri, 21 Oct 2022 18:52:08 +0200 Subject: [PATCH] Make minor changes to site.css Made minor changes - added unit px to non-zero length in background-position (sidenote: 0px lengths inconsistently have a unit added to them in this document) - changed font-variant with value bold (invalid value) to font-weight, assuming font-variant: small-caps; is not desirable here. - changed display: hidden; (invalid value) to display: none, assuming zoom buttons should remain hidden on small screens. --- css/site.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/css/site.css b/css/site.css index ad196278..9efc4139 100644 --- a/css/site.css +++ b/css/site.css @@ -408,7 +408,7 @@ .osrm-turn-left-icon { background-position: -120px 0; } .osrm-bear-left-icon { background-position: -140px 0; } .osrm-depart-icon { - background-position: -160px -1; + background-position: -160px -1px; background-color: #87DE9F; } .osrm-enter-roundabout-icon { background-position: -180px 0; } @@ -558,7 +558,7 @@ width: 20px; height: 20px; font-family: Arial; - font-variant: bold; + font-weight: bold; font-size: 20px; color: #fff; } @@ -767,7 +767,7 @@ td.distance { margin-bottom: 0px; } .leaflet-control-zoom { - display: hidden; + display: none; } }