fomantic-ui-sass 2.8.6 → 2.8.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (83) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +12 -0
  3. data/README.md +6 -0
  4. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  5. data/app/assets/fonts/semantic-ui/brand-icons.svg +6 -41
  6. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  7. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  8. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  9. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  10. data/app/assets/fonts/semantic-ui/icons.svg +7 -245
  11. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  12. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  14. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  15. data/app/assets/fonts/semantic-ui/outline-icons.svg +2 -2
  16. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  17. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  18. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  19. data/app/assets/javascripts/semantic-ui/calendar.js +153 -29
  20. data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
  21. data/app/assets/javascripts/semantic-ui/dimmer.js +11 -14
  22. data/app/assets/javascripts/semantic-ui/dropdown.js +240 -112
  23. data/app/assets/javascripts/semantic-ui/form.js +131 -67
  24. data/app/assets/javascripts/semantic-ui/modal.js +259 -16
  25. data/app/assets/javascripts/semantic-ui/nag.js +130 -64
  26. data/app/assets/javascripts/semantic-ui/popup.js +4 -4
  27. data/app/assets/javascripts/semantic-ui/progress.js +25 -31
  28. data/app/assets/javascripts/semantic-ui/search.js +15 -12
  29. data/app/assets/javascripts/semantic-ui/slider.js +57 -33
  30. data/app/assets/javascripts/semantic-ui/toast.js +26 -6
  31. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
  32. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +69 -74
  33. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +14 -7
  34. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +14 -11
  35. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +52 -5
  36. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +9 -5
  37. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +1 -0
  38. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +29 -2
  39. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +3 -4
  40. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
  41. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
  42. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +14 -9
  43. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +244 -66
  44. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +34 -5
  45. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +34 -33
  46. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1 -1
  47. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +13 -13
  48. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +41 -37
  49. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +1 -1
  50. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
  51. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
  52. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +40 -2
  53. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +10 -10
  54. data/app/assets/stylesheets/semantic-ui/elements/_text.scss +13 -1
  55. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +2 -3
  56. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +2 -2
  57. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
  58. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +18 -11
  59. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +46 -4
  60. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +15 -15
  61. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +180 -28
  62. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +7 -7
  63. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +22 -11
  64. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +168 -16
  65. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +6 -2
  66. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +18 -10
  67. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +18 -33
  68. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
  69. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
  70. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +3 -2
  71. data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +11 -0
  72. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -2
  73. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
  74. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +103 -16
  75. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  76. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
  77. data/app/assets/stylesheets/semantic-ui/views/_card.scss +75 -3
  78. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
  79. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +6 -6
  80. data/app/assets/stylesheets/semantic-ui/views/_item.scss +1 -1
  81. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +5 -5
  82. data/lib/fomantic/ui/sass/version.rb +2 -2
  83. metadata +3 -3
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Nag
2
+ * # Fomantic-UI 2.8.8 - Nag
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -24,7 +24,7 @@
24
24
  width: 100%;
25
25
  margin: 0;
26
26
  padding: 0.75em 1em;
27
- background: #555555;
27
+ background: #777777;
28
28
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
29
29
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
30
30
  font-size: 1rem;
@@ -54,6 +54,9 @@ a.ui.nag {
54
54
  -webkit-transition: opacity 0.2s ease;
55
55
  transition: opacity 0.2s ease;
56
56
  }
57
+ .ui.nag:not(.overlay):not(.fixed) {
58
+ border-radius: 0.28571429rem;
59
+ }
57
60
 
58
61
 
59
62
  /*******************************
@@ -63,10 +66,10 @@ a.ui.nag {
63
66
 
64
67
  /* Hover */
65
68
  .ui.nag:hover {
66
- background: #555555;
69
+ background: #777777;
67
70
  opacity: 1;
68
71
  }
