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 @@ -