Commit d95ff9da authored by Mark Otto's avatar Mark Otto

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

parent f62ea2af
......@@ -3130,7 +3130,9 @@ button.close {
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.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;
}
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -22,7 +22,8 @@
// Bring the "active" button to the front
&:hover,
&:focus,
&:active {
&:active,
&.active {
z-index: 2;
}
}
......
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