-
-
Notifications
You must be signed in to change notification settings - Fork 79k
New issue
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
.panel-body:after absent from customized bootstrap 3.1.1 #13305
Comments
The CSS for that is still present, it's just been moved: https://github.com/twbs/bootstrap/blob/master/dist/css/bootstrap.css#L5837:L5838. |
just tried in jsbin, seems not an issue if I use the whole css file //netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css on my local, i use customize downloaded css from http://getbootstrap.com/customize/ |
Confirmed in bleeding-edge |
Including |
X-Ref: #12409. |
@mdo So, since |
@mdo Ping. |
For simplicity and versioning and compatibility, we should require the entire utilities.less file—just like we do with scaffolding and Normalize. Simplifies a lot of the pain here and elsewhere without adding much overhead at all. |
Before fix:

After fix:

The fix is:
.panel-body:after {
content: " ";
display: table;
}
The text was updated successfully, but these errors were encountered: