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

Fixes #11712: Better support for .table-responsive within .panel's

parent 66f9c7d6
No related merge requests found
Showing with 11 additions and 2 deletions
+11 -2
......@@ -5720,6 +5720,11 @@ a.list-group-item.active:focus .list-group-item-text {
border-bottom: 0;
}
.panel > .table-responsive {
margin-bottom: 0;
border: 0;
}
.panel-heading {
padding: 10px 15px;
border-bottom: 1px solid transparent;
......
This diff is collapsed.
......@@ -704,7 +704,7 @@ if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery"
var backdrop = '.dropdown-backdrop'
var toggle = '[data-toggle=dropdown]'
var Dropdown = function (element) {
var $el = $(element).on('click.bs.dropdown', this.toggle)
$(element).on('click.bs.dropdown', this.toggle)
}
Dropdown.prototype.toggle = function (e) {
......
......@@ -91,6 +91,10 @@
}
}
}
> .table-responsive {
border: 0;
margin-bottom: 0;
}
}
......
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