Commit 23a85d6a authored by Mark Otto's avatar Mark Otto

fixes #11126: remove box-shadow from open dropdown toggle with .btn-link

parent 6d5c5105
...@@ -3716,6 +3716,11 @@ input[type="button"].btn-block { ...@@ -3716,6 +3716,11 @@ input[type="button"].btn-block {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
} }
.btn-group.open .dropdown-toggle.btn-link {
-webkit-box-shadow: none;
box-shadow: none;
}
.btn .caret { .btn .caret {
margin-left: 0; margin-left: 0;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -150,6 +150,11 @@ ...@@ -150,6 +150,11 @@
// Remove the gradient and set the same inset shadow as the :active state // Remove the gradient and set the same inset shadow as the :active state
.btn-group.open .dropdown-toggle { .btn-group.open .dropdown-toggle {
.box-shadow(inset 0 3px 5px rgba(0,0,0,.125)); .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
// Show no shadow for `.btn-link` since it has no other button styles.
&.btn-link {
.box-shadow(none);
}
} }
......
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