|
|
@@ -178,16 +178,29 @@ table.table-bordered.dataTable.complex-headers {
|
|
|
$table-border-color: #eff3f8;
|
|
|
|
|
|
.table-collapse {
|
|
|
- table.custom-data-table.dataTable tbody tr td:first-child {
|
|
|
+ .custom-data-table.dataTable tbody tr td:first-child {
|
|
|
border-top-left-radius: 0;
|
|
|
border-bottom-left-radius: 0;
|
|
|
}
|
|
|
-
|
|
|
- table.custom-data-table.dataTable tbody tr td:last-child{
|
|
|
+ .custom-data-table.dataTable tbody tr td:last-child{
|
|
|
border-top-right-radius: 0;
|
|
|
border-bottom-right-radius: 0;
|
|
|
}
|
|
|
|
|
|
+ .custom-data-table.dataTable tbody tr:first-child td:first-child {
|
|
|
+ border-top-left-radius: $card-border-radius;
|
|
|
+ }
|
|
|
+ .custom-data-table.dataTable tbody tr:first-child td:last-child{
|
|
|
+ border-top-right-radius: $card-border-radius;
|
|
|
+ }
|
|
|
+
|
|
|
+ .custom-data-table.dataTable tbody tr:last-child td:first-child {
|
|
|
+ border-bottom-left-radius: $card-border-radius;
|
|
|
+ }
|
|
|
+ .custom-data-table.dataTable tbody tr:last-child td:last-child{
|
|
|
+ border-bottom-right-radius: $card-border-radius;
|
|
|
+ }
|
|
|
+
|
|
|
.table.custom-data-table {
|
|
|
padding: 5px 10px 10px;
|
|
|
}
|