]> git.openstreetmap.org Git - rails.git/commitdiff
Always set z-index of embedded maps
authorAnton Khorev <tony29@yandex.ru>
Mon, 8 Jul 2024 16:32:51 +0000 (19:32 +0300)
committerAnton Khorev <tony29@yandex.ru>
Mon, 8 Jul 2024 16:32:51 +0000 (19:32 +0300)
app/views/dashboards/show.html.erb
app/views/diary_entries/_form.html.erb
app/views/profiles/edit.html.erb

index d3e6dbcb3eb1153df59ec35369965f97688cfd62..a65597fefc4b732b7a80e60af4fd0d46ed29228d 100644 (file)
@@ -19,7 +19,7 @@
              :icon => image_path("marker-red.png"),
              :description => render(:partial => "popup", :object => current_user, :locals => { :type => "your location" })
            } %>
-        <%= tag.div "", :id => "map", :class => "content_map border border-secondary-subtle rounded", :data => { :user => user_data } %>
+        <%= tag.div "", :id => "map", :class => "content_map border border-secondary-subtle rounded z-0", :data => { :user => user_data } %>
       <% end %>
 
       <% friends = @user.friends %>
index 291e8e33b647955d0d999f6f39b9c551b667638b..a449b0d39c843d6e11267371b6a4eebf3febf0b8 100644 (file)
@@ -5,7 +5,7 @@
 <fieldset>
   <legend><%= t ".location" -%></legend>
 
-  <%= tag.div "", :id => "map", :class => "border border-secondary-subtle rounded mb-3", :data => { :lat => @lat, :lon => @lon, :zoom => @zoom } %>
+  <%= tag.div "", :id => "map", :class => "border border-secondary-subtle rounded mb-3 z-0", :data => { :lat => @lat, :lon => @lon, :zoom => @zoom } %>
 
   <div class="row mb-3">
     <%= f.text_field :latitude, :wrapper_class => "col-sm-4 d-flex flex-column", :class => "mt-auto", :id => "latitude" %>
index fea15eb2fa4913628e0f23d57bf14f945e36ea32..ac76b4d2d532711fc0f39e09e27c35b16ee70b1c 100644 (file)
@@ -56,7 +56,7 @@
       <input class="form-check-input" type="checkbox" name="updatehome" value="1" <% unless current_user.home_location? %> checked <% end %> id="updatehome" />
       <label class="form-check-label" for="updatehome"><%= t ".update home location on click" %></label>
     </div>
-    <%= tag.div "", :id => "map", :class => "content_map set_location border border-secondary-subtle rounded" %>
+    <%= tag.div "", :id => "map", :class => "content_map set_location border border-secondary-subtle rounded z-0" %>
   </fieldset>
 
   <%= f.primary t(".save") %>