fomantic-ui-sass 2.8.1.1 → 2.8.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +20 -0
  3. data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
  4. data/app/assets/fonts/semantic-ui/brand-icons.svg +213 -85
  5. data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
  6. data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
  7. data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
  8. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  9. data/app/assets/fonts/semantic-ui/icons.svg +419 -130
  10. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  11. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  12. data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
  13. data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
  14. data/app/assets/fonts/semantic-ui/outline-icons.svg +11 -11
  15. data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
  16. data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
  17. data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
  18. data/app/assets/javascripts/semantic-ui/calendar.js +110 -47
  19. data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
  20. data/app/assets/javascripts/semantic-ui/dropdown.js +46 -46
  21. data/app/assets/javascripts/semantic-ui/form.js +63 -27
  22. data/app/assets/javascripts/semantic-ui/modal.js +9 -1
  23. data/app/assets/javascripts/semantic-ui/popup.js +8 -7
  24. data/app/assets/javascripts/semantic-ui/search.js +29 -2
  25. data/app/assets/javascripts/semantic-ui/slider.js +6 -6
  26. data/app/assets/javascripts/semantic-ui/tab.js +3 -2
  27. data/app/assets/javascripts/semantic-ui/toast.js +11 -9
  28. data/app/assets/javascripts/semantic-ui/visibility.js +1 -1
  29. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +63 -24
  30. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +8 -6
  31. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +28 -28
  32. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +36 -20
  33. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +9 -3
  34. data/app/assets/stylesheets/semantic-ui/elements/_emoji.scss +6130 -6133
  35. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +153 -18
  36. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +44 -44
  37. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +38 -2
  38. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -1
  39. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +7 -0
  40. data/app/assets/stylesheets/semantic-ui/elements/_text.scss +3 -0
  41. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +1 -0
  42. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +12 -9
  43. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +15 -7
  44. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +10 -3
  45. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +34 -7
  46. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +32 -3
  47. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +90 -0
  48. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -0
  49. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +34 -34
  50. data/lib/fomantic/ui/sass/version.rb +2 -2
  51. metadata +3 -3
@@ -371,6 +371,96 @@
371
371
  *******************************/
372
372
 
373
373
 
374
+ /*-------------------
375
+ Scrolling
376
+ --------------------*/
377
+
378
+ .ui.scrolling.search > .results,
379
+ .ui.search.long > .results,
380
+ .ui.search.short > .results {
381
+ overflow-x: hidden;
382
+ overflow-y: auto;
383
+ -webkit-backface-visibility: hidden;
384
+ backface-visibility: hidden;
385
+ -webkit-overflow-scrolling: touch;
386
+ }
387
+ @media only screen and (max-width: 767.98px) {
388
+ .ui.scrolling.search > .results {
389
+ max-height: 12.17714286em;
390
+ }
391
+ }
392
+ @media only screen and (min-width: 768px) {
393
+ .ui.scrolling.search > .results {
394
+ max-height: 18.26571429em;
395
+ }
396
+ }
397
+ @media only screen and (min-width: 992px) {
398
+ .ui.scrolling.search > .results {
399
+ max-height: 24.35428571em;
400
+ }
401
+ }
402
+ @media only screen and (min-width: 1920px) {
403
+ .ui.scrolling.search > .results {
404
+ max-height: 36.53142857em;
405
+ }
406
+ }
407
+ @media only screen and (max-width: 767.98px) {
408
+ .ui.search.short > .results {
409
+ max-height: 12.17714286em;
410
+ }
411
+ .ui.search[class*="very short"] > .results {
412
+ max-height: 9.13285714em;
413
+ }
414
+ .ui.search.long > .results {
415
+ max-height: 24.35428571em;
416
+ }
417
+ .ui.search[class*="very long"] > .results {
418
+ max-height: 36.53142857em;
419
+ }
420
+ }
421
+ @media only screen and (min-width: 768px) {
422
+ .ui.search.short > .results {
423
+ max-height: 18.26571429em;
424
+ }
425
+ .ui.search[class*="very short"] > .results {
426
+ max-height: 13.69928571em;
427
+ }
428
+ .ui.search.long > .results {
429
+ max-height: 36.53142857em;
430
+ }
431
+ .ui.search[class*="very long"] > .results {
432
+ max-height: 54.79714286em;
433
+ }
434
+ }
435
+ @media only screen and (min-width: 992px) {
436
+ .ui.search.short > .results {
437
+ max-height: 24.35428571em;
438
+ }
439
+ .ui.search[class*="very short"] > .results {
440
+ max-height: 18.26571429em;
441
+ }
442
+ .ui.search.long > .results {
443
+ max-height: 48.70857143em;
444
+ }
445
+ .ui.search[class*="very long"] > .results {
446
+ max-height: 73.06285714em;
447
+ }
448
+ }
449
+ @media only screen and (min-width: 1920px) {
450
+ .ui.search.short > .results {
451
+ max-height: 36.53142857em;
452
+ }
453
+ .ui.search[class*="very short"] > .results {
454
+ max-height: 27.39857143em;
455
+ }
456
+ .ui.search.long > .results {
457
+ max-height: 73.06285714em;
458
+ }
459
+ .ui.search[class*="very long"] > .results {
460
+ max-height: 109.59428571em;
461
+ }
462
+ }
463
+
374
464
  /*-------------------
375
465
  Left / Right
376
466
  --------------------*/
