Files
btpxpress-frontend/public/theme/extensions/_rating.scss

30 lines
651 B
SCSS
Executable File

.p-rating {
gap: 0;
.p-rating-item {
border-radius: 50%;
width: 2rem;
height: 2rem;
justify-content: center;
&.p-focus {
background: rgba($primaryColor, .12);
&.p-rating-cancel-item {
background: rgba($ratingCancelIconColor, .12);
}
}
}
&:not(.p-disabled):not(.p-readonly) {
.p-rating-item {
&:hover {
background-color: rgba(0,0,0,.04);
&.p-rating-cancel-item {
background: rgba($ratingCancelIconColor, .04);
}
}
}
}
}