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,11 @@
@import '../../scss/_custom-variables/libs';
// Background & Primary color for picker
@mixin colorPicker-theme($background) {
.pcr-app {
.pcr-type.active,
.pcr-save {
background: $background !important;
}
}
}

View File

@ -0,0 +1,15 @@
@import '@simonwep/pickr/dist/themes/classic.min';
@import '../../scss/_custom-variables/libs';
@include app-rtl(false) {
.pcr-app[data-theme='classic'] .pcr-selection .pcr-color-preview {
margin-right: inherit;
margin-left: 0.75em;
}
.pcr-app[data-theme='classic'] .pcr-selection .pcr-color-chooser,
.pcr-app[data-theme='classic'] .pcr-selection .pcr-color-opacity {
margin-left: inherit;
margin-right: 0.75em;
}
}

View File

@ -0,0 +1,10 @@
@import '@simonwep/pickr/dist/themes/monolith.min';
@include app-rtl(false) {
.pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview .pcr-last-color {
border-radius: 0 0.15em 0.15em 0;
}
.pcr-app[data-theme='monolith'] .pcr-selection .pcr-color-preview .pcr-current-color {
border-radius: 0.15em 0 0 0.15em;
}
}

View File

@ -0,0 +1,7 @@
@import '@simonwep/pickr/dist/themes/nano.min';
@include app-rtl(false) {
.pcr-app[data-theme='nano'] .pcr-selection .pcr-color-preview {
margin-right: 0.6em;
}
}

View File

@ -0,0 +1,39 @@
// Pickr
// *******************************************************************************
@use '../../scss/_bootstrap-extended/include' as light;
@use '../../scss/_bootstrap-extended/include-dark' as dark;
@import '../../scss/_custom-variables/libs';
@import 'pickr-classic';
@import 'pickr-monolith';
@import 'pickr-nano';
@import 'mixins';
@if $enable-light-style {
.light-style {
.pcr-app {
.pcr-interaction input:focus {
box-shadow: light.$box-shadow;
}
}
}
}
// Dark style for pickr
@if $enable-dark-style {
.dark-style {
.pcr-app {
background: dark.$card-bg !important;
.pcr-type:not(.active),
.pcr-result {
background: dark.$dropdown-bg !important;
color: dark.$white !important;
}
.pcr-interaction input:focus {
box-shadow: dark.$box-shadow;
}
}
}
}

View File

@ -0,0 +1,7 @@
import pickr from '@simonwep/pickr/dist/pickr.es5.min';
try {
window.pickr = pickr;
} catch (e) {}
export { pickr };