-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path_rating.scss
104 lines (84 loc) · 2.29 KB
/
_rating.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
@use "functions/escape-svg" as *;
@use "mixins/transition" as *;
@use "variables" as *;
.rating {
// scss-docs-start rating-css-vars
--#{$prefix}rating-gap: #{$rating-gap};
--#{$prefix}rating-transition: #{$rating-transition};
--#{$prefix}rating-item-height: #{$rating-item-height};
--#{$prefix}rating-item-color: #{$rating-item-color};
--#{$prefix}rating-item-scale-transform: #{$rating-item-scale-transform};
--#{$prefix}rating-item-active-color: #{$rating-item-active-color};
--#{$prefix}rating-item-icon: #{escape-svg($rating-item-icon)};
// scss-docs-end rating-css-vars
display: flex;
gap: var(--#{$prefix}rating-gap);
&.disabled {
opacity: 50%;
}
&:not(.disabled):not(.readonly) {
.rating-item:hover {
transform: var(--#{$prefix}rating-item-scale-transform);
}
.rating-item-icon,
.rating-item-label {
cursor: pointer;
}
}
}
.rating-item {
position: relative;
line-height: 0;
@include transition(var(--#{$prefix}rating-transition));
}
.rating-item-input {
position: absolute;
left: 0;
z-index: -1;
width: 100%;
height: 100%;
appearance: none;
}
.rating-item-label {
font-size: var(--#{$prefix}rating-item-height);
line-height: 0;
color: var(--#{$prefix}rating-item-color);
* {
pointer-events: none;
}
svg {
height: var(--#{$prefix}rating-item-height);
pointer-events: none;
* {
pointer-events: none;
}
}
&.active {
color: var(--#{$prefix}rating-item-active-color);
opacity: 1 !important; // stylelint-disable-line declaration-no-important
.rating-item-icon {
background-color: var(--#{$prefix}rating-item-active-color);
}
.rating-item-custom-icon:has(+ .rating-item-custom-icon-active) {
display: none;
}
.rating-item-custom-icon-active {
display: initial;
}
}
}
.rating-item-icon {
width: var(--#{$prefix}rating-item-height);
height: var(--#{$prefix}rating-item-height);
background-color: var(--#{$prefix}rating-item-color);
mask: var(--#{$prefix}rating-item-icon) center / var(--#{$prefix}rating-item-height) no-repeat;
}
.rating-item-custom-icon-active {
display: none;
}
.rating-sm {
--#{$prefix}rating-item-height: #{$rating-item-height-sm};
}
.rating-lg {
--#{$prefix}rating-item-height: #{$rating-item-height-lg};
}