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 @@
import 'rateyo/src/jquery.rateyo';

View File

@ -0,0 +1,97 @@
// Rateyo
// *******************************************************************************
@use '../../scss/_bootstrap-extended/include' as light;
@use '../../scss/_bootstrap-extended/include-dark' as dark;
@import 'rateyo/src/jquery.rateyo';
@import '../../scss/_custom-variables/libs';
// For Horizontal menu-item, z-index overrides
.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group,
.jq-ry-container > .jq-ry-group-wrapper > .jq-ry-group.jq-ry-rated-group {
z-index: 8;
}
// Light Style
@if $enable-light-style {
.light-style {
$unratedStarColor: light.rgba-to-hex(rgba(light.$black, 0.16), light.$rgba-to-hex-bg);
$ratedStarColor: light.$yellow;
.jq-ry-container {
padding: 0;
}
@include app-ltr-style {
.jq-ry-container {
.jq-ry-normal-group {
svg {
fill: $unratedStarColor;
}
}
}
.jq-ry-container:not(.multi-color-ratings) {
.jq-ry-rated-group {
svg {
fill: $ratedStarColor;
}
}
}
}
@include app-rtl-style {
.jq-ry-container:not(.multi-color-ratings) {
.jq-ry-normal-group {
svg {
fill: $ratedStarColor;
}
}
}
.jq-ry-container {
.jq-ry-rated-group {
svg {
fill: light.rgba-to-hex($unratedStarColor, light.$rgba-to-hex-bg);
}
}
}
}
}
}
// Dark Style
@if $enable-dark-style {
.dark-style {
$unratedStarColor: dark.rgba-to-hex(rgba(dark.$base, 0.16), dark.$rgba-to-hex-bg);
$ratedStarColor: dark.$yellow;
@include app-ltr-style {
.jq-ry-container {
.jq-ry-normal-group {
svg {
fill: $unratedStarColor;
}
}
}
.jq-ry-container:not(.multi-color-ratings) {
.jq-ry-rated-group {
svg {
fill: $ratedStarColor;
}
}
}
}
@include app-rtl-style {
.jq-ry-container:not(.multi-color-ratings) {
.jq-ry-normal-group {
svg {
fill: $ratedStarColor;
}
}
}
.jq-ry-container {
.jq-ry-rated-group {
svg {
fill: dark.rgba-to-hex($unratedStarColor, dark.$rgba-to-hex-bg);
}
}
}
}
}
}