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
@@ -8,11 +8,11 @@
8
8
  @import 'nag';
9
9
  @import 'popup';
10
10
  @import 'progress';
11
- @import 'range';
12
11
  @import 'rating';
13
12
  @import 'search';
14
13
  @import 'shape';
15
14
  @import 'sidebar';
15
+ @import 'slider';
16
16
  @import 'sticky';
17
17
  @import 'tab';
18
18
  @import 'toast';
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Calendar
2
+ * # Semantic UI 2.7.0 - Calendar
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Checkbox
2
+ * # Semantic UI 2.7.0 - Checkbox
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -37,8 +37,8 @@
37
37
  .ui.checkbox input[type="radio"] {
38
38
  cursor: pointer;
39
39
  position: absolute;
40
- top: 0px;
41
- left: 0px;
40
+ top: 0;
41
+ left: 0;
42
42
  opacity: 0 !important;
43
43
  outline: none;
44
44
  z-index: 3;
@@ -62,8 +62,8 @@
62
62
  .ui.checkbox .box:before,
63
63
  .ui.checkbox label:before {
64
64
  position: absolute;
65
- top: 0px;
66
- left: 0px;
65
+ top: 0;
66
+ left: 0;
67
67
  width: 17px;
68
68
  height: 17px;
69
69
  content: '';
@@ -84,8 +84,8 @@
84
84
  .ui.checkbox label:after {
85
85
  position: absolute;
86
86
  font-size: 14px;
87
- top: 0px;
88
- left: 0px;
87
+ top: 0;
88
+ left: 0;
89
89
  width: 17px;
90
90
  height: 17px;
91
91
  text-align: center;
@@ -287,7 +287,7 @@
287
287
  height: 15px;
288
288
  border-radius: 500rem;
289
289
  top: 1px;
290
- left: 0px;
290
+ left: 0;
291
291
  }
292
292
 
293
293
  /* Bullet */
@@ -304,7 +304,7 @@
304
304
  .ui.radio.checkbox .box:after,
305
305
  .ui.radio.checkbox label:after {
306
306
  top: 1px;
307
- left: 0px;
307
+ left: 0;
308
308
  width: 15px;
309
309
  height: 15px;
310
310
  border-radius: 500rem;
@@ -380,7 +380,7 @@
380
380
  -webkit-transform: none;
381
381
  transform: none;
382
382
  border: none !important;
383
- left: 0em;
383
+ left: 0;
384
384
  z-index: 1;
385
385
  top: 0.4rem;
386
386
  background-color: rgba(0, 0, 0, 0.05);
@@ -402,12 +402,12 @@
402
402
  opacity: 1;
403
403
  z-index: 2;
404
404
  border: none;
405
- -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
406
- box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
405
+ -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
406
+ box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
407
407
  width: 1.5rem;
408
408
  height: 1.5rem;
409
409
  top: -0.25rem;
410
- left: 0em;
410
+ left: 0;
411
411
  -webkit-transform: none;
412
412
  transform: none;
413
413
  border-radius: 500rem;
@@ -491,7 +491,7 @@
491
491
  -webkit-transform: none;
492
492
  transform: none;
493
493
  border: none;
494
- top: 0rem;
494
+ top: 0;
495
495
  background: rgba(0, 0, 0, 0.05);
496
496
  -webkit-box-shadow: none;
497
497
  box-shadow: none;
@@ -511,12 +511,12 @@
511
511
  opacity: 1;
512
512
  z-index: 2;
513
513
  border: none;
514
- -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
515
- box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
514
+ -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
515
+ box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
516
516
  width: 1.5rem;
517
517
  height: 1.5rem;
518
- top: 0rem;
519
- left: 0em;
518
+ top: 0;
519
+ left: 0;
520
520
  border-radius: 500rem;
521
521
  -webkit-transition: background 0.3s ease, left 0.3s ease;
522
522
  transition: background 0.3s ease, left 0.3s ease;
@@ -524,8 +524,8 @@
524
524
  .ui.toggle.checkbox input ~ .box:after,
525
525
  .ui.toggle.checkbox input ~ label:after {
526
526
  left: -0.05rem;
527
- -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
528
- box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
527
+ -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
528
+ box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
529
529
  }
530
530
 
531
531
  /* Focus */
@@ -554,8 +554,8 @@
554
554
  .ui.toggle.checkbox input:checked ~ .box:after,
555
555
  .ui.toggle.checkbox input:checked ~ label:after {
556
556
  left: 2.15rem;
557
- -webkit-box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
558
- box-shadow: 0px 1px 2px 0 rgba(34, 36, 38, 0.15), 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
557
+ -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
558
+ box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15), 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
559
559
  }
560
560
 
561
561
  /* Active Focus */
@@ -580,7 +580,7 @@
580
580
 
581
581
  .ui.fitted.checkbox .box,
582
582
  .ui.fitted.checkbox label {
583
- padding-left: 0em !important;
583
+ padding-left: 0 !important;
584
584
  }
585
585
  .ui.fitted.toggle.checkbox {
586
586
  width: 3.5rem;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Dimmer
2
+ * # Semantic UI 2.7.0 - Dimmer
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -19,8 +19,8 @@
19
19
  .ui.dimmer {
20
20
  display: none;
21
21
  position: absolute;
22
- top: 0em !important;
23
- left: 0em !important;
22
+ top: 0 !important;
23
+ left: 0 !important;
24
24
  width: 100%;
25
25
  height: 100%;
26
26
  text-align: center;
@@ -249,8 +249,8 @@ body.dimmable > .dimmer {
249
249
  display: block;
250
250
  overflow: hidden;
251
251
  opacity: 1;
252
- width: 0%;
253
- height: 0%;
252
+ width: 0;
253
+ height: 0;
254
254
  z-index: -100;
255
255
  background-color: rgba(0, 0, 0, 0);
256
256
  }
@@ -285,7 +285,7 @@ body.dimmable > .dimmer {
285
285
  .ui[class*="center dimmer"] {
286
286
  top: 50% !important;
287
287
  transform: translateY(-50%);
288
- -webkit-transform: translateY(calc(-50.5%));
288
+ -webkit-transform: translateY(calc(-50% - 0.5px));
289
289
  }
290
290
  .ui.segment > .ui[class*="top dimmer"] {
291
291
  border-bottom-left-radius: 0 !important;
@@ -322,96 +322,96 @@ body.dimmable > .dimmer {
322
322
  0% {
323
323
  opacity: 0;
324
324
  transform: translateY(-40%);
325
- -webkit-transform: translateY(calc(-40.5%));
325
+ -webkit-transform: translateY(calc(-40% - 0.5px));
326
326
  }
327
327
  100% {
328
328
  opacity: 1;
329
329
  transform: translateY(-50%);
330
- -webkit-transform: translateY(calc(-50.5%));
330
+ -webkit-transform: translateY(calc(-50% - 0.5px));
331
331
  }
332
332
  }
333
333
  @keyframes fadeInUpCenter {
334
334
  0% {
335
335
  opacity: 0;
336
336
  transform: translateY(-40%);
337
- -webkit-transform: translateY(calc(-40.5%));
337
+ -webkit-transform: translateY(calc(-40% - 0.5px));
338
338
  }
339
339
  100% {
340
340
  opacity: 1;
341
341
  transform: translateY(-50%);
342
- -webkit-transform: translateY(calc(-50.5%));
342
+ -webkit-transform: translateY(calc(-50% - 0.5px));
343
343
  }
344
344
  }
345
345
  @-webkit-keyframes fadeInDownCenter {
346
346
  0% {
347
347
  opacity: 0;
348
348
  transform: translateY(-60%);
349
- -webkit-transform: translateY(calc(-60.5%));
349
+ -webkit-transform: translateY(calc(-60% - 0.5px));
350
350
  }
351
351
  100% {
352
352
  opacity: 1;
353
353
  transform: translateY(-50%);
354
- -webkit-transform: translateY(calc(-50.5%));
354
+ -webkit-transform: translateY(calc(-50% - 0.5px));
355
355
  }
356
356
  }
357
357
  @keyframes fadeInDownCenter {
358
358
  0% {
359
359
  opacity: 0;
360
360
  transform: translateY(-60%);
361
- -webkit-transform: translateY(calc(-60.5%));
361
+ -webkit-transform: translateY(calc(-60% - 0.5px));
362
362
  }
363
363
  100% {
364
364
  opacity: 1;
365
365
  transform: translateY(-50%);
366
- -webkit-transform: translateY(calc(-50.5%));
366
+ -webkit-transform: translateY(calc(-50% - 0.5px));
367
367
  }
368
368
  }
369
369
  @-webkit-keyframes fadeOutUpCenter {
370
370
  0% {
371
371
  opacity: 1;
372
372
  transform: translateY(-50%);
373
- -webkit-transform: translateY(calc(-50.5%));
373
+ -webkit-transform: translateY(calc(-50% - 0.5px));
374
374
  }
375
375
  100% {
376
376
  opacity: 0;
377
377
  transform: translateY(-45%);
378
- -webkit-transform: translateY(calc(-45.5%));
378
+ -webkit-transform: translateY(calc(-45% - 0.5px));
379
379
  }
380
380
  }
381
381
  @keyframes fadeOutUpCenter {
382
382
  0% {
383
383
  opacity: 1;
384
384
  transform: translateY(-50%);
385
- -webkit-transform: translateY(calc(-50.5%));
385
+ -webkit-transform: translateY(calc(-50% - 0.5px));
386
386
  }
387
387
  100% {
388
388
  opacity: 0;
389
389
  transform: translateY(-45%);
390
- -webkit-transform: translateY(calc(-45.5%));
390
+ -webkit-transform: translateY(calc(-45% - 0.5px));
391
391
  }
392
392
  }
393
393
  @-webkit-keyframes fadeOutDownCenter {
394
394
  0% {
395
395
  opacity: 1;
396
396
  transform: translateY(-50%);
397
- -webkit-transform: translateY(calc(-50.5%));
397
+ -webkit-transform: translateY(calc(-50% - 0.5px));
398
398
  }
399
399
  100% {
400
400
  opacity: 0;
401
401
  transform: translateY(-55%);
402
- -webkit-transform: translateY(calc(-55.5%));
402
+ -webkit-transform: translateY(calc(-55% - 0.5px));
403
403
  }
404
404
  }
405
405
  @keyframes fadeOutDownCenter {
406
406
  0% {
407
407
  opacity: 1;
408
408
  transform: translateY(-50%);
409
- -webkit-transform: translateY(calc(-50.5%));
409
+ -webkit-transform: translateY(calc(-50% - 0.5px));
410
410
  }
411
411
  100% {
412
412
  opacity: 0;
413
413
  transform: translateY(-55%);
414
- -webkit-transform: translateY(calc(-55.5%));
414
+ -webkit-transform: translateY(calc(-55% - 0.5px));
415
415
  }
416
416
  }
417
417
  @-webkit-keyframes bounceCenter {
@@ -421,15 +421,15 @@ body.dimmable > .dimmer {
421
421
  80%,
422
422
  100% {
423
423
  transform: translateY(-50%);
424
- -webkit-transform: translateY(calc(-50.5%));
424
+ -webkit-transform: translateY(calc(-50% - 0.5px));
425
425
  }
426
426
  40% {
427
- -webkit-transform: translateY(calc(-80%));
428
- transform: translateY(calc(-80%));
427
+ -webkit-transform: translateY(calc(-50% - 30px));
428
+ transform: translateY(calc(-50% - 30px));
429
429
  }
430
430
  60% {
431
- -webkit-transform: translateY(calc(-65%));
432
- transform: translateY(calc(-65%));
431
+ -webkit-transform: translateY(calc(-50% - 15px));
432
+ transform: translateY(calc(-50% - 15px));
433
433
  }
434
434
  }
435
435
  @keyframes bounceCenter {
@@ -439,15 +439,15 @@ body.dimmable > .dimmer {
439
439
  80%,
440
440
  100% {
441
441
  transform: translateY(-50%);
442
- -webkit-transform: translateY(calc(-50.5%));
442
+ -webkit-transform: translateY(calc(-50% - 0.5px));
443
443
  }
444
444
  40% {
445
- -webkit-transform: translateY(calc(-80%));
446
- transform: translateY(calc(-80%));
445
+ -webkit-transform: translateY(calc(-50% - 30px));
446
+ transform: translateY(calc(-50% - 30px));
447
447
  }
448
448
  60% {
449
- -webkit-transform: translateY(calc(-65%));
450
- transform: translateY(calc(-65%));
449
+ -webkit-transform: translateY(calc(-50% - 15px));
450
+ transform: translateY(calc(-50% - 15px));
451
451
  }
452
452
  }
453
453
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * # Semantic UI 2.6.4 - Dropdown
2
+ * # Semantic UI 2.7.0 - Dropdown
3
3
  * http://github.com/semantic-org/semantic-ui/
4
4
  *
5
5
  *
@@ -49,14 +49,14 @@
49
49
  min-width: -webkit-max-content;
50
50
  min-width: -moz-max-content;
51
51
  min-width: max-content;
52
- margin: 0em;
53
- padding: 0em 0em;
52
+ margin: 0;
53
+ padding: 0 0;
54
54
  background: #FFFFFF;
55
55
  font-size: 1em;
56
56
  text-shadow: none;
57
57
  text-align: left;
58
- -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
59
- box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
58
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
59
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
60
60
  border: 1px solid rgba(34, 36, 38, 0.15);
61
61
  border-radius: 0.28571429rem;
62
62
  -webkit-transition: opacity 0.1s ease;
@@ -85,12 +85,12 @@
85
85
  position: relative;
86
86
  width: auto;
87
87
  font-size: 0.85714286em;
88
- margin: 0em 0em 0em 1em;
88
+ margin: 0 0 0 1em;
89
89
  }
90
90
  .ui.dropdown .menu > .item .dropdown.icon {
91
91
  width: auto;
92
92
  float: right;
93
- margin: 0em 0em 0em 1em;
93
+ margin: 0em 0 0 1em;
94
94
  }
95
95
  .ui.dropdown .menu > .item .dropdown.icon + .text {
96
96
  margin-right: 1em;
@@ -129,7 +129,7 @@
129
129
  -webkit-touch-callout: none;
130
130
  }
131
131
  .ui.dropdown .menu > .item:first-child {
132
- border-top-width: 0px;
132
+ border-top-width: 0;
133
133
  }
134
134
 
135
135
  /*--------------
@@ -139,13 +139,13 @@
139
139
  .ui.dropdown > .text > [class*="right floated"],
140
140
  .ui.dropdown .menu .item > [class*="right floated"] {
141
141
  float: right !important;
142
- margin-right: 0em !important;
142
+ margin-right: 0 !important;
143
143
  margin-left: 1em !important;
144
144
  }
145
145
  .ui.dropdown > .text > [class*="left floated"],
146
146
  .ui.dropdown .menu .item > [class*="left floated"] {
147
147
  float: left !important;
148
- margin-left: 0em !important;
148
+ margin-left: 0 !important;
149
149
  margin-right: 1em !important;
150
150
  }
151
151
  .ui.dropdown .menu .item > .icon.floated,
@@ -160,8 +160,8 @@
160
160
  ---------------*/
161
161
 
162
162
  .ui.dropdown .menu > .header {
163
- margin: 1rem 0rem 0.75rem;
164
- padding: 0em 1.14285714rem;
163
+ margin: 1rem 0 0.75rem;
164
+ padding: 0 1.14285714rem;
165
165
  color: rgba(0, 0, 0, 0.85);
166
166
  font-size: 0.78571429em;
167
167
  font-weight: bold;
@@ -169,8 +169,8 @@
169
169
  }
170
170
  .ui.dropdown .menu > .divider {
171
171
  border-top: 1px solid rgba(34, 36, 38, 0.1);
172
- height: 0em;
173
- margin: 0.5em 0em;
172
+ height: 0;
173
+ margin: 0.5em 0;
174
174
  }
175
175
  .ui.dropdown.dropdown .menu > .input {
176
176
  width: auto;
@@ -181,7 +181,7 @@
181
181
  min-width: 10rem;
182
182
  }
183
183
  .ui.dropdown .menu > .header + .input {
184
- margin-top: 0em;
184
+ margin-top: 0;
185
185
  }
186
186
  .ui.dropdown .menu > .input:not(.transparent) input {
187
187
  padding: 0.5em 1em;
@@ -200,7 +200,7 @@
200
200
  .ui.dropdown > .text > .description,
201
201
  .ui.dropdown .menu > .item > .description {
202
202
  float: right;
203
- margin: 0em 0em 0em 1em;
203
+ margin: 0 0 0 1em;
204
204
  color: rgba(0, 0, 0, 0.4);
205
205
  }
206
206
 
@@ -221,10 +221,10 @@
221
221
  ---------------*/
222
222
 
223
223
  .ui.dropdown .menu .menu {
224
- top: 0% !important;
224
+ top: 0 !important;
225
225
  left: 100%;
226
226
  right: auto;
227
- margin: 0em 0em 0em -0.5em !important;
227
+ margin: 0 0 0 -0.5em !important;
228
228
  border-radius: 0.28571429rem !important;
229
229
  z-index: 21 !important;
230
230
  }
@@ -264,7 +264,7 @@
264
264
  .ui.dropdown .menu > .item > .flag,
265
265
  .ui.dropdown .menu > .item > .image,
266
266
  .ui.dropdown .menu > .item > img {
267
- margin-left: 0em;
267
+ margin-left: 0;
268
268
  float: none;
269
269
  margin-right: 0.78571429rem;
270
270
  }
@@ -312,7 +312,7 @@
312
312
  .ui.menu .right.dropdown.item .menu,
313
313
  .ui.buttons > .ui.dropdown:last-child .menu {
314
314
  left: auto;
315
- right: 0em;
315
+ right: 0;
316
316
  }
317
317
 
318
318
  /*--------------
@@ -332,7 +332,7 @@
332
332
 
333
333
  /* No Margin On Icon Button */
334
334
  .ui.dropdown.icon.button > .dropdown.icon {
335
- margin: 0em;
335
+ margin: 0;
336
336
  }
337
337
  .ui.button.dropdown .menu {
338
338
  min-width: 100%;
@@ -403,7 +403,7 @@ select.ui.dropdown {
403
403
 
404
404
  /* Compact */
405
405
  .ui.compact.selection.dropdown {
406
- min-width: 0px;
406
+ min-width: 0;
407
407
  }
408
408
 
409
409
  /* Selection Menu */
@@ -413,15 +413,15 @@ select.ui.dropdown {
413
413
  -webkit-backface-visibility: hidden;
414
414
  backface-visibility: hidden;
415
415
  -webkit-overflow-scrolling: touch;
416
- border-top-width: 0px !important;
416
+ border-top-width: 0 !important;
417
417
  width: auto;
418
418
  outline: none;
419
- margin: 0px -1px;
419
+ margin: 0 -1px;
420
420
  min-width: calc(100% + 2px);
421
421
  width: calc(100% + 2px);
422
- border-radius: 0em 0em 0.28571429rem 0.28571429rem;
423
- -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
424
- box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
422
+ border-radius: 0 0 0.28571429rem 0.28571429rem;
423
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
424
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
425
425
  -webkit-transition: opacity 0.1s ease;
426
426
  transition: opacity 0.1s ease;
427
427
  }
@@ -481,13 +481,13 @@ select.ui.dropdown {
481
481
  /* Active */
482
482
  .ui.selection.active.dropdown {
483
483
  border-color: #96C8DA;
484
- -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
485
- box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
484
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
485
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
486
486
  }
487
487
  .ui.selection.active.dropdown .menu {
488
488
  border-color: #96C8DA;
489
- -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
490
- box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
489
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
490
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
491
491
  }
492
492
 
493
493
  /* Focus */
@@ -498,8 +498,8 @@ select.ui.dropdown {
498
498
  }
499
499
  .ui.selection.dropdown:focus .menu {
500
500
  border-color: #96C8DA;
501
- -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
502
- box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
501
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
502
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
503
503
  }
504
504
 
505
505
  /* Visible */
@@ -511,13 +511,13 @@ select.ui.dropdown {
511
511
  /* Visible Hover */
512
512
  .ui.selection.active.dropdown:hover {
513
513
  border-color: #96C8DA;
514
- -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
515
- box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
514
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
515
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
516
516
  }
517
517
  .ui.selection.active.dropdown:hover .menu {
518
518
  border-color: #96C8DA;
519
- -webkit-box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
520
- box-shadow: 0px 2px 3px 0px rgba(34, 36, 38, 0.15);
519
+ -webkit-box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
520
+ box-shadow: 0 2px 3px 0 rgba(34, 36, 38, 0.15);
521
521
  }
522
522
 
523
523
  /* Dropdown Icon */
@@ -529,8 +529,8 @@ select.ui.dropdown {
529
529
 
530
530
  /* Connecting Border */
531
531
  .ui.active.selection.dropdown {
532
- border-bottom-left-radius: 0em !important;
533
- border-bottom-right-radius: 0em !important;
532
+ border-bottom-left-radius: 0 !important;
533
+ border-bottom-right-radius: 0 !important;
534
534
  }
535
535
 
536
536
  /* Empty Connecting Border */
@@ -562,7 +562,7 @@ select.ui.dropdown {
562
562
  -webkit-box-shadow: none !important;
563
563
  box-shadow: none !important;
564
564
  cursor: text;
565
- top: 0em;
565
+ top: 0;
566
566
  left: 1px;
567
567
  width: 100%;
568
568
  outline: none;
@@ -646,6 +646,7 @@ select.ui.dropdown {
646
646
 
647
647
  /* Clearable Selection */
648
648
  .ui.dropdown .remove.icon {
649
+ cursor: pointer;
649
650
  font-size: 0.85714286em;
650
651
  margin: -0.78571429em;
651
652
  padding: 0.91666667em;
@@ -659,6 +660,7 @@ select.ui.dropdown {
659
660
  .ui.clearable.dropdown a:last-of-type {
660
661
  margin-right: 1.5em;
661
662
  }
663
+ .ui.dropdown select.noselection ~ .remove.icon,
662
664
  .ui.dropdown input[value=''] ~ .remove.icon,
663
665
  .ui.dropdown input:not([value]) ~ .remove.icon,
664
666
  .ui.dropdown.loading .remove.icon {
@@ -690,9 +692,9 @@ select.ui.dropdown {
690
692
  white-space: normal;
691
693
  font-size: 1em;
692
694
  padding: 0.35714286em 0.78571429em;
693
- margin: 0.14285714rem 0.28571429rem 0.14285714rem 0em;
694
- -webkit-box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
695
- box-shadow: 0px 0px 0px 1px rgba(34, 36, 38, 0.15) inset;
695
+ margin: 0.14285714rem 0.28571429rem 0.14285714rem 0;
696
+ -webkit-box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
697
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.15) inset;
696
698
  }
697
699
 
698
700
  /* Dropdown Icon */
@@ -706,7 +708,7 @@ select.ui.dropdown {
706
708
  position: static;
707
709
  padding: 0;
708
710
  max-width: 100%;
709
- margin: 0.45238095em 0em 0.45238095em 0.64285714em;
711
+ margin: 0.45238095em 0 0.45238095em 0.64285714em;
710
712
  line-height: 1.21428571em;
711
713
  }
712
714
  .ui.multiple.dropdown > .label ~ input.search {
@@ -728,7 +730,7 @@ select.ui.dropdown {
728
730
  top: 0;
729
731
  left: 0;
730
732
  padding: inherit;
731
- margin: 0.45238095em 0em 0.45238095em 0.64285714em;
733
+ margin: 0.45238095em 0 0.45238095em 0.64285714em;
732
734
  line-height: 1.21428571em;
733
735
  }
734
736
  .ui.multiple.search.dropdown > .label ~ .text {
@@ -740,7 +742,7 @@ select.ui.dropdown {
740
742
  position: static;
741
743
  padding: 0;
742
744
  max-width: 100%;
743
- margin: 0.45238095em 0em 0.45238095em 0.64285714em;
745
+ margin: 0.45238095em 0 0.45238095em 0.64285714em;
744
746
  width: 2.2em;
745
747
  line-height: 1.21428571em;
746
748
  }
@@ -755,7 +757,7 @@ select.ui.dropdown {
755
757
  color: inherit;
756
758
  }
757
759
  .ui.inline.dropdown .dropdown.icon {
758
- margin: 0em 0.21428571em 0em 0.21428571em;
760
+ margin: 0 0.21428571em 0 0.21428571em;
759
761
  vertical-align: baseline;
760
762
  }
761
763
  .ui.inline.dropdown > .text {
@@ -815,7 +817,7 @@ select.ui.dropdown {
815
817
  content: '';
816
818
  top: 50%;
817
819
  left: 50%;
818
- margin: -0.64285714em 0em 0em -0.64285714em;
820
+ margin: -0.64285714em 0 0 -0.64285714em;
819
821
  width: 1.28571429em;
820
822
  height: 1.28571429em;
821
823
  border-radius: 500rem;
@@ -826,19 +828,15 @@ select.ui.dropdown {
826
828
  content: '';
827
829
  top: 50%;
828
830
  left: 50%;
829
- -webkit-box-shadow: 0px 0px 0px 1px transparent;
830
- box-shadow: 0px 0px 0px 1px transparent;
831
- margin: -0.64285714em 0em 0em -0.64285714em;
831
+ -webkit-box-shadow: 0 0 0 1px transparent;
832
+ box-shadow: 0 0 0 1px transparent;
833
+ margin: -0.64285714em 0 0 -0.64285714em;
832
834
  width: 1.28571429em;
833
835
  height: 1.28571429em;
834
- -webkit-animation: dropdown-spin 0.6s linear;
835
- animation: dropdown-spin 0.6s linear;
836
- -webkit-animation-iteration-count: infinite;
837
- animation-iteration-count: infinite;
836
+ -webkit-animation: loader 0.6s infinite linear;
837
+ animation: loader 0.6s infinite linear;
838
+ border: 0.2em solid #767676;
838
839
  border-radius: 500rem;
839
- border-color: #767676 transparent transparent;
840
- border-style: solid;
841
- border-width: 0.2em;
842
840
  }
843
841
 
844
842
  /* Coupling */
@@ -846,26 +844,6 @@ select.ui.dropdown {
846
844
  .ui.loading.dropdown.button > i.icon:after {
847
845
  display: none;
848
846
  }
849
- @-webkit-keyframes dropdown-spin {
850
- from {
851
- -webkit-transform: rotate(0deg);
852
- transform: rotate(0deg);
853
- }
854
- to {
855
- -webkit-transform: rotate(360deg);
856
- transform: rotate(360deg);
857
- }
858
- }
859
- @keyframes dropdown-spin {
860
- from {
861
- -webkit-transform: rotate(0deg);
862
- transform: rotate(0deg);
863
- }
864
- to {
865
- -webkit-transform: rotate(360deg);
866
- transform: rotate(360deg);
867
- }
868
- }
869
847
 
870
848
  /*--------------------
871
849
  Default Text
@@ -896,7 +874,7 @@ select.ui.dropdown {
896
874
  z-index: -1;
897
875
  }
898
876
  .ui.dropdown > .loading.menu {
899
- left: 0px !important;
877
+ left: 0 !important;
900
878
  right: auto !important;
901
879
  }
902
880
  .ui.dropdown > .menu .loading.menu {
@@ -1005,7 +983,7 @@ select.ui.dropdown {
1005
983
 
1006
984
  /* Flyout Direction */
1007
985
  .ui.dropdown .menu {
1008
- left: 0px;
986
+ left: 0;
1009
987
  }
1010
988
 
1011
989
  /* Default Side (Right) */
@@ -1019,31 +997,31 @@ select.ui.dropdown {
1019
997
  /* Leftward Opening Menu */
1020
998
  .ui.dropdown > .left.menu {
1021
999
  left: auto !important;
1022
- right: 0px !important;
1000
+ right: 0 !important;
1023
1001
  }
1024
1002
  .ui.dropdown > .left.menu .menu,
1025
1003
  .ui.dropdown .menu .left.menu {
1026
1004
  left: auto;
1027
1005
  right: 100%;
1028
- margin: 0em -0.5em 0em 0em !important;
1006
+ margin: 0 -0.5em 0 0 !important;
1029
1007
  border-radius: 0.28571429rem !important;
1030
1008
  }
1031
1009
  .ui.dropdown .item .left.dropdown.icon,
1032
1010
  .ui.dropdown .left.menu .item .dropdown.icon {
1033
1011
  width: auto;
1034
1012
  float: left;
1035
- margin: 0em 0em 0em 0em;
1013
+ margin: 0em 0 0 0;
1036
1014
  }
1037
1015
  .ui.dropdown .item .left.dropdown.icon,
1038
1016
  .ui.dropdown .left.menu .item .dropdown.icon {
1039
1017
  width: auto;
1040
1018
  float: left;
1041
- margin: 0em 0em 0em 0em;
1019
+ margin: 0em 0 0 0;
1042
1020
  }
1043
1021
  .ui.dropdown .item .left.dropdown.icon + .text,
1044
1022
  .ui.dropdown .left.menu .item .dropdown.icon + .text {
1045
1023
  margin-left: 1em;
1046
- margin-right: 0em;
1024
+ margin-right: 0;
1047
1025
  }
1048
1026
 
1049
1027
  /*--------------
@@ -1055,9 +1033,9 @@ select.ui.dropdown {
1055
1033
  .ui.upward.dropdown > .menu {
1056
1034
  top: auto;
1057
1035
  bottom: 100%;
1058
- -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
1059
- box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
1060
- border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1036
+ -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1037
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1038
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
1061
1039
  }
1062
1040
 
1063
1041
  /* Upward Sub Menu */
@@ -1069,44 +1047,44 @@ select.ui.dropdown {
1069
1047
  /* Active Upward */
1070
1048
  .ui.simple.upward.active.dropdown,
1071
1049
  .ui.simple.upward.dropdown:hover {
1072
- border-radius: 0.28571429rem 0.28571429rem 0em 0em !important;
1050
+ border-radius: 0.28571429rem 0.28571429rem 0 0 !important;
1073
1051
  }
1074
1052
  .ui.upward.dropdown.button:not(.pointing):not(.floating).active {
1075
- border-radius: 0.28571429rem 0.28571429rem 0em 0em;
1053
+ border-radius: 0.28571429rem 0.28571429rem 0 0;
1076
1054
  }
1077
1055
 
1078
1056
  /* Selection */
1079
1057
  .ui.upward.selection.dropdown .menu {
1080
1058
  border-top-width: 1px !important;
1081
- border-bottom-width: 0px !important;
1082
- -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
1083
- box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
1059
+ border-bottom-width: 0 !important;
1060
+ -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1061
+ box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1084
1062
  }
1085
1063
  .ui.upward.selection.dropdown:hover {
1086
- -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
1087
- box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
1064
+ -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
1065
+ box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05);
1088
1066
  }
1089
1067
 
1090
1068
  /* Active Upward */
1091
1069
  .ui.active.upward.selection.dropdown {
1092
- border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
1070
+ border-radius: 0 0 0.28571429rem 0.28571429rem !important;
1093
1071
  }
1094
1072
 
1095
1073
  /* Visible Upward */
1096
1074
  .ui.upward.selection.dropdown.visible {
1097
- -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
1098
- box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.08);
1099
- border-radius: 0em 0em 0.28571429rem 0.28571429rem !important;
1075
+ -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1076
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.08);
1077
+ border-radius: 0 0 0.28571429rem 0.28571429rem !important;
1100
1078
  }
1101
1079
 
1102
1080
  /* Visible Hover Upward */
1103
1081
  .ui.upward.active.selection.dropdown:hover {
1104
- -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05);
1105
- box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.05);
1082
+ -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
1083
+ box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.05);
1106
1084
  }
1107
1085
  .ui.upward.active.selection.dropdown:hover .menu {
1108
- -webkit-box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
1109
- box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.08);
1086
+ -webkit-box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1087
+ box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.08);
1110
1088
  }
1111
1089
 
1112
1090
  /*--------------
@@ -1210,8 +1188,8 @@ select.ui.dropdown {
1210
1188
  }
1211
1189
  .ui.simple.active.dropdown,
1212
1190
  .ui.simple.dropdown:hover {
1213
- border-bottom-left-radius: 0em !important;
1214
- border-bottom-right-radius: 0em !important;
1191
+ border-bottom-left-radius: 0 !important;
1192
+ border-bottom-right-radius: 0 !important;
1215
1193
  }
1216
1194
  .ui.simple.active.dropdown > .menu,
1217
1195
  .ui.simple.dropdown:hover > .menu {
@@ -1226,14 +1204,14 @@ select.ui.dropdown {
1226
1204
  overflow: visible;
1227
1205
  width: auto;
1228
1206
  height: auto;
1229
- top: 0% !important;
1207
+ top: 0 !important;
1230
1208
  left: 100% !important;
1231
1209
  opacity: 1;
1232
1210
  }
1233
1211
  .ui.simple.disabled.dropdown:hover .menu {
1234
1212
  display: none;
1235
- height: 0px;
1236
- width: 0px;
1213
+ height: 0;
1214
+ width: 0;
1237
1215
  overflow: hidden;
1238
1216
  }
1239
1217
 
@@ -1249,7 +1227,7 @@ select.ui.dropdown {
1249
1227
  .ui.fluid.dropdown {
1250
1228
  display: block;
1251
1229
  width: 100% !important;
1252
- min-width: 0em;
1230
+ min-width: 0;
1253
1231
  }
1254
1232
  .ui.fluid.dropdown > .dropdown.icon {
1255
1233
  float: right;
@@ -1262,8 +1240,8 @@ select.ui.dropdown {
1262
1240
  .ui.floating.dropdown .menu {
1263
1241
  left: 0;
1264
1242
  right: auto;
1265
- -webkit-box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important;
1266
- box-shadow: 0px 2px 4px 0px rgba(34, 36, 38, 0.12), 0px 2px 10px 0px rgba(34, 36, 38, 0.15) !important;
1243
+ -webkit-box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
1244
+ box-shadow: 0 2px 4px 0 rgba(34, 36, 38, 0.12), 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
1267
1245
  border-radius: 0.28571429rem !important;
1268
1246
  }
1269
1247
  .ui.floating.dropdown > .menu {
@@ -1290,37 +1268,37 @@ select.ui.dropdown {
1290
1268
  transform: rotate(45deg);
1291
1269
  width: 0.5em;
1292
1270
  height: 0.5em;
1293
- -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
1294
- box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
1271
+ -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1272
+ box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1295
1273
  background: #FFFFFF;
1296
1274
  z-index: 2;
1297
1275
  }
1298
1276
  .ui.pointing.dropdown > .menu:not(.hidden):after {
1299
1277
  top: -0.25em;
1300
1278
  left: 50%;
1301
- margin: 0em 0em 0em -0.25em;
1279
+ margin: 0 0 0 -0.25em;
1302
1280
  }
1303
1281
 
1304
1282
  /* Top Left Pointing */
1305
1283
  .ui.top.left.pointing.dropdown > .menu {
1306
1284
  top: 100%;
1307
1285
  bottom: auto;
1308
- left: 0%;
1286
+ left: 0;
1309
1287
  right: auto;
1310
- margin: 1em 0em 0em;
1288
+ margin: 1em 0 0;
1311
1289
  }
1312
1290
  .ui.top.left.pointing.dropdown > .menu {
1313
1291
  top: 100%;
1314
1292
  bottom: auto;
1315
- left: 0%;
1293
+ left: 0;
1316
1294
  right: auto;
1317
- margin: 1em 0em 0em;
1295
+ margin: 1em 0 0;
1318
1296
  }
1319
1297
  .ui.top.left.pointing.dropdown > .menu:after {
1320
1298
  top: -0.25em;
1321
1299
  left: 1em;
1322
1300
  right: auto;
1323
- margin: 0em;
1301
+ margin: 0;
1324
1302
  -webkit-transform: rotate(45deg);
1325
1303
  transform: rotate(45deg);
1326
1304
  }
@@ -1329,60 +1307,60 @@ select.ui.dropdown {
1329
1307
  .ui.top.right.pointing.dropdown > .menu {
1330
1308
  top: 100%;
1331
1309
  bottom: auto;
1332
- right: 0%;
1310
+ right: 0;
1333
1311
  left: auto;
1334
- margin: 1em 0em 0em;
1312
+ margin: 1em 0 0;
1335
1313
  }
1336
1314
  .ui.top.pointing.dropdown > .left.menu:after,
1337
1315
  .ui.top.right.pointing.dropdown > .menu:after {
1338
1316
  top: -0.25em;
1339
1317
  left: auto !important;
1340
1318
  right: 1em !important;
1341
- margin: 0em;
1319
+ margin: 0;
1342
1320
  -webkit-transform: rotate(45deg);
1343
1321
  transform: rotate(45deg);
1344
1322
  }
1345
1323
 
1346
1324
  /* Left Pointing */
1347
1325
  .ui.left.pointing.dropdown > .menu {
1348
- top: 0%;
1326
+ top: 0;
1349
1327
  left: 100%;
1350
1328
  right: auto;
1351
- margin: 0em 0em 0em 1em;
1329
+ margin: 0 0 0 1em;
1352
1330
  }
1353
1331
  .ui.left.pointing.dropdown > .menu:after {
1354
1332
  top: 1em;
1355
1333
  left: -0.25em;
1356
- margin: 0em 0em 0em 0em;
1334
+ margin: 0 0 0 0;
1357
1335
  -webkit-transform: rotate(-45deg);
1358
1336
  transform: rotate(-45deg);
1359
1337
  }
1360
1338
  .ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu {
1361
1339
  left: auto !important;
1362
1340
  right: 100% !important;
1363
- margin: 0em 1em 0em 0em;
1341
+ margin: 0 1em 0 0;
1364
1342
  }
1365
1343
  .ui.left:not(.top):not(.bottom).pointing.dropdown > .left.menu:after {
1366
1344
  top: 1em;
1367
1345
  left: auto;
1368
1346
  right: -0.25em;
1369
- margin: 0em 0em 0em 0em;
1347
+ margin: 0 0 0 0;
1370
1348
  -webkit-transform: rotate(135deg);
1371
1349
  transform: rotate(135deg);
1372
1350
  }
1373
1351
 
1374
1352
  /* Right Pointing */
1375
1353
  .ui.right.pointing.dropdown > .menu {
1376
- top: 0%;
1354
+ top: 0;
1377
1355
  left: auto;
1378
1356
  right: 100%;
1379
- margin: 0em 1em 0em 0em;
1357
+ margin: 0 1em 0 0;
1380
1358
  }
1381
1359
  .ui.right.pointing.dropdown > .menu:after {
1382
1360
  top: 1em;
1383
1361
  left: auto;
1384
1362
  right: -0.25em;
1385
- margin: 0em 0em 0em 0em;
1363
+ margin: 0 0 0 0;
1386
1364
  -webkit-transform: rotate(135deg);
1387
1365
  transform: rotate(135deg);
1388
1366
  }
@@ -1391,15 +1369,15 @@ select.ui.dropdown {
1391
1369
  .ui.bottom.pointing.dropdown > .menu {
1392
1370
  top: auto;
1393
1371
  bottom: 100%;
1394
- left: 0%;
1372
+ left: 0;
1395
1373
  right: auto;
1396
- margin: 0em 0em 1em;
1374
+ margin: 0 0 1em;
1397
1375
  }
1398
1376
  .ui.bottom.pointing.dropdown > .menu:after {
1399
1377
  top: auto;
1400
1378
  bottom: -0.25em;
1401
1379
  right: auto;
1402
- margin: 0em;
1380
+ margin: 0;
1403
1381
  -webkit-transform: rotate(-135deg);
1404
1382
  transform: rotate(-135deg);
1405
1383
  }
@@ -1407,12 +1385,12 @@ select.ui.dropdown {
1407
1385
  /* Reverse Sub-Menu Direction */
1408
1386
  .ui.bottom.pointing.dropdown > .menu .menu {
1409
1387
  top: auto !important;
1410
- bottom: 0px !important;
1388
+ bottom: 0 !important;
1411
1389
  }
1412
1390
 
1413
1391
  /* Bottom Left */
1414
1392
  .ui.bottom.left.pointing.dropdown > .menu {
1415
- left: 0%;
1393
+ left: 0;
1416
1394
  right: auto;
1417
1395
  }
1418
1396
  .ui.bottom.left.pointing.dropdown > .menu:after {
@@ -1422,7 +1400,7 @@ select.ui.dropdown {
1422
1400
 
1423
1401
  /* Bottom Right */
1424
1402
  .ui.bottom.right.pointing.dropdown > .menu {
1425
- right: 0%;
1403
+ right: 0;
1426
1404
  left: auto;
1427
1405
  }
1428
1406
  .ui.bottom.right.pointing.dropdown > .menu:after {
@@ -1435,44 +1413,44 @@ select.ui.dropdown {
1435
1413
  .ui.top.pointing.upward.dropdown .menu {
1436
1414
  top: auto !important;
1437
1415
  bottom: 100% !important;
1438
- margin: 0em 0em 0.78571429rem;
1416
+ margin: 0 0 0.78571429rem;
1439
1417
  border-radius: 0.28571429rem;
1440
1418
  }
1441
1419
  .ui.pointing.upward.dropdown .menu:after,
1442
1420
  .ui.top.pointing.upward.dropdown .menu:after {
1443
1421
  top: 100% !important;
1444
1422
  bottom: auto !important;
1445
- -webkit-box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15);
1446
- box-shadow: 1px 1px 0px 0px rgba(34, 36, 38, 0.15);
1447
- margin: -0.25em 0em 0em;
1423
+ -webkit-box-shadow: 1px 1px 0 0 rgba(34, 36, 38, 0.15);
1424
+ box-shadow: 1px 1px 0 0 rgba(34, 36, 38, 0.15);
1425
+ margin: -0.25em 0 0;
1448
1426
  }
1449
1427
 
1450
1428
  /* Right Pointing Upward */
1451
1429
  .ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
1452
1430
  top: auto !important;
1453
1431
  bottom: 0 !important;
1454
- margin: 0em 1em 0em 0em;
1432
+ margin: 0 1em 0 0;
1455
1433
  }
1456
1434
  .ui.right.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
1457
1435
  top: auto !important;
1458
1436
  bottom: 0 !important;
1459
- margin: 0em 0em 1em 0em;
1460
- -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
1461
- box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
1437
+ margin: 0 0 1em 0;
1438
+ -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1439
+ box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1462
1440
  }
1463
1441
 
1464
1442
  /* Left Pointing Upward */
1465
1443
  .ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu {
1466
1444
  top: auto !important;
1467
1445
  bottom: 0 !important;
1468
- margin: 0em 0em 0em 1em;
1446
+ margin: 0 0 0 1em;
1469
1447
  }
1470
1448
  .ui.left.pointing.upward.dropdown:not(.top):not(.bottom) .menu:after {
1471
1449
  top: auto !important;
1472
1450
  bottom: 0 !important;
1473
- margin: 0em 0em 1em 0em;
1474
- -webkit-box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
1475
- box-shadow: -1px -1px 0px 0px rgba(34, 36, 38, 0.15);
1451
+ margin: 0 0 1em 0;
1452
+ -webkit-box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1453
+ box-shadow: -1px -1px 0 0 rgba(34, 36, 38, 0.15);
1476
1454
  }
1477
1455
 
1478
1456
  /*--------------------
@@ -1689,8 +1667,8 @@ select.ui.dropdown {
1689
1667
  background-color: rgba(255, 255, 255, 0.7);
1690
1668
  background-image: none;
1691
1669
  color: #000000;
1692
- -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0) inset;
1693
- box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0) inset;
1670
+ -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
1671
+ box-shadow: 0 0 0 1px rgba(255, 255, 255, 0) inset;
1694
1672
  }
1695
1673
  .ui.inverted.multiple.dropdown > .label:hover {
1696
1674
  background-color: rgba(255, 255, 255, 0.9);
@@ -1713,11 +1691,6 @@ select.ui.dropdown {
1713
1691
  background-color: rgba(255, 255, 255, 0.25);
1714
1692
  color: rgba(255, 255, 255, 0.8);
1715
1693
  }
1716
- .ui.inverted.dropdown textarea::-moz-selection,
1717
- .ui.inverted.dropdown input::-moz-selection {
1718
- background-color: rgba(255, 255, 255, 0.25);
1719
- color: rgba(255, 255, 255, 0.8);
1720
- }
1721
1694
  .ui.inverted.dropdown textarea::selection,
1722
1695
  .ui.inverted.dropdown input::selection {
1723
1696
  background-color: rgba(255, 255, 255, 0.25);