From 4c220bfd7257e039cee36c1ef88b2e0d53621e22 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Fri, 17 Oct 2025 09:35:01 -0500 Subject: [PATCH] Use a differnt glyph for accounts --- app/assets/images/marker.svg | 3 +++ app/assets/stylesheets/icons.css | 2 +- app/views/filters/menu/_accounts.html.erb | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 app/assets/images/marker.svg diff --git a/app/assets/images/marker.svg b/app/assets/images/marker.svg new file mode 100644 index 000000000..473d91904 --- /dev/null +++ b/app/assets/images/marker.svg @@ -0,0 +1,3 @@ + + + diff --git a/app/assets/stylesheets/icons.css b/app/assets/stylesheets/icons.css index c3eac00fd..305aa2087 100644 --- a/app/assets/stylesheets/icons.css +++ b/app/assets/stylesheets/icons.css @@ -57,7 +57,7 @@ .icon--lifebuoy { --svg: url("lifebuoy.svg "); } .icon--lock { --svg: url("lock.svg "); } .icon--logout { --svg: url("logout.svg "); } - .icon--logo-color { --svg: url("logo-color.svg "); mask-size: contain; } + .icon--marker { --svg: url("marker.svg "); } .icon--menu { --svg: url("menu.svg "); } .icon--menu-dots-horizontal { --svg: url("menu-dots-horizontal.svg "); } .icon--menu-dots-vertical { --svg: url("menu-dots-vertical.svg "); } diff --git a/app/views/filters/menu/_accounts.html.erb b/app/views/filters/menu/_accounts.html.erb index 001211a67..8d182ed3e 100644 --- a/app/views/filters/menu/_accounts.html.erb +++ b/app/views/filters/menu/_accounts.html.erb @@ -1,5 +1,5 @@ <%= collapsible_nav_section "Accounts" do %> <% Current.user.identity.memberships.where.not(user_tenant: Current.user.tenant).each do |membership| %> - <%= filter_place_menu_item root_url(script_name: "/#{membership.user_tenant}"), "#{membership.account_name}", "logo-color", new_window: true %> + <%= filter_place_menu_item root_url(script_name: "/#{membership.user_tenant}"), "#{membership.account_name}", "marker", new_window: true %> <% end %> <% end %>