From 9486c14842918db58fe10b32fde15e2bc28156ed Mon Sep 17 00:00:00 2001 From: James Wilson Date: Wed, 29 Mar 2017 17:35:54 -0500 Subject: [PATCH] Fix image sizing on retina displays --- public_html/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/public_html/style.css b/public_html/style.css index 9121863..277925a 100644 --- a/public_html/style.css +++ b/public_html/style.css @@ -53,10 +53,12 @@ html, body { #toggle_sidebar_button.show_sidebar { background-image: url("images/table-icon.png"); + background-size: cover; } #toggle_sidebar_button.hide_sidebar { background-image: url("images/map-icon.png"); + background-size: cover; } #expand_sidebar_control { @@ -80,6 +82,7 @@ html, body { #expand_sidebar_button { background-image: url("images/table-icon.png"); + background-size: cover; } #sidebar_container { @@ -104,10 +107,12 @@ html, body { background-color: transparent; border: none; background-image: url("images/column-adjust.png"); + background-size: cover; } .ol-zoom-in { background-image: url("images/zoom-in.png"); + background-size: cover; color:transparent !important; width: 19px !important; height: 19px !important; @@ -117,6 +122,7 @@ html, body { .ol-zoom-out { background-image: url("images/zoom-out.png"); + background-size: cover; color:transparent !important; width: 19px !important; height: 19px !important; @@ -610,6 +616,7 @@ select.error, textarea.error, input.error { right: 8px; top: 8px; background-image: url('images/close-settings.png'); + background-size: cover; width: 20px; height: 20px; cursor: pointer;