We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When creating a panel with a list followed by a panel-footer, there is a double border between the end of the list and the panel-footer.
Link to test case: http://jsbin.com/yabozuqu/1
A potential solution is adding CSS such as the following: .panel .list-group + .panel-footer { margin-top: -1px; }
The text was updated successfully, but these errors were encountered:
(less) Resolves Issue twbs#13689
aca3884
Doing this the right way this time. Hiding .panel-footer top border when preceeded by a .list-group. This should resolve the "double border" issue.
Successfully merging a pull request may close this issue.
When creating a panel with a list followed by a panel-footer, there is a double border between the end of the list and the panel-footer.
Link to test case: http://jsbin.com/yabozuqu/1
A potential solution is adding CSS such as the following:
.panel .list-group + .panel-footer {
margin-top: -1px;
}
The text was updated successfully, but these errors were encountered: