Commit 870b916d authored by Florrie's avatar Florrie

Only transition border property

..since it's the only property which actually animates. (The background
image also changes on hover/focus, but that isn't visually effected by
transition, so we ignore it.)

This is for the next commit. Without this, the focus ring slowly
disappears, and the text slowly becomes the color it's meant to be;
neither of those are good.
parent 007bb54b
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
} }
select { select {
transition: all .5s ease; transition: border .5s ease;
margin-bottom: .75rem; margin-bottom: .75rem;
border: 1px solid $active-gray; border: 1px solid $active-gray;
border-radius: 5px; border-radius: 5px;
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
} }
&:focus { &:focus {
transition: all .5s ease;
outline: none; outline: none;
border: 1px solid $ui-blue; border: 1px solid $ui-blue;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment