From a4b8a91821b5bf56861a70e31b147bd00207c6f1 Mon Sep 17 00:00:00 2001 From: Anton Khorev Date: Thu, 10 Aug 2023 06:31:38 +0300 Subject: [PATCH] Use Bootstrap highlight class in note tables --- app/assets/stylesheets/common.scss | 8 -------- app/views/notes/index.html.erb | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index fb580fb7b..cb5e55977 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -1279,14 +1279,6 @@ div.secondary-actions { } } -/* Rules for the user notes list */ - -.note_list { - tr.creator { - background-color: $offwhite; - } -} - /* Rules for the iD editor */ .id-embed { diff --git a/app/views/notes/index.html.erb b/app/views/notes/index.html.erb index 2eb99b812..dd0cb2608 100644 --- a/app/views/notes/index.html.erb +++ b/app/views/notes/index.html.erb @@ -21,7 +21,7 @@ <% @notes.each do |note| -%> - class="creator"<% end %>> + class="table-primary"<% end %>> <% if note.closed? %> <%= image_tag("closed_note_marker.png", :alt => "closed", :size => "25x40") %> -- 2.39.5