@@ -24,6 +24,7 @@
24
24
  transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out;
25
25
  transition: transform 0.6s ease-in-out, left 0.6s ease-in-out, width 0.6s ease-in-out, height 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
26
26
  }
27
+ .ui.shape .side,
27
28
  .ui.shape .sides {
28
29
  -webkit-transform-style: preserve-3d;
29
30
  transform-style: preserve-3d;
@@ -88,8 +88,8 @@
88
88
  */
89
89
 
90
90
  /*--------------
91
- Browse
92
- ---------------*/
91
+ Browse
92
+ ---------------*/
93
93
 
94
94
  .transition.browse {
95
95
  -webkit-animation-duration: 500ms;
@@ -246,8 +246,8 @@
246
246
  }
247
247
 
248
248
  /*--------------
249
- Drop
250
- ---------------*/
249
+ Drop
250
+ ---------------*/
251
251
 
252
252
  .drop.transition {
253
253
  -webkit-transform-origin: top center;
@@ -317,8 +317,8 @@
317
317
  }
318
318
 
319
319
  /*--------------
320
- Fade
321
- ---------------*/
320
+ Fade
321
+ ---------------*/
322
322
 
323
323
  .transition.fade.in {
324
324
  -webkit-animation-name: fadeIn;
@@ -590,8 +590,8 @@
590
590
  }
591
591
 
592
592
  /*--------------
593
- Flips
594
- ---------------*/
593
+ Flips
594
+ ---------------*/
595
595
 
596
596
  .flip.transition.in,
597
597
  .flip.transition.out {
@@ -716,8 +716,8 @@
716
716
  }
717
717
 
718
718
  /*--------------
719
- Scale
720
- ---------------*/
719
+ Scale
720
+ ---------------*/
721
721
 
722
722
  .scale.transition.in {
723
723
  -webkit-animation-name: scaleIn;
@@ -779,8 +779,8 @@
779
779
  }
780
780
 
781
781
  /*--------------
782
- Fly
783
- ---------------*/
782
+ Fly
783
+ ---------------*/
784
784
 
785
785
 
786
786
  /* Inward */
@@ -1238,8 +1238,8 @@
1238
1238
  }
1239
1239
 
1240
1240
  /*--------------
1241
- Slide
1242
- ---------------*/
1241
+ Slide
1242
+ ---------------*/
1243
1243
 
1244
1244
  .transition.slide.in,
