radfusion/resources/assets/vendor/libs/datatables-fixedheader-bs5/fixedheader.bootstrap5.scss

55 lines
1.6 KiB
SCSS

@use "../../scss/_bootstrap-extended/include" as light;
@use "../../scss/_bootstrap-extended/include-dark" as dark;
@import "../../scss/_custom-variables/libs";
@import "datatables.net-fixedheader-bs5/css/fixedHeader.bootstrap5";
// Fixed header Style
.dt-fixedheader.fixedHeader-floating.table.dataTable {
width: auto !important;
}
.dt-fixedheader.fixedHeader-locked.table.dataTable {
display: none;
}
// Last style
@if $enable-light-style {
.light-style {
.dtfh-floatingparenthead {
border-bottom: 2px solid light.$table-border-color;
}
.table-bordered.dt-fixedheader.fixedHeader-floating.table.dataTable
thead
> tr
> th,
.table-bordered.dt-fixedheader.fixedHeader-locked.table.dataTable
thead
> tr
> th {
background-color: light.$table-header-bg-color;
border-bottom-width: 1px;
border-color: light.$table-border-color;
}
}
}
// Dark style
@if $enable-dark-style {
.dark-style {
.dtfh-floatingparenthead {
border-bottom: 2px solid dark.$table-border-color;
}
.table-bordered.dt-fixedheader.fixedHeader-floating.table.dataTable
thead
> tr
> th,
.table-bordered.dt-fixedheader.fixedHeader-locked.table.dataTable
thead
> tr
> th {
background-color: dark.$table-header-bg-color;
border-bottom-width: 1px;
border-color: dark.$table-border-color;
}
}
}