Commit d95ff9da authored by Mark Otto's avatar Mark Otto
Browse files

fixes #8805: ensure .active buttons in button groups behave like :active buttons

parent f62ea2af
Showing with 6 additions and 3 deletions
+6 -3
...@@ -3130,7 +3130,9 @@ button.close { ...@@ -3130,7 +3130,9 @@ button.close {
.btn-group > .btn:focus, .btn-group > .btn:focus,
.btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:focus,
.btn-group > .btn:active, .btn-group > .btn:active,
.btn-group-vertical > .btn:active { .btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
z-index: 2; z-index: 2;
} }
......
This diff is collapsed.
...@@ -22,7 +22,8 @@ ...@@ -22,7 +22,8 @@
// Bring the "active" button to the front // Bring the "active" button to the front
&:hover, &:hover,
&:focus, &:focus,
&:active { &:active,
&.active {
z-index: 2; z-index: 2;
} }
} }
......
Supports Markdown
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