semantic-ui-sass 0.10.3.0 → 0.11.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/app/assets/javascripts/semantic-ui/accordion.js +10 -10
- data/app/assets/javascripts/semantic-ui/behavior/api.js +11 -11
- data/app/assets/javascripts/semantic-ui/behavior/form.js +10 -10
- data/app/assets/javascripts/semantic-ui/behavior/state.js +10 -10
- data/app/assets/javascripts/semantic-ui/checkbox.js +10 -10
- data/app/assets/javascripts/semantic-ui/dimmer.js +11 -11
- data/app/assets/javascripts/semantic-ui/dropdown.js +10 -10
- data/app/assets/javascripts/semantic-ui/modal.js +56 -48
- data/app/assets/javascripts/semantic-ui/nag.js +10 -10
- data/app/assets/javascripts/semantic-ui/popup.js +30 -20
- data/app/assets/javascripts/semantic-ui/rating.js +10 -10
- data/app/assets/javascripts/semantic-ui/search.js +10 -10
- data/app/assets/javascripts/semantic-ui/shape.js +10 -10
- data/app/assets/javascripts/semantic-ui/sidebar.js +10 -10
- data/app/assets/javascripts/semantic-ui/tab.js +11 -11
- data/app/assets/javascripts/semantic-ui/transition.js +233 -110
- data/app/assets/javascripts/semantic-ui/video.js +10 -10
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +0 -1
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -0
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +7 -6
- data/lib/semantic/ui/sass/version.rb +2 -2
- metadata +2 -2
@@ -334,13 +334,14 @@ $.fn.video = function(parameters) {
|
|
334
334
|
},
|
335
335
|
invoke: function(query, passedArguments, context) {
|
336
336
|
var
|
337
|
+
object = instance,
|
337
338
|
maxDepth,
|
338
339
|
found,
|
339
340
|
response
|
340
341
|
;
|
341
342
|
passedArguments = passedArguments || queryArguments;
|
342
343
|
context = element || context;
|
343
|
-
if(typeof query == 'string' &&
|
344
|
+
if(typeof query == 'string' && object !== undefined) {
|
344
345
|
query = query.split(/[\. ]/);
|
345
346
|
maxDepth = query.length - 1;
|
346
347
|
$.each(query, function(depth, value) {
|
@@ -348,22 +349,21 @@ $.fn.video = function(parameters) {
|
|
348
349
|
? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
|
349
350
|
: query
|
350
351
|
;
|
351
|
-
if( $.isPlainObject(
|
352
|
-
|
352
|
+
if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
|
353
|
+
object = object[camelCaseValue];
|
353
354
|
}
|
354
|
-
else if(
|
355
|
-
found =
|
355
|
+
else if( object[camelCaseValue] !== undefined ) {
|
356
|
+
found = object[camelCaseValue];
|
356
357
|
return false;
|
357
358
|
}
|
358
|
-
else if( $.isPlainObject(
|
359
|
-
|
359
|
+
else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
|
360
|
+
object = object[value];
|
360
361
|
}
|
361
|
-
else if(
|
362
|
-
found =
|
362
|
+
else if( object[value] !== undefined ) {
|
363
|
+
found = object[value];
|
363
364
|
return false;
|
364
365
|
}
|
365
366
|
else {
|
366
|
-
module.error(error.method, query);
|
367
367
|
return false;
|
368
368
|
}
|
369
369
|
});
|
@@ -33,7 +33,7 @@
|
|
33
33
|
font-style: normal;
|
34
34
|
text-align: center;
|
35
35
|
text-decoration: none;
|
36
|
-
background-image: -webkit-gradient(linear, top left
|
36
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.05)));
|
37
37
|
background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
|
38
38
|
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.05));
|
39
39
|
border-radius: 0.25em;
|
@@ -82,7 +82,7 @@
|
|
82
82
|
---------------*/
|
83
83
|
|
84
84
|
.ui.button:hover {
|
85
|
-
background-image: -webkit-gradient(linear, top left
|
85
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.08)));
|
86
86
|
background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
|
87
87
|
background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08));
|
88
88
|
color: rgba(0, 0, 0, 0.7);
|
@@ -404,7 +404,7 @@
|
|
404
404
|
background-color: #555555;
|
405
405
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3)));
|
406
406
|
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
|
407
|
-
background-image: -webkit-gradient(linear, top left
|
407
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3)));
|
408
408
|
background-image: linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
|
409
409
|
color: #FAFAFA;
|
410
410
|
}
|
@@ -413,7 +413,7 @@
|
|
413
413
|
background-color: #555555;
|
414
414
|
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6)));
|
415
415
|
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
|
416
|
-
background-image: -webkit-gradient(linear, top left
|
416
|
+
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6)));
|
417
417
|
background-image: linear-gradient(rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
|
418
418
|
color: #EEEEEE;
|
419
419
|
}
|
@@ -428,7 +428,7 @@
|
|
428
428
|
|
429
429
|
.ui.pointing.dropdown .menu .active.item:first-child {
|
430
430
|
background: transparent -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.03));
|
431
|
-
background: transparent-webkit-gradient(linear, top left
|
431
|
+
background: transparent-webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.03)));
|
432
432
|
background: transparent linear-gradient(transparent, rgba(0, 0, 0, 0.03));
|
433
433
|
}
|
434
434
|
|
@@ -28,6 +28,7 @@
|
|
28
28
|
*******************************/
|
29
29
|
|
30
30
|
.ui.animating.transition {
|
31
|
+
display: block;
|
31
32
|
-webkit-backface-visibility: hidden;
|
32
33
|
-ms-backface-visibility: hidden;
|
33
34
|
backface-visibility: hidden;
|
@@ -190,7 +191,7 @@
|
|
190
191
|
}
|
191
192
|
|
192
193
|
/*--------------
|
193
|
-
|
194
|
+
Slide
|
194
195
|
---------------*/
|
195
196
|
|
196
197
|
.ui.slide.down.transition.in {
|
@@ -290,7 +291,7 @@
|
|
290
291
|
*******************************/
|
291
292
|
|
292
293
|
/*--------------
|
293
|
-
|
294
|
+
Emphasis
|
294
295
|
---------------*/
|
295
296
|
|
296
297
|
/* Flash */
|
@@ -541,13 +542,13 @@
|
|
541
542
|
0% {
|
542
543
|
-webkit-transform: rotateY(0deg);
|
543
544
|
transform: rotateY(0deg);
|
544
|
-
opacity:
|
545
|
+
opacity: 1;
|
545
546
|
}
|
546
547
|
|
547
548
|
100% {
|
548
549
|
-webkit-transform: rotateY(90deg);
|
549
550
|
transform: rotateY(90deg);
|
550
|
-
opacity:
|
551
|
+
opacity: 0;
|
551
552
|
}
|
552
553
|
}
|
553
554
|
|
@@ -556,14 +557,14 @@
|
|
556
557
|
-webkit-transform: rotateY(0deg);
|
557
558
|
-ms-transform: rotateY(0deg);
|
558
559
|
transform: rotateY(0deg);
|
559
|
-
opacity:
|
560
|
+
opacity: 1;
|
560
561
|
}
|
561
562
|
|
562
563
|
100% {
|
563
564
|
-webkit-transform: rotateY(90deg);
|
564
565
|
-ms-transform: rotateY(90deg);
|
565
566
|
transform: rotateY(90deg);
|
566
|
-
opacity:
|
567
|
+
opacity: 0;
|
567
568
|
}
|
568
569
|
}
|
569
570
|
|
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.11.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: 2013-12-
|
11
|
+
date: 2013-12-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|