69
- .ui.nag .close:hover {
72
+ .ui.nag > .close:hover {
70
73
  opacity: 1;
71
74
  }
72
75
 
@@ -77,9 +80,10 @@ a.ui.nag {
77
80
 
78
81
 
79
82
  /*--------------
80
- Static
81
- ---------------*/
83
+ Static
84
+ ---------------*/
82
85
 
86
+ .ui.overlay.nags,
83
87
  .ui.overlay.nag {
84
88
  position: absolute;
85
89
  display: block;
@@ -89,6 +93,7 @@ a.ui.nag {
89
93
  Fixed
90
94
  ---------------*/
91
95
 
96
+ .ui.fixed.nags,
92
97
  .ui.fixed.nag {
93
98
  position: fixed;
94
99
  }
@@ -105,7 +110,7 @@ a.ui.nag {
105
110
  }
106
111
 
107
112
  /*--------------
108
- White
113
+ Inverted
109
114
  ---------------*/
110
115
 
111
116
  .ui.inverted.nags .nag,
@@ -113,11 +118,147 @@ a.ui.nag {
113
118
  background-color: #F3F4F5;
114
119
  color: rgba(0, 0, 0, 0.85);
115
120
  }
116
- .ui.inverted.nags .nag .close,
117
- .ui.inverted.nags .nag .title,
118
- .ui.inverted.nag .close,
119
- .ui.inverted.nag .title {
120
- color: rgba(0, 0, 0, 0.4);
121
+ .ui.inverted.nags .nag > .close,
122
+ .ui.inverted.nag > .close {
123
+ color: rgba(0, 0, 0, 0.6);
124
+ }
125
+ .ui.inverted.nags .nag > .title,
126
+ .ui.inverted.nag > .title {
127
+ color: rgba(0, 0, 0, 0.6);
128
+ }
129
+
130
+ /*-------------------
131
+ Sizes
132
+ --------------------*/
133
+
134
+ .ui.mini.nag,
135
+ .ui.mini.nags .nag {
136
+ font-size: 0.78571429rem;
137
+ }
138
+ .ui.tiny.nag,
139
+ .ui.tiny.nags .nag {
140
+ font-size: 0.85714286rem;
141
+ }
142
+ .ui.small.nag,
143
+ .ui.small.nags .nag {
144
+ font-size: 0.92857143rem;
145
+ }
146
+ .ui.large.nag,
147
+ .ui.large.nags .nag {
148
+ font-size: 1.14285714rem;
149
+ }
150
+ .ui.big.nag,
151
+ .ui.big.nags .nag {
152
+ font-size: 1.28571429rem;
153
+ }
154
+ .ui.huge.nag,
155
+ .ui.huge.nags .nag {
156
+ font-size: 1.42857143rem;
157
+ line-height: 1;
158
+ }
159
+ .ui.massive.nag,
160
+ .ui.massive.nags .nag {
161
+ font-size: 1.71428571rem;
162
+ line-height: 1;
163
+ }
164
+
165
+ /*--------------
166
+ Colors
167
+ -------------- */
168
+
169
+ .ui.primary.nag {
170
+ background-color: #2185D0;
171
+ }
172
+ .ui.inverted.primary.nag {
173
+ background-color: #54C8FF;
174
+ }
175
+ .ui.secondary.nag {
176
+ background-color: #1B1C1D;
177
+ }
178
+ .ui.inverted.secondary.nag {
179
+ background-color: #545454;
180
+ }
181
+ .ui.red.nag {
182
+ background-color: #DB2828;
183
+ }
184
+ .ui.inverted.red.nag {
185
+ background-color: #FF695E;
186
+ }
187
+ .ui.orange.nag {
188
+ background-color: #F2711C;
189
+ }
190
+ .ui.inverted.orange.nag {
191
+ background-color: #FF851B;
192
+ }
193
+ .ui.yellow.nag {
194
+ background-color: #FBBD08;
195
+ }
196
+ .ui.inverted.yellow.nag {
197
+ background-color: #FFE21F;
198
+ }
199
+ .ui.olive.nag {
200
+ background-color: #B5CC18;
201
+ }
202
+ .ui.inverted.olive.nag {
203
+ background-color: #D9E778;
204
+ }
205
+ .ui.green.nag {
206
+ background-color: #21BA45;
207
+ }
208
+ .ui.inverted.green.nag {
209
+ background-color: #2ECC40;
210
+ }
211
+ .ui.teal.nag {
212
+ background-color: #00B5AD;
213
+ }
214
+ .ui.inverted.teal.nag {
215
+ background-color: #6DFFFF;
216
+ }
217
+ .ui.blue.nag {
218
+ background-color: #2185D0;
219
+ }
220
+ .ui.inverted.blue.nag {
221
+ background-color: #54C8FF;
222
+ }
223
+ .ui.violet.nag {
224
+ background-color: #6435C9;
225
+ }
226
+ .ui.inverted.violet.nag {
227
+ background-color: #A291FB;
228
+ }
229
+ .ui.purple.nag {
230
+ background-color: #A333C8;
231
+ }
232
+ .ui.inverted.purple.nag {
233
+ background-color: #DC73FF;
234
+ }
235
+ .ui.pink.nag {
236
+ background-color: #E03997;
237
+ }
238
+ .ui.inverted.pink.nag {
239
+ background-color: #FF8EDF;
240
+ }
241
+ .ui.brown.nag {
242
+ background-color: #A5673F;
243
+ }
244
+ .ui.inverted.brown.nag {
245
+ background-color: #D67C1C;
246
+ }
247
+ .ui.grey.nag {
248
+ background-color: #767676;
249
+ }
250
+ .ui.inverted.grey.nag {
251
+ background-color: #DCDDDE;
252
+ }
253
+ .ui.black.nag {
254
+ background-color: #1B1C1D;
255
+ color: rgba(255, 255, 255, 0.9);
256
+ }
257
+ .ui.inverted.black.nag {
258
+ background-color: #545454;
259
+ }
260
+ .ui.inverted.black.nag .title {
261
+ color: #FFFFFF;
121
262
  }
122
263
 
123
264
 
@@ -125,15 +266,26 @@ a.ui.nag {
125
266
  Groups
126
267
  *******************************/
127
268
 
128
- .ui.nags .nag {
129
- border-radius: 0 !important;
269
+ .ui.nags {
270
+ top: 0;
271
+ left: 0;
272
+ width: 100%;
273
+ }
274
+ .ui.ui.nags .nag {
275
+ border-radius: 0;
130
276
  }
131
- .ui.nags .nag:last-child {
277
+ .ui.nags:not(.bottom) .nag:last-child {
132
278
  border-radius: 0 0 0.28571429rem 0.28571429rem;
133
279
  }
134
- .ui.bottom.nags .nag:last-child {
280
+ .ui.bottom.nags .nag:first-child {
135
281
  border-radius: 0.28571429rem 0.28571429rem 0 0;
136
282
  }
283
+ .ui.nags:not(.fixed):not(.overlay) .nag:first-child {
284
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
285
+ }
286
+ .ui.nags:not(.fixed):not(.overlay) .nag:only-child {
287
+ border-radius: 0.28571429rem;
288
+ }
137
289
 
138
290
 
139
291
  /*******************************
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Popup
2
+ * # Fomantic-UI 2.8.8 - Popup
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -98,6 +98,7 @@
98
98
  position: absolute;
99
99
  text-transform: none;
100
100
  text-align: left;
101
+ text-shadow: none;
101
102
  white-space: nowrap;
102
103
  font-size: 1rem;
103
104
  border: 1px solid #D4D4D5;
@@ -185,6 +186,7 @@
185
186
  [data-tooltip][data-position="right center"]:hover:after {
186
187
  -webkit-transform: translateY(-50%) scale(1) !important;
187
188
  transform: translateY(-50%) scale(1) !important;
189
+ -moz-transform: translateY(-50%) scale(1.0001) !important;
188
190
  }
189
191
  [data-tooltip][data-position="top left"]:after,
190
192
  [data-tooltip][data-position="top right"]:after,
@@ -328,7 +330,9 @@
328
330
  top: 100%;
329
331
  left: 50%;
330
332
  margin-left: -0.07142857rem;
331
- margin-top: 0.14285714rem;
333
+ margin-top: 0.30714286em;
334
+ -webkit-transform-origin: center top;
335
+ transform-origin: center top;
332
336
  }
333
337
 
334
338
  /* Bottom Left */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Progress Bar
2
+ * # Fomantic-UI 2.8.8 - Progress Bar
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -15,7 +15,9 @@
15
15
 
16
16
  .ui.progress {
17
17
  position: relative;
18
- display: block;
18
+ display: -webkit-box;
19
+ display: -ms-flexbox;
20
+ display: flex;
19
21
  max-width: 100%;
20
22
  border: none;
21
23
  margin: 1em 0 2.5em;
@@ -78,6 +80,15 @@
78
80
  font-weight: bold;
79
81
  text-align: left;
80
82
  }
83
+ .ui.right.aligned.progress {
84
+ -webkit-box-pack: end;
85
+ -ms-flex-pack: end;
86
+ justify-content: flex-end;
87
+ }
88
+ .ui.right.aligned.progress .bar > .progress {
89
+ left: 0.5em;
90
+ right: auto;
91
+ }
81
92
 
82
93
  /* Label */
83
94
  .ui.progress > .label {
@@ -246,13 +257,6 @@
246
257
  color: #1A531B;
247
258
  }
248
259
 
249
- /* Multiple */
250
- .ui.multiple.progress {
251
- display: -webkit-box;
252
- display: -ms-flexbox;
253
- display: flex;
254
- }
255
-
256
260
 
257
261
  /*******************************
258
262
  States
@@ -330,6 +334,10 @@
330
334
  -webkit-transform-origin: left;
331
335
  transform-origin: left;
332
336
  }
337
+ .ui.active.right.aligned.progress .bar::after {
338
+ -webkit-transform-origin: right;
339
+ transform-origin: right;
340
+ }
333
341
  @-webkit-keyframes progress-active {
334
342
  0% {
335
343
  opacity: 0.3;
@@ -415,7 +423,6 @@
415
423
  }
416
424
  .ui.progress.attached,
417
425
  .ui.progress.attached .bar {
418
- display: block;
419
426
  height: 0.2rem;
420
427
  padding: 0;
421
428
  overflow: hidden;
@@ -669,6 +676,7 @@
669
676
  .ui.progress .bar .centered.progress {
670
677
  text-align: center;
671
678
  position: relative;
679
+ right: 0;
672
680
  }
673
681
  .ui.indeterminate.progress .bar::before {
674
682
  content: '';
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Rating
2
+ * # Fomantic-UI 2.8.8 - Rating
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -72,8 +72,7 @@
72
72
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.85)), to(rgba(0, 0, 0, 0.15)));
73
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
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;
75
+ background-clip: text;
77
76
  color: transparent;
78
77
  }
79
78
 
@@ -109,8 +108,7 @@
109
108
  background: linear-gradient(to right, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
110
109
  text-shadow: none;
111
110
  -webkit-text-stroke: #2185D0 0.78px;
112
- -webkit-background-clip: text;
113
- background-clip: text;
111
+ background-clip: text;
114
112
  color: transparent;
115
113
  }
116
114
  .ui.secondary.rating .active.icon {
@@ -132,8 +130,7 @@
132
130
  background: linear-gradient(to right, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
133
131
  text-shadow: none;
134
132
  -webkit-text-stroke: #1B1C1D 0.78px;
135
- -webkit-background-clip: text;
136
- background-clip: text;
133
+ background-clip: text;
137
134
  color: transparent;
138
135
  }
139
136
  .ui.red.rating .active.icon {
@@ -155,8 +152,7 @@
155
152
  background: linear-gradient(to right, #FF695E 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
156
153
  text-shadow: none;
157
154
  -webkit-text-stroke: #DB2828 0.78px;
158
- -webkit-background-clip: text;
159
- background-clip: text;
155
+ background-clip: text;
160
156
  color: transparent;
161
157
  }
162
158
  .ui.orange.rating .active.icon {
@@ -178,8 +174,7 @@
178
174
  background: linear-gradient(to right, #FF851B 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
179
175
  text-shadow: none;
180
176
  -webkit-text-stroke: #F2711C 0.78px;
181
- -webkit-background-clip: text;
182
- background-clip: text;
177
+ background-clip: text;
183
178
  color: transparent;
184
179
  }
185
180
  .ui.yellow.rating .active.icon {
@@ -201,8 +196,7 @@
201
196
  background: linear-gradient(to right, #FFE21F 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
202
197
  text-shadow: none;
203
198
  -webkit-text-stroke: #FBBD08 0.78px;
204
- -webkit-background-clip: text;
205
- background-clip: text;
199
+ background-clip: text;
206
200
  color: transparent;
207
201
  }
208
202
  .ui.olive.rating .active.icon {
@@ -224,8 +218,7 @@
224
218
  background: linear-gradient(to right, #D9E778 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
225
219
  text-shadow: none;
226
220
  -webkit-text-stroke: #B5CC18 0.78px;
227
- -webkit-background-clip: text;
228
- background-clip: text;
221
+ background-clip: text;
229
222
  color: transparent;
230
223
  }
231
224
  .ui.green.rating .active.icon {
@@ -247,8 +240,7 @@
247
240
  background: linear-gradient(to right, #2ECC40 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
248
241
  text-shadow: none;
249
242
  -webkit-text-stroke: #21BA45 0.78px;
250
- -webkit-background-clip: text;
251
- background-clip: text;
243
+ background-clip: text;
252
244
  color: transparent;
253
245
  }
254
246
  .ui.teal.rating .active.icon {
@@ -270,8 +262,7 @@
270
262
  background: linear-gradient(to right, #6DFFFF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
271
263
  text-shadow: none;
272
264
  -webkit-text-stroke: #00B5AD 0.78px;
273
- -webkit-background-clip: text;
274
- background-clip: text;
265
+ background-clip: text;
275
266
  color: transparent;
276
267
  }
277
268
  .ui.blue.rating .active.icon {
@@ -293,8 +284,7 @@
293
284
  background: linear-gradient(to right, #54C8FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
294
285
  text-shadow: none;
295
286
  -webkit-text-stroke: #2185D0 0.78px;
296
- -webkit-background-clip: text;
297
- background-clip: text;
287
+ background-clip: text;
298
288
  color: transparent;
299
289
  }
300
290
  .ui.violet.rating .active.icon {
@@ -316,8 +306,7 @@
316
306
  background: linear-gradient(to right, #A291FB 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
317
307
  text-shadow: none;
318
308
  -webkit-text-stroke: #6435C9 0.78px;
319
- -webkit-background-clip: text;
320
- background-clip: text;
309
+ background-clip: text;
321
310
  color: transparent;
322
311
  }
323
312
  .ui.purple.rating .active.icon {
@@ -339,8 +328,7 @@
339
328
  background: linear-gradient(to right, #DC73FF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
340
329
  text-shadow: none;
341
330
  -webkit-text-stroke: #A333C8 0.78px;
342
- -webkit-background-clip: text;
343
- background-clip: text;
331
+ background-clip: text;
344
332
  color: transparent;
345
333
  }
346
334
  .ui.pink.rating .active.icon {
@@ -362,8 +350,7 @@
362
350
  background: linear-gradient(to right, #FF8EDF 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
363
351
  text-shadow: none;
364
352
  -webkit-text-stroke: #E03997 0.78px;
365
- -webkit-background-clip: text;
366
- background-clip: text;
353
+ background-clip: text;
367
354
  color: transparent;
368
355
  }
369
356
  .ui.brown.rating .active.icon {
@@ -385,8 +372,7 @@
385
372
  background: linear-gradient(to right, #D67C1C 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
386
373
  text-shadow: none;
387
374
  -webkit-text-stroke: #A5673F 0.78px;
388
- -webkit-background-clip: text;
389
- background-clip: text;
375
+ background-clip: text;
390
376
  color: transparent;
391
377
  }
392
378
  .ui.grey.rating .active.icon {
@@ -408,8 +394,7 @@
408
394
  background: linear-gradient(to right, #DCDDDE 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
409
395
  text-shadow: none;
410
396
  -webkit-text-stroke: #767676 0.78px;
411
- -webkit-background-clip: text;
412
- background-clip: text;
397
+ background-clip: text;
413
398
  color: transparent;
414
399
  }
415
400
  .ui.black.rating .active.icon {
@@ -431,8 +416,7 @@
431
416
  background: linear-gradient(to right, #545454 0% var(--full), rgba(0, 0, 0, 0.15) var(--full) 100%);
432
417
  text-shadow: none;
433
418
  -webkit-text-stroke: #1B1C1D 0.78px;
434
- -webkit-background-clip: text;
435
- background-clip: text;
419
+ background-clip: text;
436
420
  color: transparent;
437
421
  }
438
422
 
@@ -450,6 +434,7 @@
450
434
  /* disabled rating */
451
435
  .ui.disabled.rating .icon {
452
436
  cursor: default;
437
+ pointer-events: none;
453
438
  }
454
439
 
455
440
  /*-------------------
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Search
2
+ * # Fomantic-UI 2.8.8 - Search
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Shape
2
+ * # Fomantic-UI 2.8.8 - Shape
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Sidebar
2
+ * # Fomantic-UI 2.8.8 - Sidebar
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -98,6 +98,7 @@ body.pushable.dimmed {
98
98
  .pushable:not(body) {
99
99
  -webkit-transform: translate3d(0, 0, 0);
100
100
  transform: translate3d(0, 0, 0);
101
+ overflow-y: hidden;
101
102
  }
102
103
  .pushable:not(body) > .ui.sidebar,
103
104
  .pushable:not(body) > .fixed,
@@ -153,7 +154,7 @@ body.pushable > .pusher {
153
154
  top: 0;
154
155
  right: 0;
155
156
  content: '';
156
- background-color: rgba(0, 0, 0, 0.4);
157
+ background: rgba(0, 0, 0, 0.4);
157
158
  overflow: hidden;
158
159
  opacity: 0;
159
160
  -webkit-transition: opacity 500ms;
@@ -174,9 +174,16 @@
174
174
  display: -webkit-inline-box;
175
175
  display: -ms-inline-flexbox;
176
176
  display: inline-flex;
177
+ padding: 0.2em 0;
177
178
  position: absolute;
178
179
  -webkit-transform: translate(-50%, -100%);
179
180
  transform: translate(-50%, -100%);
181
+ white-space: nowrap;
182
+ }
183
+ .ui.bottom.aligned.labeled.slider > .labels .label {
184
+ bottom: 0;
185
+ -webkit-transform: translate(-50%, 100%);
186
+ transform: translate(-50%, 100%);
180
187
  }
181
188
  .ui.labeled.ticked.slider > .labels .label:after {
182
189
  content: ' ';
@@ -187,6 +194,10 @@
187
194
  top: 100%;
188
195
  left: 50%;
189
196
  }
197
+ .ui.bottom.aligned.labeled.ticked.slider > .labels .label:after {
198
+ top: auto;
199
+ bottom: 100%;
200
+ }
190
201
  .ui.labeled.ticked.slider > .labels .halftick.label:after {
191
202
  height: 0.75em;
192
203
  }
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Sticky
2
+ * # Fomantic-UI 2.8.8 - Sticky
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *
@@ -58,7 +58,6 @@
58
58
  *******************************/
59
59
 
60
60
  .ui.native.sticky {
61
- position: -webkit-sticky;
62
61
  position: -moz-sticky;
63
62
  position: -ms-sticky;
64
63
  position: -o-sticky;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Fomantic-UI - Tab
2
+ * # Fomantic-UI 2.8.8 - Tab
3
3
  * http://github.com/fomantic/Fomantic-UI/
4
4
  *
5
5
  *