semantic-ui-sass 0.10.3.0 → 0.11.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/README.md +1 -1
  4. data/app/assets/javascripts/semantic-ui/accordion.js +10 -10
  5. data/app/assets/javascripts/semantic-ui/behavior/api.js +11 -11
  6. data/app/assets/javascripts/semantic-ui/behavior/form.js +10 -10
  7. data/app/assets/javascripts/semantic-ui/behavior/state.js +10 -10
  8. data/app/assets/javascripts/semantic-ui/checkbox.js +10 -10
  9. data/app/assets/javascripts/semantic-ui/dimmer.js +11 -11
  10. data/app/assets/javascripts/semantic-ui/dropdown.js +10 -10
  11. data/app/assets/javascripts/semantic-ui/modal.js +56 -48
  12. data/app/assets/javascripts/semantic-ui/nag.js +10 -10
  13. data/app/assets/javascripts/semantic-ui/popup.js +30 -20
  14. data/app/assets/javascripts/semantic-ui/rating.js +10 -10
  15. data/app/assets/javascripts/semantic-ui/search.js +10 -10
  16. data/app/assets/javascripts/semantic-ui/shape.js +10 -10
  17. data/app/assets/javascripts/semantic-ui/sidebar.js +10 -10
  18. data/app/assets/javascripts/semantic-ui/tab.js +11 -11
  19. data/app/assets/javascripts/semantic-ui/transition.js +233 -110
  20. data/app/assets/javascripts/semantic-ui/video.js +10 -10
  21. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +2 -2
  22. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +2 -2
  23. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +0 -1
  24. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +1 -0
  25. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1 -1
  26. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +1 -0
  27. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +7 -6
  28. data/lib/semantic/ui/sass/version.rb +2 -2
  29. 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' && instance !== undefined) {
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( instance[camelCaseValue] ) && (depth != maxDepth) ) {
352
- instance = instance[camelCaseValue];
352
+ if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
353
+ object = object[camelCaseValue];
353
354
  }
354
- else if( instance[camelCaseValue] !== undefined ) {
355
- found = instance[camelCaseValue];
355
+ else if( object[camelCaseValue] !== undefined ) {
356
+ found = object[camelCaseValue];
356
357
  return false;
357
358
  }
358
- else if( $.isPlainObject( instance[value] ) && (depth != maxDepth) ) {
359
- instance = instance[value];
359
+ else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
360
+ object = object[value];
360
361
  }
361
- else if( instance[value] !== undefined ) {
362
- found = instance[value];
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, bottom left, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.05)));
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, bottom left, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.08)));
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, bottom left, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3)));
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, bottom left, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6)));
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
  }
@@ -17,7 +17,6 @@
17
17
  .ui.accordion .accordion {
18
18
  width: 600px;
19
19
  max-width: 100%;
20
- overflow: hidden;
21
20
  font-size: 1rem;
22
21
  border-radius: 0.3125em;
23
22
  background-color: #FFFFFF;
@@ -86,6 +86,7 @@
86
86
  overflow: hidden;
87
87
  }
88
88
 
89
+ .ui.dimmed.dimmable > .ui.animating.dimmer,
89
90
  .ui.dimmed.dimmable > .ui.visible.dimmer,
90
91
  .ui.active.dimmer {
91
92
  display: block;
@@ -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, bottom left, from(transparent), to(rgba(0, 0, 0, 0.03)));
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
 
@@ -205,6 +205,7 @@
205
205
  visibility: hidden;
206
206
  }
207
207
 
208
+ .ui.animating.popup,
208
209
  .ui.visible.popup {
209
210
  display: block;
210
211
  }
@@ -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
- Slide
194
+ Slide
194
195
  ---------------*/
195
196
 
196
197
  .ui.slide.down.transition.in {
@@ -290,7 +291,7 @@
290
291
  *******************************/
291
292
 
292
293
  /*--------------
293
- Emphasis
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: 0;
545
+ opacity: 1;
545
546
  }
546
547
 
547
548
  100% {
548
549
  -webkit-transform: rotateY(90deg);
549
550
  transform: rotateY(90deg);
550
- opacity: 1;
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: 0;
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: 1;
567
+ opacity: 0;
567
568
  }
568
569
  }
569
570
 
@@ -1,8 +1,8 @@
1
1
  module Semantic
2
2
  module Ui
3
3
  module Sass
4
- VERSION = "0.10.3.0"
5
- SEMANTIC_UI_SHA = 'bd9be71163a533eaf06b47495621403efa4a3701'
4
+ VERSION = "0.11.0.0"
5
+ SEMANTIC_UI_SHA = '0a747067de7d177c6b46a18afd0b7f210c148d40'
6
6
  end
7
7
  end
8
8
  end
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.10.3.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-22 00:00:00.000000000 Z
11
+ date: 2013-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler