mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-14 18:42:30 +03:00
Fixes #10492 again, this time for last row's corners on striped tables
This commit is contained in:
Vendored
+12
@@ -4791,6 +4791,18 @@ 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-left-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
@@ -95,6 +95,17 @@
|
|||||||
border: 0;
|
border: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
> .table-striped > tbody > tr:last-child,
|
||||||
|
> .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-left-radius: (@panel-border-radius - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user