From c77ca40ccb33b0344c716d730c9ce499c133ee15 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Thu, 8 Oct 2015 12:14:25 +0200 Subject: [PATCH] Use border-box sizing for scale control (fix #3668) Since https://github.com/Leaflet/Leaflet/commit/8a33e94c0e56634a749f378256905e9e23243483 we are not more removing the padding programatically. --- dist/leaflet.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/leaflet.css b/dist/leaflet.css index 346fab99..7cb3a322 100644 --- a/dist/leaflet.css +++ b/dist/leaflet.css @@ -384,8 +384,8 @@ font-size: 11px; white-space: nowrap; overflow: hidden; - -moz-box-sizing: content-box; - box-sizing: content-box; + -moz-box-sizing: border-box; + box-sizing: border-box; background: #fff; background: rgba(255, 255, 255, 0.5);