semantic-ui-sass 2.2.14 → 2.3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +5 -1
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +946 -2670
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
- data/app/assets/javascripts/semantic-ui/accordion.js +5 -2
- data/app/assets/javascripts/semantic-ui/dimmer.js +2 -0
- data/app/assets/javascripts/semantic-ui/form.js +1 -1
- data/app/assets/javascripts/semantic-ui/modal.js +34 -42
- data/app/assets/javascripts/semantic-ui/popup.js +45 -8
- data/app/assets/javascripts/semantic-ui/search.js +71 -18
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +4 -4
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +6 -1
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +2911 -1842
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +5 -1
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +35 -35
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +36 -9
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +49 -48
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +34 -18
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +97 -2
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +1 -1
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/tasks/converter.rb +1 -0
- metadata +3 -3
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.
|
2
|
+
* # Semantic UI 2.3.0 - Search
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -298,13 +298,17 @@
|
|
298
298
|
.ui.category.search .results {
|
299
299
|
width: 28em;
|
300
300
|
}
|
301
|
+
.ui.category.search .results.animating,
|
302
|
+
.ui.category.search .results.visible {
|
303
|
+
display: table;
|
304
|
+
}
|
301
305
|
|
302
306
|
/* Category */
|
303
307
|
.ui.category.search > .results .category {
|
308
|
+
display: table-row;
|
304
309
|
background: #F3F4F5;
|
305
310
|
-webkit-box-shadow: none;
|
306
311
|
box-shadow: none;
|
307
|
-
border-bottom: 1px solid rgba(34, 36, 38, 0.1);
|
308
312
|
-webkit-transition: background 0.1s ease, border-color 0.1s ease;
|
309
313
|
transition: background 0.1s ease, border-color 0.1s ease;
|
310
314
|
}
|
@@ -322,31 +326,33 @@
|
|
322
326
|
border-radius: 0em 0em 0.28571429rem 0em;
|
323
327
|
}
|
324
328
|
|
325
|
-
/* Category Result */
|
326
|
-
.ui.category.search > .results .category .result {
|
327
|
-
background: #FFFFFF;
|
328
|
-
margin-left: 100px;
|
329
|
-
border-left: 1px solid rgba(34, 36, 38, 0.15);
|
330
|
-
border-bottom: 1px solid rgba(34, 36, 38, 0.1);
|
331
|
-
-webkit-transition: background 0.1s ease, border-color 0.1s ease;
|
332
|
-
transition: background 0.1s ease, border-color 0.1s ease;
|
333
|
-
padding: 0.85714286em 1.14285714em;
|
334
|
-
}
|
335
|
-
.ui.category.search > .results .category:last-child .result:last-child {
|
336
|
-
border-bottom: none;
|
337
|
-
}
|
338
|
-
|
339
329
|
/* Category Result Name */
|
340
330
|
.ui.category.search > .results .category > .name {
|
331
|
+
display: table-cell;
|
332
|
+
text-overflow: ellipsis;
|
341
333
|
width: 100px;
|
334
|
+
white-space: nowrap;
|
342
335
|
background: transparent;
|
343
336
|
font-family: $font-family;
|
344
337
|
font-size: 1em;
|
345
|
-
float: 1em;
|
346
|
-
float: left;
|
347
338
|
padding: 0.4em 1em;
|
348
339
|
font-weight: bold;
|
349
340
|
color: rgba(0, 0, 0, 0.4);
|
341
|
+
border-bottom: 1px solid rgba(34, 36, 38, 0.1);
|
342
|
+
}
|
343
|
+
|
344
|
+
/* Category Result */
|
345
|
+
.ui.category.search > .results .category .results {
|
346
|
+
display: table-cell;
|
347
|
+
background: #FFFFFF;
|
348
|
+
border-left: 1px solid rgba(34, 36, 38, 0.15);
|
349
|
+
border-bottom: 1px solid rgba(34, 36, 38, 0.1);
|
350
|
+
}
|
351
|
+
.ui.category.search > .results .category .result {
|
352
|
+
border-bottom: 1px solid rgba(34, 36, 38, 0.1);
|
353
|
+
-webkit-transition: background 0.1s ease, border-color 0.1s ease;
|
354
|
+
transition: background 0.1s ease, border-color 0.1s ease;
|
355
|
+
padding: 0.85714286em 1.14285714em;
|
350
356
|
}
|
351
357
|
|
352
358
|
|
@@ -402,6 +408,16 @@
|
|
402
408
|
font-size: 1.71428571em;
|
403
409
|
}
|
404
410
|
|
411
|
+
/*--------------
|
412
|
+
Mobile
|
413
|
+
---------------*/
|
414
|
+
|
415
|
+
@media only screen and (max-width: 767px) {
|
416
|
+
.ui.search .results {
|
417
|
+
max-width: calc(100vw - 2rem);
|
418
|
+
}
|
419
|
+
}
|
420
|
+
|
405
421
|
|
406
422
|
/*******************************
|
407
423
|
Theme Overrides
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* # Semantic UI 2.
|
2
|
+
* # Semantic UI 2.3.0 - Transition
|
3
3
|
* http://github.com/semantic-org/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
@@ -1646,6 +1646,67 @@
|
|
1646
1646
|
}
|
1647
1647
|
}
|
1648
1648
|
|
1649
|
+
/*--------------
|
1650
|
+
Zoom
|
1651
|
+
---------------*/
|
1652
|
+
|
1653
|
+
.transition.zoom.in {
|
1654
|
+
-webkit-animation-name: zoomIn;
|
1655
|
+
animation-name: zoomIn;
|
1656
|
+
}
|
1657
|
+
.transition.zoom.out {
|
1658
|
+
-webkit-animation-name: zoomOut;
|
1659
|
+
animation-name: zoomOut;
|
1660
|
+
}
|
1661
|
+
@-webkit-keyframes zoomIn {
|
1662
|
+
0% {
|
1663
|
+
opacity: 1;
|
1664
|
+
-webkit-transform: scale(0);
|
1665
|
+
transform: scale(0);
|
1666
|
+
}
|
1667
|
+
100% {
|
1668
|
+
opacity: 1;
|
1669
|
+
-webkit-transform: scale(1);
|
1670
|
+
transform: scale(1);
|
1671
|
+
}
|
1672
|
+
}
|
1673
|
+
@keyframes zoomIn {
|
1674
|
+
0% {
|
1675
|
+
opacity: 1;
|
1676
|
+
-webkit-transform: scale(0);
|
1677
|
+
transform: scale(0);
|
1678
|
+
}
|
1679
|
+
100% {
|
1680
|
+
opacity: 1;
|
1681
|
+
-webkit-transform: scale(1);
|
1682
|
+
transform: scale(1);
|
1683
|
+
}
|
1684
|
+
}
|
1685
|
+
@-webkit-keyframes zoomOut {
|
1686
|
+
0% {
|
1687
|
+
opacity: 1;
|
1688
|
+
-webkit-transform: scale(1);
|
1689
|
+
transform: scale(1);
|
1690
|
+
}
|
1691
|
+
100% {
|
1692
|
+
opacity: 1;
|
1693
|
+
-webkit-transform: scale(0);
|
1694
|
+
transform: scale(0);
|
1695
|
+
}
|
1696
|
+
}
|
1697
|
+
@keyframes zoomOut {
|
1698
|
+
0% {
|
1699
|
+
opacity: 1;
|
1700
|
+
-webkit-transform: scale(1);
|
1701
|
+
transform: scale(1);
|
1702
|
+
}
|
1703
|
+
100% {
|
1704
|
+
opacity: 1;
|
1705
|
+
-webkit-transform: scale(0);
|
1706
|
+
transform: scale(0);
|
1707
|
+
}
|
1708
|
+
}
|
1709
|
+
|
1649
1710
|
|
1650
1711
|
/*******************************
|
1651
1712
|
Static Animations
|
@@ -1692,6 +1753,16 @@
|
|
1692
1753
|
-webkit-animation-name: jiggle;
|
1693
1754
|
animation-name: jiggle;
|
1694
1755
|
}
|
1756
|
+
.transition.glow {
|
1757
|
+
-webkit-animation-duration: 2000ms;
|
1758
|
+
animation-duration: 2000ms;
|
1759
|
+
-webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
|
1760
|
+
animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
|
1761
|
+
}
|
1762
|
+
.transition.glow {
|
1763
|
+
-webkit-animation-name: glow;
|
1764
|
+
animation-name: glow;
|
1765
|
+
}
|
1695
1766
|
|
1696
1767
|
/* Flash */
|
1697
1768
|
@-webkit-keyframes flash {
|
@@ -1895,7 +1966,7 @@
|
|
1895
1966
|
}
|
1896
1967
|
}
|
1897
1968
|
|
1898
|
-
/*
|
1969
|
+
/* Jiggle */
|
1899
1970
|
@-webkit-keyframes jiggle {
|
1900
1971
|
0% {
|
1901
1972
|
-webkit-transform: scale3d(1, 1, 1);
|
@@ -1957,6 +2028,30 @@
|
|
1957
2028
|
}
|
1958
2029
|
}
|
1959
2030
|
|
2031
|
+
/* Glow */
|
2032
|
+
@-webkit-keyframes glow {
|
2033
|
+
0% {
|
2034
|
+
background-color: #FCFCFD;
|
2035
|
+
}
|
2036
|
+
30% {
|
2037
|
+
background-color: #FFF6CD;
|
2038
|
+
}
|
2039
|
+
100% {
|
2040
|
+
background-color: #FCFCFD;
|
2041
|
+
}
|
2042
|
+
}
|
2043
|
+
@keyframes glow {
|
2044
|
+
0% {
|
2045
|
+
background-color: #FCFCFD;
|
2046
|
+
}
|
2047
|
+
30% {
|
2048
|
+
background-color: #FFF6CD;
|
2049
|
+
}
|
2050
|
+
100% {
|
2051
|
+
background-color: #FCFCFD;
|
2052
|
+
}
|
2053
|
+
}
|
2054
|
+
|
1960
2055
|
|
1961
2056
|
/*******************************
|
1962
2057
|
Site Overrides
|
data/tasks/converter.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: semantic-ui-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- doabit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01
|
11
|
+
date: 2018-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -324,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
324
324
|
version: '0'
|
325
325
|
requirements: []
|
326
326
|
rubyforge_project:
|
327
|
-
rubygems_version: 2.
|
327
|
+
rubygems_version: 2.7.4
|
328
328
|
signing_key:
|
329
329
|
specification_version: 4
|
330
330
|
summary: Semantic UI, converted to Sass and ready to drop into Rails, Compass, or
|