fomantic-ui-sass 2.6.4 → 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (127) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +1 -0
  4. data/.rubocop_todo.yml +102 -0
  5. data/.travis.yml +9 -3
  6. data/README.md +4 -2
  7. data/Rakefile +25 -3
  8. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  9. data/app/assets/fonts/semantic-ui/brand-icons.svg +178 -11
  10. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  11. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  12. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  13. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  14. data/app/assets/fonts/semantic-ui/icons.svg +1138 -92
  15. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  16. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  17. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  18. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  19. data/app/assets/fonts/semantic-ui/outline-icons.svg +127 -26
  20. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  21. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  22. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  23. data/app/assets/javascripts/semantic-ui.js +1 -1
  24. data/app/assets/javascripts/semantic-ui/accordion.js +5 -1
  25. data/app/assets/javascripts/semantic-ui/api.js +9 -2
  26. data/app/assets/javascripts/semantic-ui/calendar.js +25 -12
  27. data/app/assets/javascripts/semantic-ui/checkbox.js +39 -2
  28. data/app/assets/javascripts/semantic-ui/dimmer.js +25 -5
  29. data/app/assets/javascripts/semantic-ui/dropdown.js +130 -47
  30. data/app/assets/javascripts/semantic-ui/embed.js +5 -1
  31. data/app/assets/javascripts/semantic-ui/form.js +24 -19
  32. data/app/assets/javascripts/semantic-ui/modal.js +33 -17
  33. data/app/assets/javascripts/semantic-ui/nag.js +5 -1
  34. data/app/assets/javascripts/semantic-ui/popup.js +10 -5
  35. data/app/assets/javascripts/semantic-ui/progress.js +5 -1
  36. data/app/assets/javascripts/semantic-ui/rating.js +21 -6
  37. data/app/assets/javascripts/semantic-ui/search.js +43 -27
  38. data/app/assets/javascripts/semantic-ui/shape.js +5 -1
  39. data/app/assets/javascripts/semantic-ui/sidebar.js +7 -3
  40. data/app/assets/javascripts/semantic-ui/site.js +6 -2
  41. data/app/assets/javascripts/semantic-ui/slider.js +1216 -0
  42. data/app/assets/javascripts/semantic-ui/state.js +5 -1
  43. data/app/assets/javascripts/semantic-ui/sticky.js +5 -1
  44. data/app/assets/javascripts/semantic-ui/tab.js +10 -3
  45. data/app/assets/javascripts/semantic-ui/toast.js +6 -2
  46. data/app/assets/javascripts/semantic-ui/transition.js +6 -2
  47. data/app/assets/javascripts/semantic-ui/visibility.js +6 -2
  48. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +7 -7
  49. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +59 -83
  50. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +110 -124
  51. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +262 -237
  52. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +155 -118
  53. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +332 -145
  54. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +2281 -2415
  55. data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
  56. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +10 -10
  57. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +81 -81
  58. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +178 -191
  59. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +71 -103
  60. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +8 -8
  61. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +61 -40
  62. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1087 -444
  63. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +69 -69
  64. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +510 -155
  65. data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +20 -14
  66. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +26 -26
  67. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +8 -8
  68. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +180 -216
  69. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +34 -39
  70. data/app/assets/stylesheets/semantic-ui/elements/_text.scss +114 -0
  71. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
  72. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +11 -20
  73. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +16 -16
  74. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +1 -1
  75. data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +1 -1
  76. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +23 -23
  77. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +32 -32
  78. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +128 -155
  79. data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +13 -13
  80. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +50 -48
  81. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +15 -15
  82. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +50 -50
  83. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +30 -44
  84. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +137 -111
  85. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +24 -28
  86. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +6 -6
  87. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +29 -29
  88. data/app/assets/stylesheets/semantic-ui/modules/_slider.scss +768 -0
  89. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +3 -3
  90. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +10 -14
  91. data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +27 -16
  92. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +1 -1
  93. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +6 -6
  94. data/app/assets/stylesheets/semantic-ui/views/_card.scss +103 -133
  95. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +26 -26
  96. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +27 -27
  97. data/app/assets/stylesheets/semantic-ui/views/_item.scss +54 -54
  98. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +138 -108
  99. data/app/helpers/semantic_breadcrumbs_helper.rb +1 -1
  100. data/app/helpers/semantic_flash_helper.rb +4 -2
  101. data/app/helpers/semantic_icon_helper.rb +1 -1
  102. data/fomantic-ui-sass.gemspec +20 -19
  103. data/gemfiles/rails_5.0.gemfile +5 -0
  104. data/gemfiles/rails_5.1.gemfile +5 -0
  105. data/gemfiles/rails_5.2.gemfile +5 -0
  106. data/lib/fomantic-ui-sass.rb +3 -4
  107. data/lib/fomantic/ui/sass/breadcrumbs.rb +2 -4
  108. data/lib/fomantic/ui/sass/engine.rb +3 -3
  109. data/lib/fomantic/ui/sass/version.rb +2 -2
  110. data/spec/dummy/Rakefile +1 -1
  111. data/spec/dummy/bin/bundle +1 -1
  112. data/spec/dummy/bin/rails +1 -1
  113. data/spec/dummy/bin/rake +0 -0
  114. data/spec/dummy/config.ru +1 -1
  115. data/spec/dummy/config/application.rb +5 -6
  116. data/spec/dummy/config/boot.rb +3 -3
  117. data/spec/dummy/config/environment.rb +1 -1
  118. data/spec/dummy/config/environments/test.rb +1 -1
  119. data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +30 -32
  120. data/spec/helpers/semantic_flash_helper_spec.rb +15 -16
  121. data/spec/helpers/semantic_icon_helper_spec.rb +10 -10
  122. data/spec/spec_helper.rb +4 -6
  123. data/tasks/converter.rb +61 -73
  124. data/templates/project/manifest.rb +1 -2
  125. metadata +45 -23
  126. data/app/assets/javascripts/semantic-ui/range.js +0 -278
  127. data/app/assets/stylesheets/semantic-ui/modules/_range.scss +0 -192
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Icon
2
+ * # Semantic UI 2.7.0 - Icon
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -26,7 +26,7 @@
26
26
  i.icon {
27
27
  display: inline-block;
28
28
  opacity: 1;
29
- margin: 0em 0.25rem 0em 0em;
29
+ margin: 0 0.25rem 0 0;
30
30
  width: 1.18em;
31
31
  height: 1em;
32
32
  font-family: 'Icons';
@@ -35,7 +35,6 @@ i.icon {
35
35
  text-decoration: inherit;
36
36
  text-align: center;
37
37
  speak: none;
38
- font-smoothing: antialiased;
39
38
  -moz-osx-font-smoothing: grayscale;
40
39
  -webkit-font-smoothing: antialiased;
41
40
  -webkit-backface-visibility: hidden;
@@ -112,7 +111,7 @@ i.disabled.icon {
112
111
 
113
112
  i.fitted.icon {
114
113
  width: auto;
115
- margin: 0em !important;
114
+ margin: 0 !important;
116
115
  }
117
116
 
118
117
  /*-------------------
@@ -138,9 +137,9 @@ i.link.icons:hover {
138
137
  i.circular.icon {
139
138
  border-radius: 500em !important;
140
139
  line-height: 1 !important;
141
- padding: 0.5em 0em !important;
142
- -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
143
- box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
140
+ padding: 0.5em 0 !important;
141
+ -webkit-box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
142
+ box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
144
143
  width: 2em !important;
145
144
  height: 2em !important;
146
145
  }
@@ -228,9 +227,9 @@ i.bordered.icon {
228
227
  vertical-align: baseline;
229
228
  width: 2em;
230
229
  height: 2em;
231
- padding: 0.5em 0em !important;
232
- -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
233
- box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
230
+ padding: 0.5em 0 !important;
231
+ -webkit-box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
232
+ box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
234
233
  }
235
234
  i.bordered.inverted.icon {
236
235
  border: none;
@@ -246,8 +245,8 @@ i.bordered.inverted.icon {
246
245
  /* Inverted Shapes */
247
246
  i.inverted.bordered.icon,
248
247
  i.inverted.circular.icon {
249
- background-color: #1B1C1D !important;
250
- color: #FFFFFF !important;
248
+ background-color: #1B1C1D;
249
+ color: #FFFFFF;
251
250
  }
252
251
  i.inverted.icon {
253
252
  color: #FFFFFF;
@@ -257,200 +256,170 @@ i.inverted.icon {
257
256
  Colors
258
257
  --------------------*/
259
258
 
260
-
261
- /* Primary */
262
259
  i.primary.icon {
263
- color: #2185D0 !important;
260
+ color: #2185D0;
264
261
  }
265
262
  i.inverted.primary.icon {
266
- color: #54C8FF !important;
263
+ color: #54C8FF;
267
264
  }
268
265
  i.inverted.bordered.primary.icon,
269
266
  i.inverted.circular.primary.icon {
270
- background-color: #2185D0 !important;
271
- color: #FFFFFF !important;
267
+ background-color: #2185D0;
268
+ color: #FFFFFF;
272
269
  }
273
-
274
- /* Secondary */
275
270
  i.secondary.icon {
276
- color: #1B1C1D !important;
271
+ color: #1B1C1D;
277
272
  }
278
273
  i.inverted.secondary.icon {
279
- color: #545454 !important;
274
+ color: #545454;
280
275
  }
281
276
  i.inverted.bordered.secondary.icon,
282
277
  i.inverted.circular.secondary.icon {
283
- background-color: #1B1C1D !important;
284
- color: #FFFFFF !important;
278
+ background-color: #1B1C1D;
279
+ color: #FFFFFF;
285
280
  }
286
-
287
- /* Red */
288
281
  i.red.icon {
289
- color: #DB2828 !important;
282
+ color: #DB2828;
290
283
  }
291
284
  i.inverted.red.icon {
292
- color: #FF695E !important;
285
+ color: #FF695E;
293
286
  }
294
287
  i.inverted.bordered.red.icon,
295
288
  i.inverted.circular.red.icon {
296
- background-color: #DB2828 !important;
297
- color: #FFFFFF !important;
289
+ background-color: #DB2828;
290
+ color: #FFFFFF;
298
291
  }
299
-
300
- /* Orange */
301
292
  i.orange.icon {
302
- color: #F2711C !important;
293
+ color: #F2711C;
303
294
  }
304
295
  i.inverted.orange.icon {
305
- color: #FF851B !important;
296
+ color: #FF851B;
306
297
  }
307
298
  i.inverted.bordered.orange.icon,
308
299
  i.inverted.circular.orange.icon {
309
- background-color: #F2711C !important;
310
- color: #FFFFFF !important;
300
+ background-color: #F2711C;
301
+ color: #FFFFFF;
311
302
  }
312
-
313
- /* Yellow */
314
303
  i.yellow.icon {
315
- color: #FBBD08 !important;
304
+ color: #FBBD08;
316
305
  }
317
306
  i.inverted.yellow.icon {
318
- color: #FFE21F !important;
307
+ color: #FFE21F;
319
308
  }
320
309
  i.inverted.bordered.yellow.icon,
321
310
  i.inverted.circular.yellow.icon {
322
- background-color: #FBBD08 !important;
323
- color: #FFFFFF !important;
311
+ background-color: #FBBD08;
312
+ color: #FFFFFF;
324
313
  }
325
-
326
- /* Olive */
327
314
  i.olive.icon {
328
- color: #B5CC18 !important;
315
+ color: #B5CC18;
329
316
  }
330
317
  i.inverted.olive.icon {
331
- color: #D9E778 !important;
318
+ color: #D9E778;
332
319
  }
333
320
  i.inverted.bordered.olive.icon,
334
321
  i.inverted.circular.olive.icon {
335
- background-color: #B5CC18 !important;
336
- color: #FFFFFF !important;
322
+ background-color: #B5CC18;
323
+ color: #FFFFFF;
337
324
  }
338
-
339
- /* Green */
340
325
  i.green.icon {
341
- color: #21BA45 !important;
326
+ color: #21BA45;
342
327
  }
343
328
  i.inverted.green.icon {
344
- color: #2ECC40 !important;
329
+ color: #2ECC40;
345
330
  }
346
331
  i.inverted.bordered.green.icon,
347
332
  i.inverted.circular.green.icon {
348
- background-color: #21BA45 !important;
349
- color: #FFFFFF !important;
333
+ background-color: #21BA45;
334
+ color: #FFFFFF;
350
335
  }
351
-
352
- /* Teal */
353
336
  i.teal.icon {
354
- color: #00B5AD !important;
337
+ color: #00B5AD;
355
338
  }
356
339
  i.inverted.teal.icon {
357
- color: #6DFFFF !important;
340
+ color: #6DFFFF;
358
341
  }
359
342
  i.inverted.bordered.teal.icon,
360
343
  i.inverted.circular.teal.icon {
361
- background-color: #00B5AD !important;
362
- color: #FFFFFF !important;
344
+ background-color: #00B5AD;
345
+ color: #FFFFFF;
363
346
  }
364
-
365
- /* Blue */
366
347
  i.blue.icon {
367
- color: #2185D0 !important;
348
+ color: #2185D0;
368
349
  }
369
350
  i.inverted.blue.icon {
370
- color: #54C8FF !important;
351
+ color: #54C8FF;
371
352
  }
372
353
  i.inverted.bordered.blue.icon,
373
354
  i.inverted.circular.blue.icon {
374
- background-color: #2185D0 !important;
375
- color: #FFFFFF !important;
355
+ background-color: #2185D0;
356
+ color: #FFFFFF;
376
357
  }
377
-
378
- /* Violet */
379
358
  i.violet.icon {
380
- color: #6435C9 !important;
359
+ color: #6435C9;
381
360
  }
382
361
  i.inverted.violet.icon {
383
- color: #A291FB !important;
362
+ color: #A291FB;
384
363
  }
385
364
  i.inverted.bordered.violet.icon,
386
365
  i.inverted.circular.violet.icon {
387
- background-color: #6435C9 !important;
388
- color: #FFFFFF !important;
366
+ background-color: #6435C9;
367
+ color: #FFFFFF;
389
368
  }
390
-
391
- /* Purple */
392
369
  i.purple.icon {
393
- color: #A333C8 !important;
370
+ color: #A333C8;
394
371
  }
395
372
  i.inverted.purple.icon {
396
- color: #DC73FF !important;
373
+ color: #DC73FF;
397
374
  }
398
375
  i.inverted.bordered.purple.icon,
399
376
  i.inverted.circular.purple.icon {
400
- background-color: #A333C8 !important;
401
- color: #FFFFFF !important;
377
+ background-color: #A333C8;
378
+ color: #FFFFFF;
402
379
  }
403
-
404
- /* Pink */
405
380
  i.pink.icon {
406
- color: #E03997 !important;
381
+ color: #E03997;
407
382
  }
408
383
  i.inverted.pink.icon {
409
- color: #FF8EDF !important;
384
+ color: #FF8EDF;
410
385
  }
411
386
  i.inverted.bordered.pink.icon,
412
387
  i.inverted.circular.pink.icon {
413
- background-color: #E03997 !important;
414
- color: #FFFFFF !important;
388
+ background-color: #E03997;
389
+ color: #FFFFFF;
415
390
  }
416
-
417
- /* Brown */
418
391
  i.brown.icon {
419
- color: #A5673F !important;
392
+ color: #A5673F;
420
393
  }
421
394
  i.inverted.brown.icon {
422
- color: #D67C1C !important;
395
+ color: #D67C1C;
423
396
  }
424
397
  i.inverted.bordered.brown.icon,
425
398
  i.inverted.circular.brown.icon {
426
- background-color: #A5673F !important;
427
- color: #FFFFFF !important;
399
+ background-color: #A5673F;
400
+ color: #FFFFFF;
428
401
  }
429
-
430
- /* Grey */
431
402
  i.grey.icon {
432
- color: #767676 !important;
403
+ color: #767676;
433
404
  }
434
405
  i.inverted.grey.icon {
435
- color: #DCDDDE !important;
406
+ color: #DCDDDE;
436
407
  }
437
408
  i.inverted.bordered.grey.icon,
438
409
  i.inverted.circular.grey.icon {
439
- background-color: #767676 !important;
440
- color: #FFFFFF !important;
410
+ background-color: #767676;
411
+ color: #FFFFFF;
441
412
  }
442
-
443
- /* Black */
444
413
  i.black.icon {
445
- color: #1B1C1D !important;
414
+ color: #1B1C1D;
446
415
  }
447
416
  i.inverted.black.icon {
448
- color: #545454 !important;
417
+ color: #545454;
449
418
  }
450
419
  i.inverted.bordered.black.icon,
451
420
  i.inverted.circular.black.icon {
452
- background-color: #1B1C1D !important;
453
- color: #FFFFFF !important;
421
+ background-color: #1B1C1D;
422
+ color: #FFFFFF;
454
423
  }
455
424
 
456
425
  /*-------------------
@@ -517,7 +486,6 @@ i.icons .icon {
517
486
  left: 50%;
518
487
  -webkit-transform: translateX(-50%) translateY(-50%);
519
488
  transform: translateX(-50%) translateY(-50%);
520
- margin: 0em;
521
489
  margin: 0;
522
490
  }
523
491
  i.icons .icon:first-child {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Image
2
+ * # Semantic UI 2.7.0 - Image
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -178,10 +178,10 @@ img.ui.bordered.image {
178
178
  }
179
179
  .ui[class*="left spaced"].image {
180
180
  margin-left: 0.5em;
181
- margin-right: 0em;
181
+ margin-right: 0;
182
182
  }
183
183
  .ui[class*="right spaced"].image {
184
- margin-left: 0em;
184
+ margin-left: 0;
185
185
  margin-right: 0.5em;
186
186
  }
187
187
 
@@ -198,13 +198,13 @@ img.ui.bordered.image {
198
198
  .ui.right.floated.images,
199
199
  .ui.right.floated.image {
200
200
  float: right;
201
- margin-right: 0em;
201
+ margin-right: 0;
202
202
  margin-bottom: 1em;
203
203
  margin-left: 1em;
204
204
  }
205
205
  .ui.floated.images:last-child,
206
206
  .ui.floated.image:last-child {
207
- margin-bottom: 0em;
207
+ margin-bottom: 0;
208
208
  }
209
209
  .ui.centered.images,
210
210
  .ui.centered.image {
@@ -287,14 +287,14 @@ img.ui.bordered.image {
287
287
  *******************************/
288
288
 
289
289
  .ui.images {
290
- font-size: 0em;
291
- margin: 0em -0.25rem 0rem;
290
+ font-size: 0;
291
+ margin: 0 -0.25rem 0;
292
292
  }
293
293
  .ui.images .image,
294
294
  .ui.images > img,
295
295
  .ui.images > svg {
296
296
  display: inline-block;
297
- margin: 0em 0.25rem 0.5rem;
297
+ margin: 0 0.25rem 0.5rem;
298
298
  }
299
299
 
300
300
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Input
2
+ * # Semantic UI 2.7.0 - Input
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -28,7 +28,7 @@
28
28
  color: rgba(0, 0, 0, 0.87);
29
29
  }
30
30
  .ui.input > input {
31
- margin: 0em;
31
+ margin: 0;
32
32
  max-width: 100%;
33
33
  -webkit-box-flex: 1;
34
34
  -ms-flex: 1 0 auto;
@@ -108,7 +108,7 @@
108
108
  content: '';
109
109
  top: 50%;
110
110
  left: 50%;
111
- margin: -0.64285714em 0em 0em -0.64285714em;
111
+ margin: -0.64285714em 0 0 -0.64285714em;
112
112
  width: 1.28571429em;
113
113
  height: 1.28571429em;
114
114
  border-radius: 500rem;
@@ -119,19 +119,15 @@
119
119
  content: '';
120
120
  top: 50%;
121
121
  left: 50%;
122
- margin: -0.64285714em 0em 0em -0.64285714em;
122
+ margin: -0.64285714em 0 0 -0.64285714em;
123
123
  width: 1.28571429em;
124
124
  height: 1.28571429em;
125
- -webkit-animation: button-spin 0.6s linear;
126
- animation: button-spin 0.6s linear;
127
- -webkit-animation-iteration-count: infinite;
128
- animation-iteration-count: infinite;
125
+ -webkit-animation: loader 0.6s infinite linear;
126
+ animation: loader 0.6s infinite linear;
127
+ border: 0.2em solid #767676;
129
128
  border-radius: 500rem;
130
- border-color: #767676 transparent transparent;
131
- border-style: solid;
132
- border-width: 0.2em;
133
- -webkit-box-shadow: 0px 0px 0px 1px transparent;
134
- box-shadow: 0px 0px 0px 1px transparent;
129
+ -webkit-box-shadow: 0 0 0 1px transparent;
130
+ box-shadow: 0 0 0 1px transparent;
135
131
  }
136
132
 
137
133
  /*--------------------
@@ -206,10 +202,10 @@
206
202
  .ui.transparent.input > input {
207
203
  border-color: transparent !important;
208
204
  background-color: transparent !important;
209
- padding: 0em !important;
205
+ padding: 0 !important;
210
206
  -webkit-box-shadow: none !important;
211
207
  box-shadow: none !important;
212
- border-radius: 0px !important;
208
+ border-radius: 0 !important;
213
209
  }
214
210
 
215
211
  /* Transparent Icon */
@@ -217,12 +213,12 @@
217
213
  width: 1.1em;
218
214
  }
219
215
  .ui.transparent.icon.input > input {
220
- padding-left: 0em !important;
216
+ padding-left: 0 !important;
221
217
  padding-right: 2em !important;
222
218
  }
223
219
  .ui.transparent[class*="left icon"].input > input {
224
220
  padding-left: 2em !important;
225
- padding-right: 0em !important;
221
+ padding-right: 0 !important;
226
222
  }
227
223
 
228
224
  /* Transparent Inverted */
@@ -251,19 +247,20 @@
251
247
  position: absolute;
252
248
  line-height: 1;
253
249
  text-align: center;
254
- top: 0px;
255
- right: 0px;
256
- margin: 0em;
250
+ top: 0;
251
+ right: 0;
252
+ margin: 0;
257
253
  height: 100%;
258
254
  width: 2.67142857em;
259
255
  opacity: 0.5;
260
- border-radius: 0em 0.28571429rem 0.28571429rem 0em;
256
+ border-radius: 0 0.28571429rem 0.28571429rem 0;
261
257
  -webkit-transition: opacity 0.3s ease;
262
258
  transition: opacity 0.3s ease;
263
259
  }
264
260
  .ui.icon.input > i.icon:not(.link) {
265
261
  pointer-events: none;
266
262
  }
263
+ .ui.icon.input > textarea,
267
264
  .ui.icon.input > input {
268
265
  padding-right: 2.67142857em !important;
269
266
  }
@@ -288,18 +285,20 @@
288
285
  .ui[class*="left icon"].input > i.icon {
289
286
  right: auto;
290
287
  left: 1px;
291
- border-radius: 0.28571429rem 0em 0em 0.28571429rem;
288
+ border-radius: 0.28571429rem 0 0 0.28571429rem;
292
289
  }
293
290
  .ui[class*="left icon"].input > i.circular.icon {
294
291
  right: auto;
295
292
  left: 0.5em;
296
293
  }
294
+ .ui[class*="left icon"].input > textarea,
297
295
  .ui[class*="left icon"].input > input {
298
296
  padding-left: 2.67142857em !important;
299
297
  padding-right: 1em !important;
300
298
  }
301
299
 
302
300
  /* Focus */
301
+ .ui.icon.input > textarea:focus ~ i.icon,
303
302
  .ui.icon.input > input:focus ~ i.icon {
304
303
  opacity: 1;
305
304
  }
@@ -324,12 +323,12 @@
324
323
 
325
324
  /* Regular Label on Left */
326
325
  .ui.labeled.input:not([class*="corner labeled"]) .label:first-child {
327
- border-top-right-radius: 0px;
328
- border-bottom-right-radius: 0px;
326
+ border-top-right-radius: 0;
327
+ border-bottom-right-radius: 0;
329
328
  }
330
329
  .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input {
331
- border-top-left-radius: 0px;
332
- border-bottom-left-radius: 0px;
330
+ border-top-left-radius: 0;
331
+ border-bottom-left-radius: 0;
333
332
  border-left-color: transparent;
334
333
  }
335
334
  .ui.labeled.input:not([class*="corner labeled"]) .label:first-child + input:focus {
@@ -338,13 +337,13 @@
338
337
 
339
338
  /* Regular Label on Right */
340
339
  .ui[class*="right labeled"].input > input {
341
- border-top-right-radius: 0px !important;
342
- border-bottom-right-radius: 0px !important;
340
+ border-top-right-radius: 0 !important;
341
+ border-bottom-right-radius: 0 !important;
343
342
  border-right-color: transparent !important;
344
343
  }
345
344
  .ui[class*="right labeled"].input > input + .label {
346
- border-top-left-radius: 0px;
347
- border-bottom-left-radius: 0px;
345
+ border-top-left-radius: 0;
346
+ border-bottom-left-radius: 0;
348
347
  }
349
348
  .ui[class*="right labeled"].input > input:focus {
350
349
  border-right-color: #85B7D9 !important;
@@ -355,13 +354,15 @@
355
354
  top: 1px;
356
355
  right: 1px;
357
356
  font-size: 0.64285714em;
358
- border-radius: 0em 0.28571429rem 0em 0em;
357
+ border-radius: 0 0.28571429rem 0 0;
359
358
  }
360
359
 
361
360
  /* Spacing with corner label */
361
+ .ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input > textarea,
362
362
  .ui[class*="corner labeled"]:not([class*="left corner labeled"]).labeled.input > input {
363
363
  padding-right: 2.5em !important;
364
364
  }
365
+ .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > textarea,
365
366
  .ui[class*="corner labeled"].icon.input:not([class*="left corner labeled"]) > input {
366
367
  padding-right: 3.25em !important;
367
368
  }
@@ -370,15 +371,20 @@
370
371
  }
371
372
 
372
373
  /* Left Labeled */
374
+ .ui[class*="left corner labeled"].labeled.input > textarea,
373
375
  .ui[class*="left corner labeled"].labeled.input > input {
374
376
  padding-left: 2.5em !important;
375
377
  }
378
+ .ui[class*="left corner labeled"].icon.input > textarea,
376
379
  .ui[class*="left corner labeled"].icon.input > input {
377
380
  padding-left: 3.25em !important;
378
381
  }
379
382
  .ui[class*="left corner labeled"].icon.input > .icon {
380
383
  margin-left: 1.25em;
381
384
  }
385
+ .ui.icon.input > textarea ~ .icon {
386
+ height: 3em;
387
+ }
382
388
 
383
389
  /* Corner Label Position */
384
390
  .ui.input > .ui.corner.label {
@@ -390,6 +396,21 @@
390
396
  left: 1px;
391
397
  }
392
398
 
399
+ /* Labeled input error */
400
+ .ui.labeled.input.error:not([class*="corner labeled"]) > .ui.label {
401
+ border-top: 1px solid #E0B4B4;
402
+ border-bottom: 1px solid #E0B4B4;
403
+ }
404
+ .ui.labeled.input.error:not(.right):not([class*="corner labeled"]) > .ui.label {
405
+ border-left: 1px solid #E0B4B4;
406
+ }
407
+ .ui.right.labeled.input.error:not([class*="corner labeled"]) > input + .ui.label {
408
+ border-right: 1px solid #E0B4B4;
409
+ }
410
+ .ui.right.labeled.input.error:not([class*="corner labeled"]) > .ui.label:first-child {
411
+ border-left: 1px solid #E0B4B4;
412
+ }
413
+
393
414
  /*--------------------
394
415
  Action
395
416
  ---------------------*/
@@ -415,19 +436,19 @@
415
436
 
416
437
  /* Button on Right */
417
438
  .ui.action.input:not([class*="left action"]) > input {
418
- border-top-right-radius: 0px !important;
419
- border-bottom-right-radius: 0px !important;
439
+ border-top-right-radius: 0 !important;
440
+ border-bottom-right-radius: 0 !important;
420
441
  border-right-color: transparent !important;
421
442
  }
422
443
  .ui.action.input:not([class*="left action"]) > .dropdown:not(:first-child),
423
444
  .ui.action.input:not([class*="left action"]) > .button:not(:first-child),
424
445
  .ui.action.input:not([class*="left action"]) > .buttons:not(:first-child) > .button {
425
- border-radius: 0px;
446
+ border-radius: 0;
426
447
  }
427
448
  .ui.action.input:not([class*="left action"]) > .dropdown:last-child,
428
449
  .ui.action.input:not([class*="left action"]) > .button:last-child,
429
450
  .ui.action.input:not([class*="left action"]) > .buttons:last-child > .button {
430
- border-radius: 0px 0.28571429rem 0.28571429rem 0px;
451
+ border-radius: 0 0.28571429rem 0.28571429rem 0;
431
452
  }
432
453
 
433
454
  /* Input Focus */
@@ -437,19 +458,19 @@
437
458
 
438
459
  /* Button on Left */
439
460
  .ui[class*="left action"].input > input {
440
- border-top-left-radius: 0px !important;
441
- border-bottom-left-radius: 0px !important;
461
+ border-top-left-radius: 0 !important;
462
+ border-bottom-left-radius: 0 !important;
442
463
  border-left-color: transparent !important;
443
464
  }
444
465
  .ui[class*="left action"].input > .dropdown,
445
466
  .ui[class*="left action"].input > .button,
446
467
  .ui[class*="left action"].input > .buttons > .button {
447
- border-radius: 0px;
468
+ border-radius: 0;
448
469
  }
449
470
  .ui[class*="left action"].input > .dropdown:first-child,
450
471
  .ui[class*="left action"].input > .button:first-child,
451
472
  .ui[class*="left action"].input > .buttons:first-child > .button {
452
- border-radius: 0.28571429rem 0px 0px 0.28571429rem;
473
+ border-radius: 0.28571429rem 0 0 0.28571429rem;
453
474
  }
454
475
 
455
476
  /* Input Focus */
@@ -477,7 +498,7 @@
477
498
  display: flex;
478
499
  }
479
500
  .ui.fluid.input > input {
480
- width: 0px !important;
501
+ width: 0 !important;
481
502
  }
482
503
 
483
504
  /*--------------------