bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/meeting-ended/rating/styles.scss
Oswaldo Acauan f71d32a464 Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
WIP

wip

wip

format

wip

Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
2018-10-23 14:21:58 -02:00

62 lines
1.1 KiB
SCSS
Executable File

@import "/imports/ui/stylesheets/variables/_all";
.starRating {
font-family: 'bbb-icons' !important;
> fieldset {
border: none;
display: inline-block;
&:not(:checked) {
> input {
position: absolute;
top: -9999px;
clip: rect(0,0,0,0);
}
> label {
float: right;
width: 1em;
padding: 0 .05em;
overflow: hidden;
white-space: nowrap;
cursor: pointer;
font-size: 2.5rem;
padding-left: .1rem;
color: black;
font-weight: 100;
@include mq($small-only) {
font-size: 2rem;
}
&:before {
content: '\e951';
}
&:hover,
&:hover ~ label {
color: var(--color-primary);
text-shadow: 0 0 3px var(--color-primary);
&:before {
content: '\e951';
}
}
}
}
> input:checked {
& ~ label {
&:before {
content: '\e952';
color: var(--color-primary);
}
}
}
> label:active {
position: relative;
top: 2px;
}
}
}