From 79aa71911c05756cbe264a01e5945fda6233c295 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Mon, 20 May 2013 03:58:29 +0100 Subject: [PATCH] add two-column layer menu css to desktop version - was on mobile before in-app layer chooser added --- style.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/style.css b/style.css index 3d065b86..d41ae45a 100644 --- a/style.css +++ b/style.css @@ -101,6 +101,27 @@ a:hover { cursor: help; } + +/* base layer selection - first column */ +.leaflet-control-layers-base { + float: left; +} + +/* overlays layer selection - 2nd column */ +.leaflet-control-layers-overlays { + float: left; + margin-left: 8px; + border-left: 1px solid #DDDDDD; + padding-left: 8px; +} + +/* hide the usual seperator */ +.leaflet-control-layers-separator { + display: none; +} + + + .help { cursor: help; }