Commit 9fc0e203 authored by Mark Otto's avatar Mark Otto

Fixes #10492 and some of #11970: round the proper corner on table cells in panels

parent b505c855
...@@ -4835,7 +4835,7 @@ a.list-group-item-info.active:focus { ...@@ -4835,7 +4835,7 @@ a.list-group-item-info.active:focus {
.panel > .table-responsive > .table-striped > tbody > tr:last-child td:last-child, .panel > .table-responsive > .table-striped > tbody > tr:last-child td:last-child,
.panel > .table-striped > tbody > tr:last-child th:last-child, .panel > .table-striped > tbody > tr:last-child th:last-child,
.panel > .table-responsive > .table-striped > tbody > tr:last-child th:last-child { .panel > .table-responsive > .table-striped > tbody > tr:last-child th:last-child {
border-bottom-left-radius: 3px; border-bottom-right-radius: 3px;
} }
.panel-heading { .panel-heading {
padding: 10px 15px; padding: 10px 15px;
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -104,7 +104,7 @@ ...@@ -104,7 +104,7 @@
} }
td:last-child, td:last-child,
th:last-child { th:last-child {
border-bottom-left-radius: (@panel-border-radius - 1); border-bottom-right-radius: (@panel-border-radius - 1);
} }
} }
} }
......
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