1245
1245
  .transition[class*="slide down"].in {
@@ -1257,14 +1257,14 @@
1257
1257
  .transition[class*="slide left"].in {
1258
1258
  -webkit-animation-name: slideInX;
1259
1259
  animation-name: slideInX;
1260
- -webkit-transform-origin: center right;
1261
- transform-origin: center right;
1260
+ -webkit-transform-origin: right center;
1261
+ transform-origin: right center;
1262
1262
  }
1263
1263
  .transition[class*="slide right"].in {
1264
1264
  -webkit-animation-name: slideInX;
1265
1265
  animation-name: slideInX;
1266
- -webkit-transform-origin: center left;
1267
- transform-origin: center left;
1266
+ -webkit-transform-origin: left center;
1267
+ transform-origin: left center;
1268
1268
  }
1269
1269
  .transition.slide.out,
1270
1270
  .transition[class*="slide down"].out {
@@ -1282,14 +1282,14 @@
1282
1282
  .transition[class*="slide left"].out {
1283
1283
  -webkit-animation-name: slideOutX;
1284
1284
  animation-name: slideOutX;
1285
- -webkit-transform-origin: center right;
1286
- transform-origin: center right;
1285
+ -webkit-transform-origin: right center;
1286
+ transform-origin: right center;
1287
1287
  }
1288
1288
  .transition[class*="slide right"].out {
1289
1289
  -webkit-animation-name: slideOutX;
1290
1290
  animation-name: slideOutX;
1291
- -webkit-transform-origin: center left;
1292
- transform-origin: center left;
1291
+ -webkit-transform-origin: left center;
1292
+ transform-origin: left center;
1293
1293
  }
1294
1294
 
1295
1295
  /* In */
@@ -1393,8 +1393,8 @@
1393
1393
  }
1394
1394
 
1395
1395
  /*--------------
1396
- Swing
1397
- ---------------*/
1396
+ Swing
1397
+ ---------------*/
1398
1398
 
1399
1399
  .transition.swing {
1400
1400
  -webkit-animation-duration: 800ms;
@@ -1415,14 +1415,14 @@
1415
1415
  .transition[class*="swing left"].in {
1416
1416
  -webkit-animation-name: swingInY;
1417
1417
  animation-name: swingInY;
1418
- -webkit-transform-origin: center right;
1419
- transform-origin: center right;
1418
+ -webkit-transform-origin: right center;
1419
+ transform-origin: right center;
1420
1420
  }
1421
1421
  .transition[class*="swing right"].in {
1422
1422
  -webkit-animation-name: swingInY;
1423
1423
  animation-name: swingInY;
1424
- -webkit-transform-origin: center left;
1425
- transform-origin: center left;
1424
+ -webkit-transform-origin: left center;
1425
+ transform-origin: left center;
1426
1426
  }
1427
1427
  .transition.swing.out,
1428
1428
  .transition[class*="swing down"].out {
@@ -1440,14 +1440,14 @@
1440
1440
  .transition[class*="swing left"].out {
1441
1441
  -webkit-animation-name: swingOutY;
1442
1442
  animation-name: swingOutY;
1443
- -webkit-transform-origin: center right;
1444
- transform-origin: center right;
1443
+ -webkit-transform-origin: right center;
1444
+ transform-origin: right center;
1445
1445
  }
1446
1446
  .transition[class*="swing right"].out {
1447
1447
  -webkit-animation-name: swingOutY;
1448
1448
  animation-name: swingOutY;
1449
- -webkit-transform-origin: center left;
1450
- transform-origin: center left;
1449
+ -webkit-transform-origin: left center;
1450
+ transform-origin: left center;
1451
1451
  }
1452
1452
 
1453
1453
  /* In */
@@ -1647,8 +1647,8 @@
1647
1647
  }
1648
1648
 
1649
1649
  /*--------------
1650
- Zoom
1651
- ---------------*/
1650
+ Zoom
1651
+ ---------------*/
1652
1652
 
1653
1653
  .transition.zoom.in {
1654
1654
  -webkit-animation-name: zoomIn;
@@ -1,8 +1,8 @@
1
1
  module Fomantic
2
2
  module Ui
3
3
  module Sass
4
- VERSION = '2.8.1.1'.freeze
5
- SEMANTIC_UI_SHA = 'b3357c76f7d12ee8a2db98bc6d613da9b4e7a0d6'.freeze
4
+ VERSION = '2.8.6'.freeze
5
+ SEMANTIC_UI_SHA = '2b06f8b0aeb6c552c5252c39cddce259216f40ed'.freeze
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fomantic-ui-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.8.1.1
4
+ version: 2.8.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - doabit
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-01-17 00:00:00.000000000 Z
12
+ date: 2020-07-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: autoprefixer-rails
@@ -364,7 +364,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
364
364
  - !ruby/object:Gem::Version
365
365
  version: '0'
366
366
  requirements: []
367
- rubygems_version: 3.0.3
367
+ rubygems_version: 3.1.2
368
368
  signing_key:
369
369
  specification_version: 4
370
370
  summary: Fomantic UI, converted to Sass and ready to drop into Rails, Compass, or