Initial commit

This commit is contained in:
dahoud
2025-10-01 01:39:07 +00:00
commit b430bf3b96
826 changed files with 255287 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
.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);
}
}
}
}
}