From a7187472f86265e5698e7f41d3cd4e51d78ebf1f Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Fri, 3 Oct 2025 14:16:12 -0500 Subject: [PATCH] Adjust icon --- app/assets/images/expand.svg | 1 + app/assets/images/external-link.svg | 7 ------- app/assets/stylesheets/icons.css | 2 +- app/views/collections/show/_column.html.erb | 2 +- app/views/collections/show/_stream.html.erb | 2 +- 5 files changed, 4 insertions(+), 10 deletions(-) create mode 100644 app/assets/images/expand.svg delete mode 100644 app/assets/images/external-link.svg diff --git a/app/assets/images/expand.svg b/app/assets/images/expand.svg new file mode 100644 index 000000000..fdf5de301 --- /dev/null +++ b/app/assets/images/expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/app/assets/images/external-link.svg b/app/assets/images/external-link.svg deleted file mode 100644 index ed2483aa9..000000000 --- a/app/assets/images/external-link.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/app/assets/stylesheets/icons.css b/app/assets/stylesheets/icons.css index 3f4e25431..02d418624 100644 --- a/app/assets/stylesheets/icons.css +++ b/app/assets/stylesheets/icons.css @@ -45,7 +45,7 @@ .icon--crown { --svg: url("crown.svg "); } .icon--email { --svg: url("email.svg "); } .icon--everyone { --svg: url("everyone.svg "); } - .icon--external-link { --svg: url("external-link.svg "); } + .icon--expand { --svg: url("expand.svg "); } .icon--gear { --svg: url("gear.svg "); } .icon--filter { --svg: url("filter.svg "); } .icon--globe { --svg: url("globe.svg "); } diff --git a/app/views/collections/show/_column.html.erb b/app/views/collections/show/_column.html.erb index 617fadda0..ad9e983e4 100644 --- a/app/views/collections/show/_column.html.erb +++ b/app/views/collections/show/_column.html.erb @@ -12,7 +12,7 @@ <% end %> <%= link_to collection_column_path(column.collection, column), class: "btn btn--circle txt-x-small borderless cards__expander-button", data: { turbo_frame: "_top" } do %> - <%= icon_tag "external-link" %> + <%= icon_tag "expand" %> Expand column <% end %> diff --git a/app/views/collections/show/_stream.html.erb b/app/views/collections/show/_stream.html.erb index 18b657a14..97098ba61 100644 --- a/app/views/collections/show/_stream.html.erb +++ b/app/views/collections/show/_stream.html.erb @@ -8,7 +8,7 @@

The Stream

<%= link_to collection_columns_stream_path(collection), class: "btn btn--circle txt-x-small borderless cards__expander-button", data: { turbo_frame: "_top" } do %> - <%= icon_tag "external-link" %> + <%= icon_tag "expand" %> Expand column <% end %>