Fix Firefox selecting text in controls on map click/drag

This commit is contained in:
Norbert Renner 2018-07-16 19:03:36 +02:00
parent 9112d0984c
commit 92537cc00d

View file

@ -124,6 +124,13 @@ footer {
/* center error message horizontally */ /* center error message horizontally */
display: flex; display: flex;
justify-content: center; justify-content: center;
/* map click/drag selects text in controls in Firefox because of display flex */
-moz-user-select: none;
}
.leaflet-control-container,
#message .alert {
-moz-user-select: text;
} }
#message { #message {
z-index: 3000; z-index: 3000;