|
@@ -186,25 +186,42 @@ $table-border-color: #eff3f8;
|
|
|
border-top-right-radius: 0;
|
|
|
border-bottom-right-radius: 0;
|
|
|
}
|
|
|
+
|
|
|
+ .table.custom-data-table {
|
|
|
+ padding: 5px 10px 10px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .table-fixed-left .table.custom-data-table {
|
|
|
+ padding: 5px 0 0 10px;
|
|
|
+ }
|
|
|
+ .table-fixed-right .table.custom-data-table {
|
|
|
+ padding: 5px 10px 0 0;
|
|
|
+ }
|
|
|
+ .table-fixed th {
|
|
|
+ background: darken(#f7f7f9, 3.5%);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
body:not(.dark-mode) {
|
|
|
.table-collapse {
|
|
|
box-shadow: $shadow;
|
|
|
- background: $white;
|
|
|
+ background: darken(#f7f7f9, 3.5%);
|
|
|
margin-top: 1rem;
|
|
|
|
|
|
- table {
|
|
|
- border-collapse:collapse!important;
|
|
|
+ .custom-data-table {
|
|
|
+ border-spacing: 0;
|
|
|
+ //border-collapse:collapse!important;
|
|
|
margin-top: 0!important;
|
|
|
+ background-color: darken(#f7f7f9, 3.5%);
|
|
|
+ //border-radius: $card-border-radius;
|
|
|
}
|
|
|
|
|
|
table.custom-data-table.dataTable thead th {
|
|
|
- border-top: 1px solid $table-border-color;
|
|
|
- border-bottom: 2px solid $table-border-color;
|
|
|
+ //border-top: 1px solid $table-border-color;
|
|
|
+ //border-bottom: 2px solid $table-border-color;
|
|
|
height: 24px;
|
|
|
vertical-align: middle;
|
|
|
- background: $white;
|
|
|
+ //background: $white;
|
|
|
}
|
|
|
|
|
|
table.custom-data-table.dataTable tbody td {
|
|
@@ -228,4 +245,11 @@ body.dark-mode {
|
|
|
height: 38px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ //.table-fixed-left .table.custom-data-table {
|
|
|
+ // padding: 5px 0 0 10px;
|
|
|
+ //}
|
|
|
+ //.table-fixed-right .table.custom-data-table {
|
|
|
+ // padding: 5px 10px 0 0;
|
|
|
+ //}
|
|
|
}
|