fomantic-ui-sass 2.7.8 → 2.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +83 -29
- data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +59 -41
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.svg +3 -3
- data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
- data/app/assets/javascripts/semantic-ui/api.js +1 -1
- data/app/assets/javascripts/semantic-ui/calendar.js +103 -27
- data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +93 -71
- data/app/assets/javascripts/semantic-ui/form.js +69 -22
- data/app/assets/javascripts/semantic-ui/modal.js +104 -33
- data/app/assets/javascripts/semantic-ui/popup.js +10 -10
- data/app/assets/javascripts/semantic-ui/progress.js +10 -8
- data/app/assets/javascripts/semantic-ui/rating.js +35 -6
- data/app/assets/javascripts/semantic-ui/search.js +2 -2
- data/app/assets/javascripts/semantic-ui/sidebar.js +2 -3
- data/app/assets/javascripts/semantic-ui/slider.js +78 -29
- data/app/assets/javascripts/semantic-ui/tab.js +1 -1
- data/app/assets/javascripts/semantic-ui/toast.js +398 -122
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +779 -142
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +35 -35
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +101 -145
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +11 -11
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1009 -208
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +51 -81
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +35 -14
- data/app/assets/stylesheets/semantic-ui/elements/_emoji.scss +12309 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +111 -66
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +105 -34
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +28 -28
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +211 -62
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +20 -20
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +52 -51
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +85 -91
- data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +8 -8
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +11 -11
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +31 -10
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +39 -39
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +16 -17
- data/app/assets/stylesheets/semantic-ui/elements/_text.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +15 -124
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +30 -30
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +183 -111
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +12 -12
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +128 -30
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +105 -79
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +44 -26
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +246 -21
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +16 -13
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +3 -2
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +12 -14
- data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +20 -23
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +542 -155
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +16 -16
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +42 -17
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +9 -9
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +20 -5
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +33 -12
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +60 -46
- data/fomantic-ui-sass.gemspec +2 -2
- data/lib/fomantic-ui-sass.rb +2 -2
- data/lib/fomantic/ui/sass/version.rb +2 -2
- data/spec/dummy/app/assets/config/manifest.js +0 -0
- metadata +12 -9
@@ -231,8 +231,8 @@
|
|
231
231
|
|
232
232
|
|
233
233
|
/*--------------
|
234
|
-
|
235
|
-
---------------*/
|
234
|
+
Success
|
235
|
+
---------------*/
|
236
236
|
|
237
237
|
.ui.ui.progress.success .bar {
|
238
238
|
background-color: #21BA45;
|
@@ -247,8 +247,8 @@
|
|
247
247
|
}
|
248
248
|
|
249
249
|
/*--------------
|
250
|
-
|
251
|
-
---------------*/
|
250
|
+
Warning
|
251
|
+
---------------*/
|
252
252
|
|
253
253
|
.ui.ui.progress.warning .bar {
|
254
254
|
background-color: #F2C037;
|
@@ -263,8 +263,8 @@
|
|
263
263
|
}
|
264
264
|
|
265
265
|
/*--------------
|
266
|
-
|
267
|
-
---------------*/
|
266
|
+
Error
|
267
|
+
---------------*/
|
268
268
|
|
269
269
|
.ui.ui.progress.error .bar {
|
270
270
|
background-color: #DB2828;
|
@@ -279,8 +279,8 @@
|
|
279
279
|
}
|
280
280
|
|
281
281
|
/*--------------
|
282
|
-
|
283
|
-
---------------*/
|
282
|
+
Active
|
283
|
+
---------------*/
|
284
284
|
|
285
285
|
.ui.active.progress .bar {
|
286
286
|
position: relative;
|
@@ -327,8 +327,8 @@
|
|
327
327
|
}
|
328
328
|
|
329
329
|
/*--------------
|
330
|
-
|
331
|
-
---------------*/
|
330
|
+
Disabled
|
331
|
+
---------------*/
|
332
332
|
|
333
333
|
.ui.disabled.progress {
|
334
334
|
opacity: 0.35;
|
@@ -346,8 +346,8 @@
|
|
346
346
|
|
347
347
|
|
348
348
|
/*--------------
|
349
|
-
|
350
|
-
---------------*/
|
349
|
+
Inverted
|
350
|
+
---------------*/
|
351
351
|
|
352
352
|
.ui.inverted.progress {
|
353
353
|
background: rgba(255, 255, 255, 0.08);
|
@@ -373,8 +373,8 @@
|
|
373
373
|
}
|
374
374
|
|
375
375
|
/*--------------
|
376
|
-
|
377
|
-
---------------*/
|
376
|
+
Attached
|
377
|
+
---------------*/
|
378
378
|
|
379
379
|
|
380
380
|
/* bottom attached */
|
@@ -580,6 +580,18 @@
|
|
580
580
|
Sizes
|
581
581
|
---------------*/
|
582
582
|
|
583
|
+
.ui.progress {
|
584
|
+
font-size: 1rem;
|
585
|
+
}
|
586
|
+
.ui.progress .bar {
|
587
|
+
height: 1.75em;
|
588
|
+
}
|
589
|
+
.ui.mini.progress {
|
590
|
+
font-size: 0.78571429rem;
|
591
|
+
}
|
592
|
+
.ui.mini.progress .bar {
|
593
|
+
height: 0.3em;
|
594
|
+
}
|
583
595
|
.ui.tiny.progress {
|
584
596
|
font-size: 0.85714286rem;
|
585
597
|
}
|
@@ -592,12 +604,6 @@
|
|
592
604
|
.ui.small.progress .bar {
|
593
605
|
height: 1em;
|
594
606
|
}
|
595
|
-
.ui.progress {
|
596
|
-
font-size: 1rem;
|
597
|
-
}
|
598
|
-
.ui.progress .bar {
|
599
|
-
height: 1.75em;
|
600
|
-
}
|
601
607
|
.ui.large.progress {
|
602
608
|
font-size: 1.14285714rem;
|
603
609
|
}
|
@@ -610,10 +616,22 @@
|
|
610
616
|
.ui.big.progress .bar {
|
611
617
|
height: 3.5em;
|
612
618
|
}
|
619
|
+
.ui.huge.progress {
|
620
|
+
font-size: 1.42857143rem;
|
621
|
+
}
|
622
|
+
.ui.huge.progress .bar {
|
623
|
+
height: 4em;
|
624
|
+
}
|
625
|
+
.ui.massive.progress {
|
626
|
+
font-size: 1.71428571rem;
|
627
|
+
}
|
628
|
+
.ui.massive.progress .bar {
|
629
|
+
height: 5em;
|
630
|
+
}
|
613
631
|
|
614
632
|
/*---------------
|
615
|
-
|
616
|
-
----------------*/
|
633
|
+
Indeterminate
|
634
|
+
----------------*/
|
617
635
|
|
618
636
|
.ui.indeterminate.progress .bar {
|
619
637
|
width: 100%;
|
@@ -667,15 +685,15 @@
|
|
667
685
|
.ui.filling.indeterminate.progress .bar {
|
668
686
|
background: rgba(0, 0, 0, 0.1);
|
669
687
|
}
|
688
|
+
.ui.sliding.indeterminate.progress .bar .progress,
|
689
|
+
.ui.swinging.indeterminate.progress .bar .progress {
|
690
|
+
color: #1B1C1D;
|
691
|
+
}
|
670
692
|
.ui.inverted.sliding.indeterminate.progress .bar,
|
671
693
|
.ui.inverted.swinging.indeterminate.progress .bar,
|
672
694
|
.ui.inverted.filling.indeterminate.progress .bar {
|
673
695
|
background: rgba(255, 255, 255, 0.08);
|
674
696
|
}
|
675
|
-
.ui.sliding.indeterminate.progress .bar .progress,
|
676
|
-
.ui.swinging.indeterminate.progress .bar .progress {
|
677
|
-
color: #1B1C1D;
|
678
|
-
}
|
679
697
|
.ui.inverted.sliding.indeterminate.progress .bar .progress,
|
680
698
|
.ui.inverted.swinging.indeterminate.progress .bar .progress {
|
681
699
|
color: rgba(255, 255, 255, 0.7);
|
@@ -67,11 +67,23 @@
|
|
67
67
|
color: rgba(0, 0, 0, 0.85);
|
68
68
|
}
|
69
69
|
|
70
|
+
/* Partially Active Icon */
|
71
|
+
.ui.rating .icon.partial.active {
|
72
|
+
background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.15)));
|
73
|
+
background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.85) 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
74
|
+
background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
75
|
+
-webkit-background-clip: text;
|
76
|
+
background-clip: text;
|
77
|
+
color: transparent;
|
78
|
+
}
|
79
|
+
|
70
80
|
/* Selected Icon */
|
71
81
|
.ui.rating .icon.selected,
|
72
|
-
.ui.rating .icon.selected.active
|
82
|
+
.ui.rating .icon.selected.active,
|
83
|
+
.ui.rating .icon.selected.partial.active {
|
73
84
|
background: transparent;
|
74
85
|
color: rgba(0, 0, 0, 0.87);
|
86
|
+
background-clip: unset;
|
75
87
|
}
|
76
88
|
|
77
89
|
/*--------------
|
@@ -83,135 +95,345 @@
|
|
83
95
|
text-shadow: 0px -1px 0px #2185D0, -1px 0px 0px #2185D0, 0px 1px 0px #2185D0, 1px 0px 0px #2185D0;
|
84
96
|
}
|
85
97
|
.ui.primary.rating .icon.selected,
|
86
|
-
.ui.primary.rating .icon.selected.active
|
98
|
+
.ui.primary.rating .icon.selected.active,
|
99
|
+
.ui.primary.rating .icon.selected.partial.active {
|
100
|
+
background: inherit;
|
87
101
|
color: #21b8ff;
|
88
102
|
text-shadow: 0px -1px 0px #1678c2, -1px 0px 0px #1678c2, 0px 1px 0px #1678c2, 1px 0px 0px #1678c2;
|
103
|
+
-webkit-text-stroke: unset;
|
104
|
+
background-clip: unset;
|
105
|
+
}
|
106
|
+
.ui.primary.rating .icon.partial.active {
|
107
|
+
background: -webkit-gradient(linear, left top, right top, from(#54C8FF), to(rgba(0, 0, 0, 0.15)));
|
108
|
+
background: -webkit-linear-gradient(left, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
109
|
+
background: linear-gradient(to right, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
110
|
+
text-shadow: none;
|
111
|
+
-webkit-text-stroke: #2185D0 0.78px;
|
112
|
+
-webkit-background-clip: text;
|
113
|
+
background-clip: text;
|
114
|
+
color: transparent;
|
89
115
|
}
|
90
116
|
.ui.secondary.rating .active.icon {
|
91
117
|
color: #545454;
|
92
118
|
text-shadow: 0px -1px 0px #1B1C1D, -1px 0px 0px #1B1C1D, 0px 1px 0px #1B1C1D, 1px 0px 0px #1B1C1D;
|
93
119
|
}
|
94
120
|
.ui.secondary.rating .icon.selected,
|
95
|
-
.ui.secondary.rating .icon.selected.active
|
121
|
+
.ui.secondary.rating .icon.selected.active,
|
122
|
+
.ui.secondary.rating .icon.selected.partial.active {
|
123
|
+
background: inherit;
|
96
124
|
color: #6e6e6e;
|
97
125
|
text-shadow: 0px -1px 0px #27292a, -1px 0px 0px #27292a, 0px 1px 0px #27292a, 1px 0px 0px #27292a;
|
126
|
+
-webkit-text-stroke: unset;
|
127
|
+
background-clip: unset;
|
128
|
+
}
|
129
|
+
.ui.secondary.rating .icon.partial.active {
|
130
|
+
background: -webkit-gradient(linear, left top, right top, from(#545454), to(rgba(0, 0, 0, 0.15)));
|
131
|
+
background: -webkit-linear-gradient(left, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
132
|
+
background: linear-gradient(to right, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
133
|
+
text-shadow: none;
|
134
|
+
-webkit-text-stroke: #1B1C1D 0.78px;
|
135
|
+
-webkit-background-clip: text;
|
136
|
+
background-clip: text;
|
137
|
+
color: transparent;
|
98
138
|
}
|
99
139
|
.ui.red.rating .active.icon {
|
100
140
|
color: #FF695E;
|
101
141
|
text-shadow: 0px -1px 0px #DB2828, -1px 0px 0px #DB2828, 0px 1px 0px #DB2828, 1px 0px 0px #DB2828;
|
102
142
|
}
|
103
143
|
.ui.red.rating .icon.selected,
|
104
|
-
.ui.red.rating .icon.selected.active
|
144
|
+
.ui.red.rating .icon.selected.active,
|
145
|
+
.ui.red.rating .icon.selected.partial.active {
|
146
|
+
background: inherit;
|
105
147
|
color: #ff392b;
|
106
148
|
text-shadow: 0px -1px 0px #d01919, -1px 0px 0px #d01919, 0px 1px 0px #d01919, 1px 0px 0px #d01919;
|
149
|
+
-webkit-text-stroke: unset;
|
150
|
+
background-clip: unset;
|
151
|
+
}
|
152
|
+
.ui.red.rating .icon.partial.active {
|
153
|
+
background: -webkit-gradient(linear, left top, right top, from(#FF695E), to(rgba(0, 0, 0, 0.15)));
|
154
|
+
background: -webkit-linear-gradient(left, #FF695E 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
155
|
+
background: linear-gradient(to right, #FF695E 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
156
|
+
text-shadow: none;
|
157
|
+
-webkit-text-stroke: #DB2828 0.78px;
|
158
|
+
-webkit-background-clip: text;
|
159
|
+
background-clip: text;
|
160
|
+
color: transparent;
|
107
161
|
}
|
108
162
|
.ui.orange.rating .active.icon {
|
109
163
|
color: #FF851B;
|
110
164
|
text-shadow: 0px -1px 0px #F2711C, -1px 0px 0px #F2711C, 0px 1px 0px #F2711C, 1px 0px 0px #F2711C;
|
111
165
|
}
|
112
166
|
.ui.orange.rating .icon.selected,
|
113
|
-
.ui.orange.rating .icon.selected.active
|
167
|
+
.ui.orange.rating .icon.selected.active,
|
168
|
+
.ui.orange.rating .icon.selected.partial.active {
|
169
|
+
background: inherit;
|
114
170
|
color: #e76b00;
|
115
171
|
text-shadow: 0px -1px 0px #f26202, -1px 0px 0px #f26202, 0px 1px 0px #f26202, 1px 0px 0px #f26202;
|
172
|
+
-webkit-text-stroke: unset;
|
173
|
+
background-clip: unset;
|
174
|
+
}
|
175
|
+
.ui.orange.rating .icon.partial.active {
|
176
|
+
background: -webkit-gradient(linear, left top, right top, from(#FF851B), to(rgba(0, 0, 0, 0.15)));
|
177
|
+
background: -webkit-linear-gradient(left, #FF851B 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
178
|
+
background: linear-gradient(to right, #FF851B 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
179
|
+
text-shadow: none;
|
180
|
+
-webkit-text-stroke: #F2711C 0.78px;
|
181
|
+
-webkit-background-clip: text;
|
182
|
+
background-clip: text;
|
183
|
+
color: transparent;
|
116
184
|
}
|
117
185
|
.ui.yellow.rating .active.icon {
|
118
186
|
color: #FFE21F;
|
119
187
|
text-shadow: 0px -1px 0px #FBBD08, -1px 0px 0px #FBBD08, 0px 1px 0px #FBBD08, 1px 0px 0px #FBBD08;
|
120
188
|
}
|
121
189
|
.ui.yellow.rating .icon.selected,
|
122
|
-
.ui.yellow.rating .icon.selected.active
|
190
|
+
.ui.yellow.rating .icon.selected.active,
|
191
|
+
.ui.yellow.rating .icon.selected.partial.active {
|
192
|
+
background: inherit;
|
123
193
|
color: #ebcd00;
|
124
194
|
text-shadow: 0px -1px 0px #eaae00, -1px 0px 0px #eaae00, 0px 1px 0px #eaae00, 1px 0px 0px #eaae00;
|
195
|
+
-webkit-text-stroke: unset;
|
196
|
+
background-clip: unset;
|
197
|
+
}
|
198
|
+
.ui.yellow.rating .icon.partial.active {
|
199
|
+
background: -webkit-gradient(linear, left top, right top, from(#FFE21F), to(rgba(0, 0, 0, 0.15)));
|
200
|
+
background: -webkit-linear-gradient(left, #FFE21F 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
201
|
+
background: linear-gradient(to right, #FFE21F 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
202
|
+
text-shadow: none;
|
203
|
+
-webkit-text-stroke: #FBBD08 0.78px;
|
204
|
+
-webkit-background-clip: text;
|
205
|
+
background-clip: text;
|
206
|
+
color: transparent;
|
125
207
|
}
|
126
208
|
.ui.olive.rating .active.icon {
|
127
209
|
color: #D9E778;
|
128
210
|
text-shadow: 0px -1px 0px #B5CC18, -1px 0px 0px #B5CC18, 0px 1px 0px #B5CC18, 1px 0px 0px #B5CC18;
|
129
211
|
}
|
130
212
|
.ui.olive.rating .icon.selected,
|
131
|
-
.ui.olive.rating .icon.selected.active
|
213
|
+
.ui.olive.rating .icon.selected.active,
|
214
|
+
.ui.olive.rating .icon.selected.partial.active {
|
215
|
+
background: inherit;
|
132
216
|
color: #d2e745;
|
133
217
|
text-shadow: 0px -1px 0px #a7bd0d, -1px 0px 0px #a7bd0d, 0px 1px 0px #a7bd0d, 1px 0px 0px #a7bd0d;
|
218
|
+
-webkit-text-stroke: unset;
|
219
|
+
background-clip: unset;
|
220
|
+
}
|
221
|
+
.ui.olive.rating .icon.partial.active {
|
222
|
+
background: -webkit-gradient(linear, left top, right top, from(#D9E778), to(rgba(0, 0, 0, 0.15)));
|
223
|
+
background: -webkit-linear-gradient(left, #D9E778 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
224
|
+
background: linear-gradient(to right, #D9E778 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
225
|
+
text-shadow: none;
|
226
|
+
-webkit-text-stroke: #B5CC18 0.78px;
|
227
|
+
-webkit-background-clip: text;
|
228
|
+
background-clip: text;
|
229
|
+
color: transparent;
|
134
230
|
}
|
135
231
|
.ui.green.rating .active.icon {
|
136
232
|
color: #2ECC40;
|
137
233
|
text-shadow: 0px -1px 0px #21BA45, -1px 0px 0px #21BA45, 0px 1px 0px #21BA45, 1px 0px 0px #21BA45;
|
138
234
|
}
|
139
235
|
.ui.green.rating .icon.selected,
|
140
|
-
.ui.green.rating .icon.selected.active
|
236
|
+
.ui.green.rating .icon.selected.active,
|
237
|
+
.ui.green.rating .icon.selected.partial.active {
|
238
|
+
background: inherit;
|
141
239
|
color: #1ea92e;
|
142
240
|
text-shadow: 0px -1px 0px #16ab39, -1px 0px 0px #16ab39, 0px 1px 0px #16ab39, 1px 0px 0px #16ab39;
|
241
|
+
-webkit-text-stroke: unset;
|
242
|
+
background-clip: unset;
|
243
|
+
}
|
244
|
+
.ui.green.rating .icon.partial.active {
|
245
|
+
background: -webkit-gradient(linear, left top, right top, from(#2ECC40), to(rgba(0, 0, 0, 0.15)));
|
246
|
+
background: -webkit-linear-gradient(left, #2ECC40 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
247
|
+
background: linear-gradient(to right, #2ECC40 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
248
|
+
text-shadow: none;
|
249
|
+
-webkit-text-stroke: #21BA45 0.78px;
|
250
|
+
-webkit-background-clip: text;
|
251
|
+
background-clip: text;
|
252
|
+
color: transparent;
|
143
253
|
}
|
144
254
|
.ui.teal.rating .active.icon {
|
145
255
|
color: #6DFFFF;
|
146
256
|
text-shadow: 0px -1px 0px #00B5AD, -1px 0px 0px #00B5AD, 0px 1px 0px #00B5AD, 1px 0px 0px #00B5AD;
|
147
257
|
}
|
148
258
|
.ui.teal.rating .icon.selected,
|
149
|
-
.ui.teal.rating .icon.selected.active
|
259
|
+
.ui.teal.rating .icon.selected.active,
|
260
|
+
.ui.teal.rating .icon.selected.partial.active {
|
261
|
+
background: inherit;
|
150
262
|
color: #3affff;
|
151
263
|
text-shadow: 0px -1px 0px #009c95, -1px 0px 0px #009c95, 0px 1px 0px #009c95, 1px 0px 0px #009c95;
|
264
|
+
-webkit-text-stroke: unset;
|
265
|
+
background-clip: unset;
|
266
|
+
}
|
267
|
+
.ui.teal.rating .icon.partial.active {
|
268
|
+
background: -webkit-gradient(linear, left top, right top, from(#6DFFFF), to(rgba(0, 0, 0, 0.15)));
|
269
|
+
background: -webkit-linear-gradient(left, #6DFFFF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
270
|
+
background: linear-gradient(to right, #6DFFFF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
271
|
+
text-shadow: none;
|
272
|
+
-webkit-text-stroke: #00B5AD 0.78px;
|
273
|
+
-webkit-background-clip: text;
|
274
|
+
background-clip: text;
|
275
|
+
color: transparent;
|
152
276
|
}
|
153
277
|
.ui.blue.rating .active.icon {
|
154
278
|
color: #54C8FF;
|
155
279
|
text-shadow: 0px -1px 0px #2185D0, -1px 0px 0px #2185D0, 0px 1px 0px #2185D0, 1px 0px 0px #2185D0;
|
156
280
|
}
|
157
281
|
.ui.blue.rating .icon.selected,
|
158
|
-
.ui.blue.rating .icon.selected.active
|
282
|
+
.ui.blue.rating .icon.selected.active,
|
283
|
+
.ui.blue.rating .icon.selected.partial.active {
|
284
|
+
background: inherit;
|
159
285
|
color: #21b8ff;
|
160
286
|
text-shadow: 0px -1px 0px #1678c2, -1px 0px 0px #1678c2, 0px 1px 0px #1678c2, 1px 0px 0px #1678c2;
|
287
|
+
-webkit-text-stroke: unset;
|
288
|
+
background-clip: unset;
|
289
|
+
}
|
290
|
+
.ui.blue.rating .icon.partial.active {
|
291
|
+
background: -webkit-gradient(linear, left top, right top, from(#54C8FF), to(rgba(0, 0, 0, 0.15)));
|
292
|
+
background: -webkit-linear-gradient(left, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
293
|
+
background: linear-gradient(to right, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
294
|
+
text-shadow: none;
|
295
|
+
-webkit-text-stroke: #2185D0 0.78px;
|
296
|
+
-webkit-background-clip: text;
|
297
|
+
background-clip: text;
|
298
|
+
color: transparent;
|
161
299
|
}
|
162
300
|
.ui.violet.rating .active.icon {
|
163
301
|
color: #A291FB;
|
164
302
|
text-shadow: 0px -1px 0px #6435C9, -1px 0px 0px #6435C9, 0px 1px 0px #6435C9, 1px 0px 0px #6435C9;
|
165
303
|
}
|
166
304
|
.ui.violet.rating .icon.selected,
|
167
|
-
.ui.violet.rating .icon.selected.active
|
305
|
+
.ui.violet.rating .icon.selected.active,
|
306
|
+
.ui.violet.rating .icon.selected.partial.active {
|
307
|
+
background: inherit;
|
168
308
|
color: #745aff;
|
169
309
|
text-shadow: 0px -1px 0px #5829bb, -1px 0px 0px #5829bb, 0px 1px 0px #5829bb, 1px 0px 0px #5829bb;
|
310
|
+
-webkit-text-stroke: unset;
|
311
|
+
background-clip: unset;
|
312
|
+
}
|
313
|
+
.ui.violet.rating .icon.partial.active {
|
314
|
+
background: -webkit-gradient(linear, left top, right top, from(#A291FB), to(rgba(0, 0, 0, 0.15)));
|
315
|
+
background: -webkit-linear-gradient(left, #A291FB 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
316
|
+
background: linear-gradient(to right, #A291FB 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
317
|
+
text-shadow: none;
|
318
|
+
-webkit-text-stroke: #6435C9 0.78px;
|
319
|
+
-webkit-background-clip: text;
|
320
|
+
background-clip: text;
|
321
|
+
color: transparent;
|
170
322
|
}
|
171
323
|
.ui.purple.rating .active.icon {
|
172
324
|
color: #DC73FF;
|
173
325
|
text-shadow: 0px -1px 0px #A333C8, -1px 0px 0px #A333C8, 0px 1px 0px #A333C8, 1px 0px 0px #A333C8;
|
174
326
|
}
|
175
327
|
.ui.purple.rating .icon.selected,
|
176
|
-
.ui.purple.rating .icon.selected.active
|
328
|
+
.ui.purple.rating .icon.selected.active,
|
329
|
+
.ui.purple.rating .icon.selected.partial.active {
|
330
|
+
background: inherit;
|
177
331
|
color: #cf40ff;
|
178
332
|
text-shadow: 0px -1px 0px #9627ba, -1px 0px 0px #9627ba, 0px 1px 0px #9627ba, 1px 0px 0px #9627ba;
|
333
|
+
-webkit-text-stroke: unset;
|
334
|
+
background-clip: unset;
|
335
|
+
}
|
336
|
+
.ui.purple.rating .icon.partial.active {
|
337
|
+
background: -webkit-gradient(linear, left top, right top, from(#DC73FF), to(rgba(0, 0, 0, 0.15)));
|
338
|
+
background: -webkit-linear-gradient(left, #DC73FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
339
|
+
background: linear-gradient(to right, #DC73FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
340
|
+
text-shadow: none;
|
341
|
+
-webkit-text-stroke: #A333C8 0.78px;
|
342
|
+
-webkit-background-clip: text;
|
343
|
+
background-clip: text;
|
344
|
+
color: transparent;
|
179
345
|
}
|
180
346
|
.ui.pink.rating .active.icon {
|
181
347
|
color: #FF8EDF;
|
182
348
|
text-shadow: 0px -1px 0px #E03997, -1px 0px 0px #E03997, 0px 1px 0px #E03997, 1px 0px 0px #E03997;
|
183
349
|
}
|
184
350
|
.ui.pink.rating .icon.selected,
|
185
|
-
.ui.pink.rating .icon.selected.active
|
351
|
+
.ui.pink.rating .icon.selected.active,
|
352
|
+
.ui.pink.rating .icon.selected.partial.active {
|
353
|
+
background: inherit;
|
186
354
|
color: #ff5bd1;
|
187
355
|
text-shadow: 0px -1px 0px #e61a8d, -1px 0px 0px #e61a8d, 0px 1px 0px #e61a8d, 1px 0px 0px #e61a8d;
|
356
|
+
-webkit-text-stroke: unset;
|
357
|
+
background-clip: unset;
|
358
|
+
}
|
359
|
+
.ui.pink.rating .icon.partial.active {
|
360
|
+
background: -webkit-gradient(linear, left top, right top, from(#FF8EDF), to(rgba(0, 0, 0, 0.15)));
|
361
|
+
background: -webkit-linear-gradient(left, #FF8EDF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
362
|
+
background: linear-gradient(to right, #FF8EDF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
363
|
+
text-shadow: none;
|
364
|
+
-webkit-text-stroke: #E03997 0.78px;
|
365
|
+
-webkit-background-clip: text;
|
366
|
+
background-clip: text;
|
367
|
+
color: transparent;
|
188
368
|
}
|
189
369
|
.ui.brown.rating .active.icon {
|
190
370
|
color: #D67C1C;
|
191
371
|
text-shadow: 0px -1px 0px #A5673F, -1px 0px 0px #A5673F, 0px 1px 0px #A5673F, 1px 0px 0px #A5673F;
|
192
372
|
}
|
193
373
|
.ui.brown.rating .icon.selected,
|
194
|
-
.ui.brown.rating .icon.selected.active
|
374
|
+
.ui.brown.rating .icon.selected.active,
|
375
|
+
.ui.brown.rating .icon.selected.partial.active {
|
376
|
+
background: inherit;
|
195
377
|
color: #b0620f;
|
196
378
|
text-shadow: 0px -1px 0px #975b33, -1px 0px 0px #975b33, 0px 1px 0px #975b33, 1px 0px 0px #975b33;
|
379
|
+
-webkit-text-stroke: unset;
|
380
|
+
background-clip: unset;
|
381
|
+
}
|
382
|
+
.ui.brown.rating .icon.partial.active {
|
383
|
+
background: -webkit-gradient(linear, left top, right top, from(#D67C1C), to(rgba(0, 0, 0, 0.15)));
|
384
|
+
background: -webkit-linear-gradient(left, #D67C1C 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
385
|
+
background: linear-gradient(to right, #D67C1C 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
386
|
+
text-shadow: none;
|
387
|
+
-webkit-text-stroke: #A5673F 0.78px;
|
388
|
+
-webkit-background-clip: text;
|
389
|
+
background-clip: text;
|
390
|
+
color: transparent;
|
197
391
|
}
|
198
392
|
.ui.grey.rating .active.icon {
|
199
393
|
color: #DCDDDE;
|
200
394
|
text-shadow: 0px -1px 0px #767676, -1px 0px 0px #767676, 0px 1px 0px #767676, 1px 0px 0px #767676;
|
201
395
|
}
|
202
396
|
.ui.grey.rating .icon.selected,
|
203
|
-
.ui.grey.rating .icon.selected.active
|
397
|
+
.ui.grey.rating .icon.selected.active,
|
398
|
+
.ui.grey.rating .icon.selected.partial.active {
|
399
|
+
background: inherit;
|
204
400
|
color: #c2c4c5;
|
205
401
|
text-shadow: 0px -1px 0px #838383, -1px 0px 0px #838383, 0px 1px 0px #838383, 1px 0px 0px #838383;
|
402
|
+
-webkit-text-stroke: unset;
|
403
|
+
background-clip: unset;
|
404
|
+
}
|
405
|
+
.ui.grey.rating .icon.partial.active {
|
406
|
+
background: -webkit-gradient(linear, left top, right top, from(#DCDDDE), to(rgba(0, 0, 0, 0.15)));
|
407
|
+
background: -webkit-linear-gradient(left, #DCDDDE 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
408
|
+
background: linear-gradient(to right, #DCDDDE 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
409
|
+
text-shadow: none;
|
410
|
+
-webkit-text-stroke: #767676 0.78px;
|
411
|
+
-webkit-background-clip: text;
|
412
|
+
background-clip: text;
|
413
|
+
color: transparent;
|
206
414
|
}
|
207
415
|
.ui.black.rating .active.icon {
|
208
416
|
color: #545454;
|
209
417
|
text-shadow: 0px -1px 0px #1B1C1D, -1px 0px 0px #1B1C1D, 0px 1px 0px #1B1C1D, 1px 0px 0px #1B1C1D;
|
210
418
|
}
|
211
419
|
.ui.black.rating .icon.selected,
|
212
|
-
.ui.black.rating .icon.selected.active
|
420
|
+
.ui.black.rating .icon.selected.active,
|
421
|
+
.ui.black.rating .icon.selected.partial.active {
|
422
|
+
background: inherit;
|
213
423
|
color: #000000;
|
214
424
|
text-shadow: 0px -1px 0px #27292a, -1px 0px 0px #27292a, 0px 1px 0px #27292a, 1px 0px 0px #27292a;
|
425
|
+
-webkit-text-stroke: unset;
|
426
|
+
background-clip: unset;
|
427
|
+
}
|
428
|
+
.ui.black.rating .icon.partial.active {
|
429
|
+
background: -webkit-gradient(linear, left top, right top, from(#545454), to(rgba(0, 0, 0, 0.15)));
|
430
|
+
background: -webkit-linear-gradient(left, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
431
|
+
background: linear-gradient(to right, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
|
432
|
+
text-shadow: none;
|
433
|
+
-webkit-text-stroke: #1B1C1D 0.78px;
|
434
|
+
-webkit-background-clip: text;
|
435
|
+
background-clip: text;
|
436
|
+
color: transparent;
|
215
437
|
}
|
216
438
|
|
217
439
|
|
@@ -221,8 +443,8 @@
|
|
221
443
|
|
222
444
|
|
223
445
|
/*-------------------
|
224
|
-
|
225
|
-
--------------------*/
|
446
|
+
Disabled
|
447
|
+
--------------------*/
|
226
448
|
|
227
449
|
|
228
450
|
/* disabled rating */
|
@@ -249,6 +471,9 @@
|
|
249
471
|
Variations
|
250
472
|
*******************************/
|
251
473
|
|
474
|
+
.ui.rating {
|
475
|
+
font-size: 1rem;
|
476
|
+
}
|
252
477
|
.ui.mini.rating {
|
253
478
|
font-size: 0.78571429rem;
|
254
479
|
}
|
@@ -258,12 +483,12 @@
|
|
258
483
|
.ui.small.rating {
|
259
484
|
font-size: 0.92857143rem;
|
260
485
|
}
|
261
|
-
.ui.rating {
|
262
|
-
font-size: 1rem;
|
263
|
-
}
|
264
486
|
.ui.large.rating {
|
265
487
|
font-size: 1.14285714rem;
|
266
488
|
}
|
489
|
+
.ui.big.rating {
|
490
|
+
font-size: 1.28571429rem;
|
491
|
+
}
|
267
492
|
.ui.huge.rating {
|
268
493
|
font-size: 1.42857143rem;
|
269
494
|
}
|