diff --git a/app/views/cards/container/_title.html.erb b/app/views/cards/container/_title.html.erb
index 9253d1653..3f2ff79c7 100644
--- a/app/views/cards/container/_title.html.erb
+++ b/app/views/cards/container/_title.html.erb
@@ -13,7 +13,7 @@
<%= form_with model: card, url: collection_card_path(card.collection, card), id: "card_form", class: "card__content", data: { controller: "autoresize auto-save" } do |form| %>
<%= form.text_area :title, placeholder: "Name it…",
- class: "input input--textarea full-width borderless txt-align-start autoresize__textarea",
+ class: "input input--textarea full-width borderless txt-align-start autoresize__textarea hide-focus-ring",
autofocus: card.title.blank? || params[:focus_on_title], rows: 1,
data: { autoresize_target: "textarea", action: "input->autoresize#resize auto-save#change blur->auto-save#submit keydown.enter->auto-save#submit:prevent keydown.ctrl+enter->auto-save#submit:prevent" } %>
diff --git a/app/views/cards/display/perma/_steps.html.erb b/app/views/cards/display/perma/_steps.html.erb
index 8cd719355..240bc8bab 100644
--- a/app/views/cards/display/perma/_steps.html.erb
+++ b/app/views/cards/display/perma/_steps.html.erb
@@ -4,7 +4,7 @@
<%= form_with model: [card, Step.new], url: card_steps_path(card) do |form| %>
- <%= form.text_field :content, class: "input step__content", placeholder: "Add a step…", required: true, autocomplete: "off" %>
+ <%= form.text_field :content, class: "input step__content hide-focus-ring", placeholder: "Add a step…", required: true, autocomplete: "off" %>
<% end %>
-
\ No newline at end of file
+
diff --git a/app/views/cards/steps/edit.html.erb b/app/views/cards/steps/edit.html.erb
index 0609c778e..7114c1c5e 100644
--- a/app/views/cards/steps/edit.html.erb
+++ b/app/views/cards/steps/edit.html.erb
@@ -2,7 +2,7 @@
<%= form_with model: [@card, @step], class: "step", data: { controller: "form" } do |form| %>
<%= form.check_box :completed, { class: "step__checkbox", checked: @step.completed?, disabled: true } %>
- <%= form.text_field :content, class: "input step__content step__content--edit", placeholder: "Name this step…", required: true, autofocus: true, autocomplete: "off",
+ <%= form.text_field :content, class: "input step__content step__content--edit hide-focus-ring", placeholder: "Name this step…", required: true, autofocus: true, autocomplete: "off",
data: { action: "keydown.esc->form#cancel focus->form#select" } %>
<%= form.button type: "submit", class: "btn btn--positive txt-xx-small" do %>
<%= icon_tag "check" %>
@@ -15,4 +15,4 @@
Delete this step
<% end %>
-<% end %>
\ No newline at end of file
+<% end %>