summaryrefslogtreecommitdiff
path: root/bower_components/bootstrap/less/panels.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-10-30 16:13:42 -0400
committerThomas Park <thomas@thomaspark.me>2013-10-30 16:13:42 -0400
commit48c64127b37be4a692a70cb7b38ed9744163582b (patch)
treedcf4b4b76612269a6b135c695861eca7e89a0cfa /bower_components/bootstrap/less/panels.less
parent620e501c3d804b1dc2c7d796d7ae378db5e1a040 (diff)
3.0.0 -> 3.0.1
Diffstat (limited to 'bower_components/bootstrap/less/panels.less')
-rwxr-xr-xbower_components/bootstrap/less/panels.less38
1 files changed, 31 insertions, 7 deletions
diff --git a/bower_components/bootstrap/less/panels.less b/bower_components/bootstrap/less/panels.less
index 2343b250..84a12d1e 100755
--- a/bower_components/bootstrap/less/panels.less
+++ b/bower_components/bootstrap/less/panels.less
@@ -56,12 +56,37 @@
// watch it go full width.
.panel {
- > .table {
+ > .table,
+ > .table-responsive {
margin-bottom: 0;
}
- > .panel-body + .table {
+ > .panel-body + .table,
+ > .panel-body + .table-responsive {
border-top: 1px solid @table-border-color;
}
+ > .table-bordered,
+ > .table-responsive > .table-bordered {
+ border: 0;
+ > thead,
+ > tbody,
+ > tfoot {
+ > tr {
+ > th:first-child,
+ > td:first-child {
+ border-left: 0;
+ }
+ > th:last-child,
+ > td:last-child {
+ border-right: 0;
+ }
+
+ &:last-child > th,
+ &:last-child > td {
+ border-bottom: 0;
+ }
+ }
+ }
+ }
}
@@ -70,6 +95,10 @@
padding: 10px 15px;
border-bottom: 1px solid transparent;
.border-top-radius(@panel-border-radius - 1);
+
+ & > .dropdown .dropdown-toggle {
+ color: inherit;
+ }
}
// Within heading, strip any `h*` tag of it's default margins for spacing.
@@ -119,11 +148,6 @@
border-bottom: 1px solid @panel-inner-border;
}
}
-
- // New subcomponent for wrapping collapsable content for proper animations
- .panel-collapse {
-
- }
}