mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-20 20:00:36 +03:00
Merge pull request #11970 from supergibbs/Better_10492_fix
Fixes #10492 better
This commit is contained in:
Vendored
+20
-12
@@ -4771,6 +4771,26 @@ a.list-group-item-info.active:focus {
|
|||||||
.panel > .table-responsive > .table {
|
.panel > .table-responsive > .table {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
.panel > .table > tbody:last-child > tr:last-child td:first-child,
|
||||||
|
.panel > .table-responsive > .table > tbody:last-child > tr:last-child td:first-child,
|
||||||
|
.panel > .table > tfoot:last-child > tr:last-child td:first-child,
|
||||||
|
.panel > .table-responsive > .table > tfoot:last-child > tr:last-child td:first-child,
|
||||||
|
.panel > .table > tbody:last-child > tr:last-child th:first-child,
|
||||||
|
.panel > .table-responsive > .table > tbody:last-child > tr:last-child th:first-child,
|
||||||
|
.panel > .table > tfoot:last-child > tr:last-child th:first-child,
|
||||||
|
.panel > .table-responsive > .table > tfoot:last-child > tr:last-child th:first-child {
|
||||||
|
border-bottom-left-radius: 3px;
|
||||||
|
}
|
||||||
|
.panel > .table > tbody:last-child > tr:last-child td:last-child,
|
||||||
|
.panel > .table-responsive > .table > tbody:last-child > tr:last-child td:last-child,
|
||||||
|
.panel > .table > tfoot:last-child > tr:last-child td:last-child,
|
||||||
|
.panel > .table-responsive > .table > tfoot:last-child > tr:last-child td:last-child,
|
||||||
|
.panel > .table > tbody:last-child > tr:last-child th:last-child,
|
||||||
|
.panel > .table-responsive > .table > tbody:last-child > tr:last-child th:last-child,
|
||||||
|
.panel > .table > tfoot:last-child > tr:last-child th:last-child,
|
||||||
|
.panel > .table-responsive > .table > tfoot:last-child > tr:last-child th:last-child {
|
||||||
|
border-bottom-right-radius: 3px;
|
||||||
|
}
|
||||||
.panel > .panel-body + .table,
|
.panel > .panel-body + .table,
|
||||||
.panel > .panel-body + .table-responsive {
|
.panel > .panel-body + .table-responsive {
|
||||||
border-top: 1px solid #ddd;
|
border-top: 1px solid #ddd;
|
||||||
@@ -4829,18 +4849,6 @@ a.list-group-item-info.active:focus {
|
|||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
.panel > .table-striped > tbody > tr:last-child td:first-child,
|
|
||||||
.panel > .table-responsive > .table-striped > tbody > tr:last-child td:first-child,
|
|
||||||
.panel > .table-striped > tbody > tr:last-child th:first-child,
|
|
||||||
.panel > .table-responsive > .table-striped > tbody > tr:last-child th:first-child {
|
|
||||||
border-bottom-left-radius: 3px;
|
|
||||||
}
|
|
||||||
.panel > .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-responsive > .table-striped > tbody > tr:last-child th:last-child {
|
|
||||||
border-bottom-right-radius: 3px;
|
|
||||||
}
|
|
||||||
.panel-heading {
|
.panel-heading {
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
border-bottom: 1px solid transparent;
|
border-bottom: 1px solid transparent;
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
+14
-13
@@ -59,6 +59,20 @@
|
|||||||
> .table,
|
> .table,
|
||||||
> .table-responsive > .table {
|
> .table-responsive > .table {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
|
|
||||||
|
> tbody:last-child,
|
||||||
|
> tfoot:last-child {
|
||||||
|
> tr:last-child {
|
||||||
|
td:first-child,
|
||||||
|
th:first-child {
|
||||||
|
border-bottom-left-radius: (@panel-border-radius - 1);
|
||||||
|
}
|
||||||
|
td:last-child,
|
||||||
|
th:last-child {
|
||||||
|
border-bottom-right-radius: (@panel-border-radius - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
> .panel-body + .table,
|
> .panel-body + .table,
|
||||||
> .panel-body + .table-responsive {
|
> .panel-body + .table-responsive {
|
||||||
@@ -95,19 +109,6 @@
|
|||||||
border: 0;
|
border: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
> .table-striped,
|
|
||||||
> .table-responsive > .table-striped {
|
|
||||||
> tbody > tr:last-child {
|
|
||||||
td:first-child,
|
|
||||||
th:first-child {
|
|
||||||
border-bottom-left-radius: (@panel-border-radius - 1);
|
|
||||||
}
|
|
||||||
td:last-child,
|
|
||||||
th:last-child {
|
|
||||||
border-bottom-right-radius: (@panel-border-radius - 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user