diff --git a/app/assets/stylesheets/utilities.css b/app/assets/stylesheets/utilities.css index 065bcef02..27e65f4c9 100644 --- a/app/assets/stylesheets/utilities.css +++ b/app/assets/stylesheets/utilities.css @@ -187,11 +187,11 @@ } } -/* Seperators */ +/* Separators */ .separator { border-block: 0; border-inline-end: 0; - border-inline-start: 1px solid var(--color-subtle-dark); + border-inline-start: 1px var(--border-style, solid) var(--border-color, currentColor); display: inline-flex; inline-size: 0; } @@ -199,7 +199,7 @@ .separator--horizontal { block-size: 0; border-block-end: 0; - border-block-start: 1px solid var(--color-subtle-dark); + border-block-start: 1px var(--border-style, solid) var(--border-color, currentColor); border-inline: 0; display: flex; } diff --git a/app/views/accounts/users/_user.html.erb b/app/views/accounts/users/_user.html.erb index cb7855dd1..97cc34e83 100644 --- a/app/views/accounts/users/_user.html.erb +++ b/app/views/accounts/users/_user.html.erb @@ -5,7 +5,7 @@ <%= user.name %> - + <%# FIXME: Move this Current.user check to a stimulus controller that just checks for admin? or the like we so we can cache user list %> <%= button_to account_user_path(user), method: :delete, class: "btn btn--small btn--negative flex-item-no-shrink", diff --git a/app/views/buckets/_user_toggle.html.erb b/app/views/buckets/_user_toggle.html.erb index f1e3a2f23..874dc2ed4 100644 --- a/app/views/buckets/_user_toggle.html.erb +++ b/app/views/buckets/_user_toggle.html.erb @@ -1,15 +1,15 @@ -
  • -
    +
  • +
    <%= avatar_tag user, loading: :lazy %>
    -
    +
    <%= user.name %>
    - + <% if user == Current.user %> <%= hidden_field_tag "user_ids[]", user.id, id: nil %> diff --git a/app/views/buckets/edit.html.erb b/app/views/buckets/edit.html.erb index c7ca0345d..98a56fff5 100644 --- a/app/views/buckets/edit.html.erb +++ b/app/views/buckets/edit.html.erb @@ -16,7 +16,7 @@ <% end %> -
    +
    <%= form_with model: @bucket, class: "flex flex-column gap txt-large", controller: "form" do |form| %> <%= image_tag "bubbles.svg", aria: { hidden: "true" }, size: 150, class: "colorize--black center" %> @@ -24,14 +24,14 @@ <%= translation_button(:bucket_name) %>
    - + <% if User.active.count > 20 %> <% end %>