47 lines
1.4 KiB
SCSS
47 lines
1.4 KiB
SCSS
@use '../../scss/_bootstrap-extended/include' as light;
|
|
@use '../../scss/_bootstrap-extended/include-dark' as dark;
|
|
@use '../../scss/_components/include' as comp;
|
|
|
|
@import '../../scss/_custom-variables/libs';
|
|
@import 'datatables.net-select-bs5/css/select.bootstrap5';
|
|
|
|
// Light style
|
|
@if $enable-light-style {
|
|
.light-style {
|
|
table.dataTable tbody > tr.selected,
|
|
table.dataTable tbody > tr > .selected {
|
|
background-color: light.rgba-to-hex(rgba(light.$black, 0.03), light.$rgba-to-hex-bg);
|
|
}
|
|
table.dataTable tbody > tr.selected > *,
|
|
table.dataTable tbody > tr > .selected > * {
|
|
box-shadow: inset 0 0 0 light.$gray-60;
|
|
color: light.$body-color;
|
|
}
|
|
table.dataTable tbody tr.selected,
|
|
table.dataTable tbody th.selected,
|
|
table.dataTable tbody td.selected {
|
|
color: light.$body-color;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Dark Style
|
|
@if $enable-dark-style {
|
|
.dark-style {
|
|
table.dataTable tbody > tr.selected,
|
|
table.dataTable tbody > tr > .selected {
|
|
background-color: rgba(dark.$base, 0.08);
|
|
}
|
|
table.dataTable tbody > tr.selected > *,
|
|
table.dataTable tbody > tr > .selected > * {
|
|
box-shadow: inset 0 0 0 dark.$gray-60;
|
|
color: dark.$table-active-color;
|
|
}
|
|
table.dataTable tbody tr.selected,
|
|
table.dataTable tbody th.selected,
|
|
table.dataTable tbody td.selected {
|
|
color: inherit;
|
|
}
|
|
}
|
|
}
|