mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
713 B
48 lines
713 B
@import '_mixins';
|
|
@import '_vars';
|
|
|
|
$color-gold: #ffd700;
|
|
|
|
.many-stars {
|
|
color: $color-text-decent;
|
|
}
|
|
|
|
.stars {
|
|
& {
|
|
display: inline-block;
|
|
border: 0;
|
|
height: 2.4rem;
|
|
line-height: 2.4rem;
|
|
}
|
|
|
|
&.disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
&-container {
|
|
height: 2.4rem;
|
|
}
|
|
}
|
|
|
|
.star {
|
|
& {
|
|
background: transparent;
|
|
border: 0;
|
|
line-height: 1px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
&::before {
|
|
display: inline-block;
|
|
color: $color-gold;
|
|
content: '☆';
|
|
font-size: 1.8rem;
|
|
line-height: 1px;
|
|
}
|
|
|
|
&.selected {
|
|
&::before {
|
|
content: '★';
|
|
}
|
|
}
|
|
}
|