Laravel 11, Vuexy Admin 10.3, by admin@koneko.mx

This commit is contained in:
2025-01-25 04:23:40 -06:00
parent c3045b43b1
commit 64d505910f
1283 changed files with 140198 additions and 0 deletions

View File

@ -0,0 +1,9 @@
@mixin bs-datatables-theme($background) {
// Style for responsive icon
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
background-color: $background;
border: 2px solid $rgba-to-hex-bg;
box-shadow: 0 0 3px $gray-800;
}
}

View File

@ -0,0 +1,57 @@
@use '../../scss/_bootstrap-extended/include' as light;
@use '../../scss/_bootstrap-extended/include-dark' as dark;
@import 'datatables.net-responsive-bs5/css/responsive.bootstrap5';
@import 'mixins';
// Responsive table area '+' icon position
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
position: relative;
&:before,
&:before {
position: absolute;
line-height: 0.9em;
font-weight: light.$font-weight-medium;
height: 0.85em;
width: 0.85em;
color: light.$white;
border-radius: 1em;
box-sizing: content-box;
text-align: center;
font-family: 'Courier New', Courier, monospace;
content: '+';
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
table.dataTable.dtr-column > tbody > tr.parent td.dtr-control:before,
table.dataTable.dtr-column > tbody > tr.parent th.dtr-control:before,
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
content: '+';
}
// To scroll within datatable area
@media screen and (max-width: 1399.98px) {
table.dataTable.table-responsive {
display: block;
}
}
// Modal table style
.modal.dtr-bs-modal {
.modal-body {
padding: 0;
}
.table {
tr:last-child > td {
border-bottom: 0;
}
.btn {
box-shadow: none !important;
}
.emp_name {
font-weight: light.$font-weight-medium;
}
}
}