From 7152cdc87f413dcdbcd9f79cc0d976d12c25a9d6 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Sat, 25 Oct 2014 23:37:20 -0600 Subject: [PATCH] Guard against Bootstrap's max-width setting Bootstrap sets both the max-width and max-height of all image elements to 100%. When attributions are removed from their containing element, this causes logos to shrink. --- css/ol.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/ol.css b/css/ol.css index ae7397c844..3ead609e85 100644 --- a/css/ol.css +++ b/css/ol.css @@ -217,6 +217,7 @@ button.ol-full-screen-true:after { } .ol-attribution img { max-height: 2em; + max-width: inherit; } .ol-attribution ul, .ol-attribution button { display: inline-block;