Commit 9ed9eb97 authored by Mark Otto's avatar Mark Otto

Follow up to #13907: Add .focus styles for buttons

parent 6f88238a
...@@ -23,13 +23,15 @@ ...@@ -23,13 +23,15 @@
&, &,
&:active, &:active,
&.active { &.active {
&:focus { &:focus,
&.focus {
.tab-focus(); .tab-focus();
} }
} }
&:hover, &:hover,
&:focus { &:focus,
&.focus {
color: @btn-default-color; color: @btn-default-color;
text-decoration: none; text-decoration: none;
} }
......
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
&:hover, &:hover,
&:focus, &:focus,
&.focus,
&:active, &:active,
&.active, &.active,
.open > .dropdown-toggle& { .open > .dropdown-toggle& {
...@@ -28,6 +29,7 @@ ...@@ -28,6 +29,7 @@
&, &,
&:hover, &:hover,
&:focus, &:focus,
&.focus,
&:active, &:active,
&.active { &.active {
background-color: @background; background-color: @background;
......
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