Commit 4787a69e authored by Chris Rebert's avatar Chris Rebert

fix #12154

parent e2908975
...@@ -1998,7 +1998,9 @@ textarea.input-lg { ...@@ -1998,7 +1998,9 @@ textarea.input-lg {
border: 1px solid transparent; border: 1px solid transparent;
border-radius: 4px; border-radius: 4px;
} }
.btn:focus { .btn:focus,
.btn:active:focus,
.btn.active:focus {
outline: thin dotted; outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color; outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px; outline-offset: -2px;
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -19,8 +19,13 @@ ...@@ -19,8 +19,13 @@
.button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base); .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @border-radius-base);
.user-select(none); .user-select(none);
&:focus { &,
.tab-focus(); &:active,
&.active
{
&:focus {
.tab-focus();
}
} }
&:hover, &:hover,
......
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