]> git.openstreetmap.org Git - rails.git/commitdiff
Update diary edit form styling
authorAnton Khorev <tony29@yandex.ru>
Tue, 8 Aug 2023 15:43:41 +0000 (18:43 +0300)
committerAnton Khorev <tony29@yandex.ru>
Fri, 11 Aug 2023 22:40:32 +0000 (01:40 +0300)
app/assets/stylesheets/common.scss
app/views/diary_entries/_form.html.erb

index 7b3bfde368191ad0d30113226152f2489f8c59c6..5b15fcc5d31cdbfd7cd604d8211b7d5542c5ca83 100644 (file)
@@ -1053,7 +1053,6 @@ tr.turn:hover {
   #map {
     height: 400px;
     display: none;
-    margin-bottom: $lineheight;
   }
   .comments {
     max-width: 740px;
index e07971089f620101ea75fc40e7d4d7f5c1d7f849..bfb1c1823dfa2c8a2cc567dfb975db7a413e2731 100644 (file)
@@ -5,13 +5,13 @@
 <fieldset>
   <legend><%= t ".location" -%></legend>
 
-  <%= tag.div "", :id => "map", :class => "border border-grey rounded", :data => { :lat => @lat, :lon => @lon, :zoom => @zoom } %>
+  <%= tag.div "", :id => "map", :class => "border border-grey rounded mb-3", :data => { :lat => @lat, :lon => @lon, :zoom => @zoom } %>
 
   <div class="row mb-3">
     <%= f.text_field :latitude, :wrapper_class => "col-sm-4", :id => "latitude" %>
     <%= f.text_field :longitude, :wrapper_class => "col-sm-4", :id => "longitude" %>
-    <div class="col-sm-4">
-      <label><a href="#" id="usemap"><%= t ".use_map_link" -%></a></label>
+    <div class="col-sm-4 align-self-end pt-2">
+      <button type="button" id="usemap" class="btn btn-outline-primary"><%= t ".use_map_link" -%></button>
     </div>
   </div>
 </fieldset>