From 727d090d5d7c3de5b35c5d5c690d7d2cfb6ee3ad Mon Sep 17 00:00:00 2001 From: mvl22 Date: Tue, 23 Jun 2020 21:23:38 +0100 Subject: [PATCH] In old IE, disable image-based radio buttons, by resetting all properties; refs #2 --- css/widenmypath.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/css/widenmypath.css b/css/widenmypath.css index 05e43bd..9317cd1 100644 --- a/css/widenmypath.css +++ b/css/widenmypath.css @@ -178,11 +178,18 @@ body.about ul.parameters tt {text-decoration: underline;} #legal, #export {font-size: 0.67em;} #export a[target=_blank] {background-image: none; padding: 0;} +/* Batch upload */ +div.graybox p {color: black;} +body main.general div.confirmationmap a {color: black; /* i.e. reset to Leaflet.js style .leaflet-bar a */} /* IE10+ workarounds; see: https://paper-leaf.com/blog/2014/09/targeting-ie-10-11-browsers-css/ */ @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) { #backgroundmap::before {opacity: 1; background-image: none; background-color: #4d0026;} body.home #geocoder input[type="search"] {padding: 0 5px;} + /* Disable image-based radio buttons, by resetting all properties */ + #inputs div.category input {position: static; display: inline; width: auto; height: auto; background: none;} + #inputs div.category label {position: static; top: 0; width: auto; text-align: left;} + #inputs div.category br {display: block;} }