semantic-ui-sass 0.16.1.0 → 0.19.3.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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/app/assets/javascripts/semantic-ui/accordion.js +15 -5
- data/app/assets/javascripts/semantic-ui/behavior/api.js +1 -1
- data/app/assets/javascripts/semantic-ui/behavior/colorize.js +1 -1
- data/app/assets/javascripts/semantic-ui/behavior/form.js +2 -2
- data/app/assets/javascripts/semantic-ui/behavior/state.js +1 -1
- data/app/assets/javascripts/semantic-ui/chatroom.js +1 -1
- data/app/assets/javascripts/semantic-ui/checkbox.js +1 -1
- data/app/assets/javascripts/semantic-ui/dimmer.js +1 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +79 -5
- data/app/assets/javascripts/semantic-ui/modal.js +113 -74
- data/app/assets/javascripts/semantic-ui/nag.js +1 -1
- data/app/assets/javascripts/semantic-ui/popup.js +13 -3
- data/app/assets/javascripts/semantic-ui/rating.js +1 -1
- data/app/assets/javascripts/semantic-ui/search.js +2 -2
- data/app/assets/javascripts/semantic-ui/shape.js +1 -1
- data/app/assets/javascripts/semantic-ui/sidebar.js +1 -1
- data/app/assets/javascripts/semantic-ui/tab.js +1 -1
- data/app/assets/javascripts/semantic-ui/transition.js +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +96 -41
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +37 -109
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +9 -7
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +5 -1
- data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +6 -6
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/elements/_progress.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 +23 -2
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +9 -4
- data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +76 -2
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +1 -1
- 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/_rating.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +1 -1
- 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/_tab.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +152 -0
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/views/_list.scss +3 -3
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +2 -2
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/tasks/converter.rb +1 -1
- metadata +2 -2
@@ -176,6 +176,34 @@
|
|
176
176
|
animation-name: fadeDownOut;
|
177
177
|
}
|
178
178
|
|
179
|
+
/*rtl:ignore renaming*/
|
180
|
+
|
181
|
+
.ui.fade.left.transition.in {
|
182
|
+
-webkit-animation-name: fadeLeft;
|
183
|
+
animation-name: fadeLeft;
|
184
|
+
}
|
185
|
+
|
186
|
+
/*rtl:ignore renaming*/
|
187
|
+
|
188
|
+
.ui.fade.left.transition.out {
|
189
|
+
-webkit-animation-name: fadeLeftOut;
|
190
|
+
animation-name: fadeLeftOut;
|
191
|
+
}
|
192
|
+
|
193
|
+
/*rtl:ignore renaming*/
|
194
|
+
|
195
|
+
.ui.fade.right.transition.in {
|
196
|
+
-webkit-animation-name: fadeRight;
|
197
|
+
animation-name: fadeRight;
|
198
|
+
}
|
199
|
+
|
200
|
+
/*rtl:ignore renaming*/
|
201
|
+
|
202
|
+
.ui.fade.right.transition.out {
|
203
|
+
-webkit-animation-name: fadeRightOut;
|
204
|
+
animation-name: fadeRightOut;
|
205
|
+
}
|
206
|
+
|
179
207
|
/*--------------
|
180
208
|
Scale
|
181
209
|
---------------*/
|
@@ -800,6 +828,130 @@
|
|
800
828
|
}
|
801
829
|
}
|
802
830
|
|
831
|
+
/* Fade Left */
|
832
|
+
|
833
|
+
@-webkit-keyframes fadeLeft {
|
834
|
+
0% {
|
835
|
+
opacity: 0;
|
836
|
+
-webkit-transform: translateX(-20px);
|
837
|
+
transform: translateX(-20px);
|
838
|
+
}
|
839
|
+
|
840
|
+
100% {
|
841
|
+
opacity: 1;
|
842
|
+
-webkit-transform: translateX(0);
|
843
|
+
transform: translateX(0);
|
844
|
+
}
|
845
|
+
}
|
846
|
+
|
847
|
+
@keyframes fadeLeft {
|
848
|
+
0% {
|
849
|
+
opacity: 0;
|
850
|
+
-webkit-transform: translateX(-20px);
|
851
|
+
-ms-transform: translateX(-20px);
|
852
|
+
transform: translateX(-20px);
|
853
|
+
}
|
854
|
+
|
855
|
+
100% {
|
856
|
+
opacity: 1;
|
857
|
+
-webkit-transform: translateX(0);
|
858
|
+
-ms-transform: translateX(0);
|
859
|
+
transform: translateX(0);
|
860
|
+
}
|
861
|
+
}
|
862
|
+
|
863
|
+
@-webkit-keyframes fadeLeftOut {
|
864
|
+
0% {
|
865
|
+
opacity: 1;
|
866
|
+
-webkit-transform: translateX(0);
|
867
|
+
transform: translateX(0);
|
868
|
+
}
|
869
|
+
|
870
|
+
100% {
|
871
|
+
opacity: 0;
|
872
|
+
-webkit-transform: translateX(-20px);
|
873
|
+
transform: translateX(-20px);
|
874
|
+
}
|
875
|
+
}
|
876
|
+
|
877
|
+
@keyframes fadeLeftOut {
|
878
|
+
0% {
|
879
|
+
opacity: 1;
|
880
|
+
-webkit-transform: translateX(0);
|
881
|
+
-ms-transform: translateX(0);
|
882
|
+
transform: translateX(0);
|
883
|
+
}
|
884
|
+
|
885
|
+
100% {
|
886
|
+
opacity: 0;
|
887
|
+
-webkit-transform: translateX(-20px);
|
888
|
+
-ms-transform: translateX(-20px);
|
889
|
+
transform: translateX(-20px);
|
890
|
+
}
|
891
|
+
}
|
892
|
+
|
893
|
+
/* Fade Right */
|
894
|
+
|
895
|
+
@-webkit-keyframes fadeRight {
|
896
|
+
0% {
|
897
|
+
opacity: 0;
|
898
|
+
-webkit-transform: translateX(20px);
|
899
|
+
transform: translateX(20px);
|
900
|
+
}
|
901
|
+
|
902
|
+
100% {
|
903
|
+
opacity: 1;
|
904
|
+
-webkit-transform: translateX(0);
|
905
|
+
transform: translateX(0);
|
906
|
+
}
|
907
|
+
}
|
908
|
+
|
909
|
+
@keyframes fadeRight {
|
910
|
+
0% {
|
911
|
+
opacity: 0;
|
912
|
+
-webkit-transform: translateX(20px);
|
913
|
+
-ms-transform: translateX(20px);
|
914
|
+
transform: translateX(20px);
|
915
|
+
}
|
916
|
+
|
917
|
+
100% {
|
918
|
+
opacity: 1;
|
919
|
+
-webkit-transform: translateX(0);
|
920
|
+
-ms-transform: translateX(0);
|
921
|
+
transform: translateX(0);
|
922
|
+
}
|
923
|
+
}
|
924
|
+
|
925
|
+
@-webkit-keyframes fadeRightOut {
|
926
|
+
0% {
|
927
|
+
opacity: 1;
|
928
|
+
-webkit-transform: translateX(0);
|
929
|
+
transform: translateX(0);
|
930
|
+
}
|
931
|
+
|
932
|
+
100% {
|
933
|
+
opacity: 0;
|
934
|
+
-webkit-transform: translateX(20px);
|
935
|
+
transform: translateX(20px);
|
936
|
+
}
|
937
|
+
}
|
938
|
+
|
939
|
+
@keyframes fadeRightOut {
|
940
|
+
0% {
|
941
|
+
opacity: 1;
|
942
|
+
-webkit-transform: translateX(0);
|
943
|
+
-ms-transform: translateX(0);
|
944
|
+
transform: translateX(0);
|
945
|
+
}
|
946
|
+
|
947
|
+
100% {
|
948
|
+
opacity: 0;
|
949
|
+
-webkit-transform: translateX(20px);
|
950
|
+
-ms-transform: translateX(20px);
|
951
|
+
transform: translateX(20px);
|
952
|
+
}
|
953
|
+
}
|
954
|
+
|
803
955
|
/*--------------
|
804
956
|
Scale
|
805
957
|
---------------*/
|
@@ -3,11 +3,11 @@
|
|
3
3
|
* http://github.com/jlukic/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
6
|
-
* Copyright
|
6
|
+
* Copyright 2014 Contributors
|
7
7
|
* Released under the MIT license
|
8
8
|
* http://opensource.org/licenses/MIT
|
9
9
|
*
|
10
|
-
* Released: April 17
|
10
|
+
* Released: April 17 2014
|
11
11
|
*/
|
12
12
|
|
13
13
|
/*******************************
|
@@ -3,11 +3,11 @@
|
|
3
3
|
* http://github.com/jlukic/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
6
|
-
* Copyright
|
6
|
+
* Copyright 2014 Contributors
|
7
7
|
* Released under the MIT license
|
8
8
|
* http://opensource.org/licenses/MIT
|
9
9
|
*
|
10
|
-
* Released: May 22,
|
10
|
+
* Released: May 22, 2014
|
11
11
|
*/
|
12
12
|
|
13
13
|
/*******************************
|
@@ -3,11 +3,11 @@
|
|
3
3
|
* http://github.com/jlukic/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
6
|
-
* Copyright
|
6
|
+
* Copyright 2014 Contributors
|
7
7
|
* Released under the MIT license
|
8
8
|
* http://opensource.org/licenses/MIT
|
9
9
|
*
|
10
|
-
* Released: April 17
|
10
|
+
* Released: April 17 2014
|
11
11
|
*/
|
12
12
|
|
13
13
|
/*******************************
|
@@ -3,11 +3,11 @@
|
|
3
3
|
* http://github.com/jlukic/semantic-ui/
|
4
4
|
*
|
5
5
|
*
|
6
|
-
* Copyright
|
6
|
+
* Copyright 2014 Contributors
|
7
7
|
* Released under the MIT license
|
8
8
|
* http://opensource.org/licenses/MIT
|
9
9
|
*
|
10
|
-
* Released: April 26
|
10
|
+
* Released: April 26 2014
|
11
11
|
*/
|
12
12
|
|
13
13
|
/*******************************
|
@@ -457,7 +457,7 @@ ol.ui.horizontal.list li:before,
|
|
457
457
|
|
458
458
|
/* Sub Menu */
|
459
459
|
|
460
|
-
.ui.divided.list:not(.horizontal) .list {
|
460
|
+
.ui.divided.list:not(.horizontal) .list:not(.icon) {
|
461
461
|
margin-left: -0.5em;
|
462
462
|
margin-right: -0.5em;
|
463
463
|
}
|
@@ -2,11 +2,11 @@
|
|
2
2
|
* # Statistic
|
3
3
|
*
|
4
4
|
*
|
5
|
-
* Copyright
|
5
|
+
* Copyright 2014 Contributors
|
6
6
|
* Released under the MIT license
|
7
7
|
* http://opensource.org/licenses/MIT
|
8
8
|
*
|
9
|
-
* Released: Aug 20,
|
9
|
+
* Released: Aug 20, 2014
|
10
10
|
*/
|
11
11
|
|
12
12
|
/*******************************
|
data/tasks/converter.rb
CHANGED
@@ -258,7 +258,7 @@ private
|
|
258
258
|
end
|
259
259
|
|
260
260
|
def replace_fonts_url(less)
|
261
|
-
less.gsub(/url\(\.\.\/fonts\/?(.*?)\)/) {|s| "
|
261
|
+
less.gsub(/url\(\.\.\/fonts\/?(.*?)\)/) {|s| "url(\"semantic-ui/#{$1}\")" }
|
262
262
|
end
|
263
263
|
|
264
264
|
def replace_font_family(less)
|
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: 0.
|
4
|
+
version: 0.19.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- doabit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|