]> git.openstreetmap.org Git - rails.git/commitdiff
Use "emphasis" link color in changeset lists instead of dark text
authorAnton Khorev <tony29@yandex.ru>
Mon, 15 Apr 2024 01:45:54 +0000 (04:45 +0300)
committerAnton Khorev <tony29@yandex.ru>
Mon, 15 Apr 2024 01:45:54 +0000 (04:45 +0300)
app/views/changesets/_changeset.html.erb

index a4357a3f5ae677e1a7a22f822d32f8574e0dd469..b219f4c327498c4afdb92910f98bb08040d6139b 100644 (file)
@@ -12,7 +12,7 @@
 
 <%= tag.li :id => "changeset_#{changeset.id}", :data => { :changeset => changeset_data }, :class => "list-group-item" do %>
   <p class="fst-italic">
-    <a class="changeset_id text-dark stretched-link" href="<%= changeset_path(changeset) %>">
+    <a class="changeset_id link-body-emphasis stretched-link" href="<%= changeset_path(changeset) %>">
       <span><%= changeset.tags["comment"].to_s.presence || t("browse.no_comment") %></span>
     </a>
   </p>
@@ -20,7 +20,7 @@
     <div class="col">
       <%= changeset_details(changeset) %>
       &middot;
-      <a class="changeset_id text-dark" href="<%= changeset_path(changeset) %>">
+      <a class="changeset_id link-body-emphasis" href="<%= changeset_path(changeset) %>">
         #<%= changeset.id %>
       </a>
     </div>