Does anyone know how to remove the blue focus border that appears when clicking on an embedded Google Map?
I've tried various CSS styles without success:
*:focus {
outline: none !important;
border: none !important;
}
iframe {
outline: none !important;
border: none !important;
}
iframe:focus {
outline: none !important;
border: none !important;
}
#gmap_canvas:focus {
outline: none !important;
border: none !important;
}
.mapouter:focus {
outline: none !important;
border: none !important;
}