]> git.openstreetmap.org Git - rails.git/commitdiff
Reposition the note and user report flags
authorAndy Allan <git@gravitystorm.co.uk>
Wed, 28 Feb 2018 07:43:22 +0000 (15:43 +0800)
committerAndy Allan <git@gravitystorm.co.uk>
Wed, 28 Feb 2018 07:43:22 +0000 (15:43 +0800)
app/assets/stylesheets/common.scss
app/views/browse/note.html.erb
app/views/user/view.html.erb

index f1fdc136b502f632a2ba0b82501e35b33c09d243..f647302fba81101828872b4860f1759d5a84c1fa 100644 (file)
@@ -2838,10 +2838,6 @@ input.richtext_title[type="text"] {
   width:475px;
 }
 
-.report-button {
-  float:right;
-}
-
 .report-disclaimer {
   background: #fff1f0;
   color: #d85030;
index 723f9d1977e777fdd7fc225ee9d4ed5d1fad00fa..075ac6462de78eaa2da850e9ca517adc0a1655fa 100644 (file)
@@ -3,11 +3,6 @@
 <h2>
   <a class="geolink" href="<%= root_path %>"><span class="icon close"></span></a>
   <%= t "browse.note.#{@note.status}_title", :note_name => @note.id %>
-  <% if current_user && current_user != @note.author %>
-    <%= link_to new_report_url(reportable_id: @note.id, reportable_type: @note.class.name), :title => t('browse.note.report') do %>
-        &nbsp;&#9872;
-    <% end %>
-  <% end %>
 </h2>
 
 <div class="browse-section">
       <br/>
       <%= note_event(@note.status, @note.closed_at, @note_comments.last.author) %>
     <% end %>
+    <% if current_user && current_user != @note.author %>
+      <%= link_to new_report_url(reportable_id: @note.id, reportable_type: @note.class.name), :title => t('browse.note.report') do %>
+          &nbsp;&#9872;
+      <% end %>
+    <% end %>
   </div>
 
   <% if @note_comments.find { |comment| comment.author.nil? } -%>
index 15c60beeb3ace5c7eadae4d99adb9047a3f40319..be2e90b8a537f35d8ed0817e03752760df86a20f 100644 (file)
             </li>
           <% end %>
 
+          <% if current_user and @this_user.id != current_user.id %>
+            <li>
+              <%= link_to new_report_url(reportable_id: @this_user.id, reportable_type: @this_user.class.name), :title => t('user.view.report') do %>
+                &nbsp;&#9872;
+              <% end %>
+            </li>
+          <% end %>
         </ul>
 
       <% end %>
       </p>
     </div>
 
-    <% if current_user and @this_user.id != current_user.id %>
-      <div class="report-button">
-         <%= link_to new_report_url(reportable_id: @this_user.id, reportable_type: @this_user.class.name), :title => t('user.view.report') do %>
-            &nbsp;&#9872;
-         <% end %>
-      </div>
-    <% end %>
-
     <div class="user-description richtext"><%= @this_user.description.to_html %></div>
 
   </div>