Files
sccs_laravel/resources/scss/base/plugins/extensions/ext-component-ratings.scss
2025-11-04 16:23:40 +05:00

58 lines
960 B
SCSS

@import '../../bootstrap-extended/include'; // Bootstrap includes
@import '../../components/include'; // Components includes
.jq-ry-container:not(.multi-color-ratings) {
.jq-ry-normal-group {
i,
svg {
fill: $gray-100;
}
}
.jq-ry-rated-group {
i,
svg {
fill: $warning;
}
}
}
// Dark Layout
.dark-layout {
.jq-ry-container:not(.multi-color-ratings) {
.jq-ry-normal-group {
i,
svg {
fill: $theme-dark-text-muted-color;
}
}
}
}
// RTL
[data-textdirection='rtl'] {
.jq-ry-container:not(.multi-color-ratings) {
.jq-ry-normal-group {
i,
svg {
fill: $warning;
}
}
.jq-ry-rated-group {
i,
svg {
fill: $gray-100;
}
}
}
.dark-layout {
.jq-ry-container:not(.multi-color-ratings) {
.jq-ry-rated-group {
i,
svg {
fill: $theme-dark-text-muted-color;
}
}
}
}
}