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,101 @@
<div id="template-customizer" class="bg-card">
<a href="javascript:void(0)" class="template-customizer-open-btn" tabindex="-1"></a>
<div class="p-6 m-0 lh-1 border-bottom template-customizer-header position-relative py-4">
<h6 class="template-customizer-t-panel_header mb-1"></h6>
<p class="template-customizer-t-panel_sub_header mb-0 small"></p>
<div class="d-flex align-items-center gap-2 position-absolute end-0 top-0 mt-6 me-5">
<a
href="javascript:void(0)"
class="template-customizer-reset-btn text-heading"
data-bs-toggle="tooltip"
data-bs-placement="bottom"
title="Reset Customizer"
><i class="ti ti-refresh ti-lg"></i
><span class="badge rounded-pill bg-danger badge-dot badge-notifications d-none"></span
></a>
<a href="javascript:void(0)" class="template-customizer-close-btn fw-light text-heading" tabindex="-1">
<i class="ti ti-x ti-lg"></i>
</a>
</div>
</div>
<div class="template-customizer-inner pt-6">
<!-- Theming -->
<div class="template-customizer-theming">
<h5 class="m-0 px-6 py-6">
<span class="template-customizer-t-theming_header bg-label-primary rounded-1 py-1 px-3 small"></span>
</h5>
<!-- Style -->
<div class="m-0 px-6 pb-6 template-customizer-style w-100">
<label for="customizerStyle" class="form-label d-block template-customizer-t-style_label mb-2"></label>
<div class="row px-1 template-customizer-styles-options"></div>
</div>
<!-- Themes -->
<div class="m-0 px-6 template-customizer-themes w-100">
<label for="customizerTheme" class="form-label template-customizer-t-theme_label mb-2"></label>
<div class="row px-1 template-customizer-themes-options"></div>
</div>
</div>
<!--/ Theming -->
<!-- Layout -->
<div class="template-customizer-layout">
<hr class="m-0 px-6 my-6" />
<h5 class="m-0 px-6 pb-6">
<span class="template-customizer-t-layout_header bg-label-primary rounded-2 py-1 px-3 small"></span>
</h5>
<!-- Layout(Menu) -->
<div class="m-0 px-6 pb-6 d-block template-customizer-layouts">
<label for="customizerStyle" class="form-label d-block template-customizer-t-layout_label mb-2"></label>
<div class="row px-1 template-customizer-layouts-options">
<!--? Uncomment If using offcanvas layout -->
<!-- <div class="col-12">
<div class="form-check">
<input class="form-check-input" type="radio" name="layoutRadios" id="layoutRadios-offcanvas"
value="static-offcanvas">
<label class="form-check-label template-customizer-t-layout_offcanvas"
for="layoutRadios-offcanvas"></label>
</div>
</div> -->
<!-- <div class="col-12">
<div class="form-check">
<input class="form-check-input" type="radio" name="layoutRadios" id="layoutRadios-fixed_offcanvas"
value="fixed-offcanvas">
<label class="form-check-label template-customizer-t-layout_fixed_offcanvas"
for="layoutRadios-fixed_offcanvas"></label>
</div>
</div> -->
</div>
</div>
<!-- Header Options for Horizontal -->
<div class="m-0 px-6 pb-6 template-customizer-headerOptions w-100">
<label for="customizerHeader" class="form-label template-customizer-t-layout_header_label mb-2"></label>
<div class="row px-1 template-customizer-header-options"></div>
</div>
<!-- Fixed navbar -->
<div class="m-0 px-6 pb-6 template-customizer-layoutNavbarOptions w-100">
<label for="customizerNavbar" class="form-label template-customizer-t-layout_navbar_label mb-2"></label>
<div class="row px-1 template-customizer-navbar-options"></div>
</div>
<!-- Content -->
<div class="m-0 px-6 pb-6 template-customizer-content w-100">
<label for="customizerContent" class="form-label template-customizer-t-content_label mb-2"></label>
<div class="row px-1 template-customizer-content-options"></div>
</div>
<!-- Directions -->
<div class="m-0 px-6 pb-6 template-customizer-directions w-100">
<label for="customizerDirection" class="form-label template-customizer-t-direction_label mb-2"></label>
<div class="row px-1 template-customizer-directions-options"></div>
</div>
</div>
<!--/ Layout -->
</div>
</div>

View File

