From 8105f172af3c2dee8c8c871eaee6f6a1233017f6 Mon Sep 17 00:00:00 2001 From: Philipp Schaefer Date: Thu, 12 Sep 2013 17:14:17 +0200 Subject: [PATCH] force leaflet popup msg color to black on mobile (fix for #548) --- mobile/smartphone.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mobile/smartphone.css b/mobile/smartphone.css index 5f8e4b86..a31beb0d 100644 --- a/mobile/smartphone.css +++ b/mobile/smartphone.css @@ -190,3 +190,11 @@ body { top:0px !important; left:0px !important; } + +/* + * for some reason leaflet popups on mobile are colored white on white + * so force the popup msg color to black + */ +.leaflet-popup-content{ + color:black; +}