diff options
| author | dokgeppo <42029750+dokgeppo@users.noreply.github.com> | 2020-10-26 08:35:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-26 08:35:55 +0100 |
| commit | 6014fd89b3391d72c2e35cb1c6caaed059a51b41 (patch) | |
| tree | 9a9e68e3c47c526961320ed5b8855492bfb748c3 | |
| parent | b2717c7532cd35ab9e80c92c6b9f070e62e7ae88 (diff) | |
Fixed #32138 -- Prevented admin's map from covering other widgets.
| -rw-r--r-- | django/contrib/gis/templates/gis/admin/openlayers.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/gis/templates/gis/admin/openlayers.html b/django/contrib/gis/templates/gis/admin/openlayers.html index 5d565f0d71..64eef66c12 100644 --- a/django/contrib/gis/templates/gis/admin/openlayers.html +++ b/django/contrib/gis/templates/gis/admin/openlayers.html @@ -3,7 +3,7 @@ <style type="text/css"> #{{ id }}_map { width: {{ map_width }}px; height: {{ map_height }}px; } #{{ id }}_map .aligned label { float:inherit; } - #{{ id }}_admin_map { position: relative; vertical-align: top; float: {{ LANGUAGE_BIDI|yesno:"right,left" }}; } + #{{ id }}_admin_map { position: relative; vertical-align: top; z-index: 0; float: {{ LANGUAGE_BIDI|yesno:"right,left" }}; } {% if not display_wkt %}#{{ id }} { display: none; }{% endif %} .olControlEditingToolbar .olControlModifyFeatureItemActive { background-image: url("{% static "admin/img/gis/move_vertex_on.svg" %}"); |