@ -0,0 +1,342 @@
/*
* Template Customizer Style
**/
$customizer-width: 400px;
$customizer-width-sm: 300px;
$customizer-hide-width: 1200px;
$customizer-spacer: 20px;
$customizer-font-size: inherit;
$open-btn-size: 38px;
$open-btn-spacer: 0;
$open-btn-font-size: 18px;
$open-btn-top: 180px;
$open-btn-top-md: 145px;
$open-btn-bg: var(--bs-primary);
$open-btn-bg-dark: var(--bs-primary);
$open-btn-color: #fff;
$open-btn-border-radius: 0.375rem;
$open-customizer-primary-color: var(--bs-primary);
#template-customizer {
font-family: 'Public Sans', BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol' !important;
font-size: $customizer-font-size !important;
position: fixed;
top: 0;
right: 0;
height: 100%;
z-index: 99999999;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
width: $customizer-width;
-webkit-box-shadow: 0px 5px 30px 0px rgba(47, 43, 61, 0.18);
box-shadow: 0px 5px 30px 0px rgba(47, 43, 61, 0.18);
-webkit-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
-webkit-transform: translateX($customizer-width + $customizer-spacer);
-ms-transform: translateX($customizer-width + $customizer-spacer);
transform: translateX($customizer-width + $customizer-spacer);
.dark-style & {
-webkit-box-shadow: 0px 5px 30px 0px rgba(19, 17, 32, 0.24);
box-shadow: 0px 5px 30px 0px rgba(19, 17, 32, 0.24);
}
h5 {
position: relative;
font-size: 11px;
}
> h5 {
flex: 0 0 auto;
}
.disabled {
color: #d1d2d3 !important;
}
.form-label {
font-size: 0.9375rem;
}
.form-check-label {
font-size: 0.8125rem;
}
&.template-customizer-open {
-webkit-transition-delay: 0.1s;
-o-transition-delay: 0.1s;
transition-delay: 0.1s;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
.custom-option.checked {
color: $open-customizer-primary-color;
border-width: 2px;
margin: 0;
}
}
.template-customizer-header {
a:hover {
color: inherit !important;
}
}
// Customizer button
.template-customizer-open-btn {
position: absolute;
top: $open-btn-top;
@media (max-width: 991.98px) {
top: $open-btn-top-md;
}
left: 0;
z-index: -1;
display: block;
width: $open-btn-size;
height: $open-btn-size;
border-top-left-radius: $open-btn-border-radius;
border-bottom-left-radius: $open-btn-border-radius;
background: $open-btn-bg;
box-shadow: 0px 2px 6px 0px rgba(115, 103, 240, 0.3);
color: $open-btn-color !important;
text-align: center;
font-size: $open-btn-font-size !important;
line-height: $open-btn-size;
opacity: 1;
-webkit-transition: all 0.1s linear 0.2s;
-o-transition: all 0.1s linear 0.2s;
transition: all 0.1s linear 0.2s;
-webkit-transform: translateX(-($open-btn-size + $customizer-spacer + $open-btn-spacer));
-ms-transform: translateX(-($open-btn-size + $customizer-spacer + $open-btn-spacer));
transform: translateX(-($open-btn-size + $customizer-spacer + $open-btn-spacer));
.dark-style & {
background: $open-btn-bg-dark;
}
&::before {
content: '';
width: 22px;
height: 22px;
display: block;
background-size: 100% 100%;
position: absolute;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAABClJREFUaEPtmY1RFEEQhbsjUCIQIhAiUCNQIxAiECIQIxAiECIAIpAMhAiECIQI2vquZqnZvp6fhb3SK5mqq6Ju92b69bzXf6is+dI1t1+eAfztG5z1BsxsU0S+ici2iPB3vm5E5EpEDlSVv2dZswFIxv8UkZcNy+5EZGcuEHMCOBeR951uvVDVD53vVl+bE8DvDu8Pxtyo6ta/BsByg1R15Bwzqz5/LJgn34CZwfnPInI4BUB6/1hV0cSjVxcAM4PbcBZjL0XklIPN7Is3fLCkdQPpPYw/VNXj5IhPIvJWRIhSl6p60ULWBGBm30Vk123EwRxCuIzWkkjNrCZywith10ewE1Xdq4GoAjCz/RTXW44Ynt+LyBEfT43kYfbj86J3w5Q32DNcRQDpwF+dkQXDMey8xem0L3TEqB4g3PZWad8agBMRgZPeu96D1/C2Zbh3X0p80Op1xxloztN48bMQQNoc7+eLEuAoPSPiIDY4Ooo+E6ixeNXM+D3GERz2U3CIqMstLJUgJQDe+7eq6mub0NYEkLAKwEHkiBQDCZtddZCZ8d6r7JDwFkoARklHRPZUFVDVZWbwGuNrC4EfdOzFrRABh3Wnqhv+d70AEBLGFROPmeHlnM81G69UdSd6IUuM0GgUVn1uqWmg5EmMfBeEyB7Pe3txBkY+rGT8j0J+WXq/BgDkUCaqLgEAnwcRog0veMIqFAAwCy2wnw+bI2GaGboBgF9k5N0o0rUSGUb4eO0BeO9j/GYhkSHMHMTIqwGARX6p6a+nlPBl8kZuXMD9j6pKfF9aZuaFOdJCEL5D4eYb9wCYVCanrBmGyii/tIq+SLj/HQBCaM5bLzwfPqdQ6FpVHyra4IbuVbXaY7dETC2ESPNNWiIOi69CcdgSMXsh4tNSUiklMgwmC0aNd08Y5WAES6HHehM4gu97wyhBgWpgqXsrASglprDy7CwhehMZOSbK6JMSma+Fio1KltCmlBIj7gfZOGx8ppQSXrhzFnOhJ/31BDkjFHRvOd09x0mRBA9SFgxUgHpQg0q0t5ymPMlL+EnldFTfDA0NAmf+OTQ0X0sRouf7NNkYGhrOYNrxtIaGg83MNzVDSe3LXLhP7O/yrCsCz1zlWTpjWkuZAOBpX3yVnLqI1yLCOKU6qMrmP7SSrUEw54XF4WBIK5FxCMOr3lVsfGqNSmPzBXUnJTIX1jyVBq9wO6UObOpgC5GjO98vFKnTdQMZXxEsWZlDiCZMIxAbNxQOqlpVZtobejBaZNoBnRDzMFpkxvTQOD36BlrcySZuI6p1ACB6LU3wWuf5581+oHfD1vi89bz3nFUC8Nm7ZlP3nKkFbM4bWPt/MSFwklprYItwt6cmvpWJ2IVcQBCz6bLysSCv3SaANCiTsnaNRrNRqMXVVT1/BrAqz/buu/Y38Ad3KC5PARej0QAAAABJRU5ErkJggg==');
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
// Customizer Hidden
.customizer-hide & {
display: none;
}
[dir='rtl'] & {
border-radius: 0;
border-top-right-radius: $open-btn-border-radius;
border-bottom-right-radius: $open-btn-border-radius;
&::before {
margin-left: -2px;
}
}
}
&.template-customizer-open .template-customizer-open-btn {
opacity: 0;
-webkit-transition-delay: 0s;
-o-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: none !important;
-ms-transform: none !important;
transform: none !important;
}
// Customizer inner
.template-customizer-inner {
position: relative;
overflow: auto;
-webkit-box-flex: 0;
-ms-flex: 0 1 auto;
flex: 0 1 auto;
opacity: 1;
-webkit-transition: opacity 0.2s;
-o-transition: opacity 0.2s;
transition: opacity 0.2s;
> div:first-child {
> hr:first-of-type {
display: none !important;
}
> h5:first-of-type {
padding-top: 0 !important;
}
}
}
// Theme
.template-customizer-themes-inner {
position: relative;
opacity: 1;
-webkit-transition: opacity 0.2s;
-o-transition: opacity 0.2s;
transition: opacity 0.2s;
}
.template-customizer-theme-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
align-items: center;
-ms-flex-align: center;
-webkit-box-flex: 1;
-ms-flex: 1 1 100%;
flex: 1 1 100%;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 10px;
padding: 0 24px;
width: 100%;
cursor: pointer;
input {
position: absolute;
z-index: -1; // Put the input behind the label so it doesn't overlay text
opacity: 0;
}
input ~ span {
opacity: 0.25;
-webkit-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
}
.template-customizer-theme-checkmark {
display: inline-block;
width: 6px;
height: 12px;
border-right: 1px solid;
border-bottom: 1px solid;
opacity: 0;
-webkit-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
[dir='rtl'] & {
border-right: none;
border-left: 1px solid;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}
}
input:checked:not([disabled]) ~ span,
&:hover input:not([disabled]) ~ span {
opacity: 1;
}
input:checked:not([disabled]) ~ span .template-customizer-theme-checkmark {
opacity: 1;
}
}
.template-customizer-theme-colors {
span {
display: block;
margin: 0 1px;
width: 10px;
height: 10px;
border-radius: 50%;
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
}
}
&.template-customizer-loading .template-customizer-inner,
&.template-customizer-loading-theme .template-customizer-themes-inner {
opacity: 0.2;
&::after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 999;
display: block;
}
}
}
@media (max-width: $customizer-hide-width) {
#template-customizer {
display: none;
visibility: hidden !important;
}
}
@media (max-width: 575.98px) {
#template-customizer {
width: $customizer-width-sm;
-webkit-transform: translateX($customizer-width-sm + $customizer-spacer);
-ms-transform: translateX($customizer-width-sm + $customizer-spacer);
transform: translateX($customizer-width-sm + $customizer-spacer);
}
}
.layout-menu-100vh #template-customizer {
height: 100vh;
}
// RTL
//
[dir='rtl'] {
#template-customizer {
right: auto;
left: 0;
-webkit-transform: translateX(-($customizer-width + $customizer-spacer));
-ms-transform: translateX(-($customizer-width + $customizer-spacer));
transform: translateX(-($customizer-width + $customizer-spacer));
}
#template-customizer .template-customizer-open-btn {
right: 0;
left: auto;
-webkit-transform: translateX($open-btn-size + $customizer-spacer + $open-btn-spacer);
-ms-transform: translateX($open-btn-size + $customizer-spacer + $open-btn-spacer);
transform: translateX($open-btn-size + $customizer-spacer + $open-btn-spacer);
}
#template-customizer .template-customizer-close-btn {
right: auto;
left: 0;
}
}
#template-customizer .template-customizer-layouts-options[disabled] {
opacity: 0.5;
pointer-events: none;
}
// ! FIX: mode switch position in RTL
[dir='rtl'] {
.template-customizer-t-style_switch_light {
padding-right: 0 !important;
}
}