mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
35 lines
590 B
SCSS
35 lines
590 B
SCSS
.adf-rating-container {
|
|
overflow: hidden;
|
|
width: 100%;
|
|
|
|
.adf-rating-star {
|
|
float: left;
|
|
transition: all .3s;
|
|
padding: 1px;
|
|
cursor: pointer;
|
|
|
|
.mat-list-item-content {
|
|
padding: 0 2px !important;
|
|
}
|
|
}
|
|
|
|
.adf-colored-star {
|
|
color: #ffe944;
|
|
}
|
|
|
|
.adf-grey-star {
|
|
color: #808080;
|
|
}
|
|
|
|
.adf-stars-container {
|
|
padding: 0 !important;
|
|
margin: 0 !important;
|
|
display: inline-block;
|
|
}
|
|
|
|
.adf-rating-star:hover {
|
|
transform: rotate(13deg) scale(1.2);
|
|
}
|
|
|
|
}
|