semantic-ui-sass 0.15.5.0 → 0.16.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0b8f73befe8103b136dc4f6a7a5a7de44fb1bf98
4
- data.tar.gz: cb6ac9c96e0934e853018819a7d530dddc0eb5d4
3
+ metadata.gz: 1bb87ca074482fc718dad509ce9dab5fec3111e7
4
+ data.tar.gz: 53866675b76f7cada8d4a43cc8480940c273dd9c
5
5
  SHA512:
6
- metadata.gz: a712dad21e3f14a6ba2be8a0e658a4ed681ad9ee64397184a931bdcabf3d69c775bcc8427a2b4053961526c9f57103b11892fdb53906f9b94cd6b684329cd75f
7
- data.tar.gz: 0c769d3453da108fc4a7cdff5eaf613690daea795c8882a0c6eb64da79293c06a0978aeba021f9601230d4886a6cee2935c1781177698947ceba8ab5b72ea796
6
+ metadata.gz: 5dc4bf125cc17186c091761aefaafb490a820ec99684327548fdf0a7b00bb7a746c1fcb918a4ba475f986544bdfa4aa66943cd5925e71e20b26401c182da5b93
7
+ data.tar.gz: c82626215ee5749739f71a4f49ff87312a45639c68fc804e44ce34f4231929811ea519d6ebc3a794ffcecde5f2e3ea9a8dac4a6111333925a208f13ba37a91be
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.16.1.0
2
+
3
+ * Update Semantic UI to 0.16.1
4
+
1
5
  ## 0.15.5.0
2
6
 
3
7
  * Update Semantic UI to 0.15.5
@@ -78,7 +78,7 @@ $.fn.modal = function(parameters) {
78
78
  $dimmable = $context
79
79
  .dimmer({
80
80
  closable : false,
81
- useCSS : false,
81
+ useCSS : true,
82
82
  duration : {
83
83
  show : settings.duration * 0.9,
84
84
  hide : settings.duration * 1.1
@@ -243,7 +243,9 @@ $.fn.modal = function(parameters) {
243
243
  : function(){}
244
244
  ;
245
245
  if( !module.is.active() ) {
246
- module.cacheSizes();
246
+ if(module.cache === undefined) {
247
+ module.cacheSizes();
248
+ }
247
249
  module.set.position();
248
250
  module.set.screenHeight();
249
251
  module.set.type();
@@ -519,6 +521,7 @@ $.fn.modal = function(parameters) {
519
521
  },
520
522
 
521
523
  setting: function(name, value) {
524
+ module.debug('Changing setting', name, value);
522
525
  if( $.isPlainObject(name) ) {
523
526
  $.extend(true, settings, name);
524
527
  }
@@ -226,7 +226,7 @@ $.fn.transition = function() {
226
226
  var
227
227
  displayType = module.get.displayType()
228
228
  ;
229
- if(displayType !== 'block') {
229
+ if(displayType !== 'block' && displayType !== 'none') {
230
230
  module.verbose('Setting final visibility to', displayType);
231
231
  $module
232
232
  .css({
@@ -539,6 +539,94 @@
539
539
  padding-right: 1%;
540
540
  }
541
541
 
542
+ .ui.form .fields .field:first-child {
543
+ padding-left: 0%;
544
+ }
545
+
546
+ .ui.form .fields .field:last-child {
547
+ padding-right: 0%;
548
+ }
549
+
550
+ /* Fields grid support */
551
+
552
+ .ui.form .fields .wide.field {
553
+ width: 6.25%;
554
+ padding-left: 1%;
555
+ padding-right: 1%;
556
+ }
557
+
558
+ .ui.form .fields .wide.field:first-child {
559
+ padding-left: 0%;
560
+ }
561
+
562
+ .ui.form .fields .wide.field:last-child {
563
+ padding-right: 0%;
564
+ }
565
+
566
+ .ui.form .fields > .one.wide.field {
567
+ width: 6.25%;
568
+ }
569
+
570
+ .ui.form .fields > .two.wide.field {
571
+ width: 12.5%;
572
+ }
573
+
574
+ .ui.form .fields > .three.wide.field {
575
+ width: 18.75%;
576
+ }
577
+
578
+ .ui.form .fields > .four.wide.field {
579
+ width: 25%;
580
+ }
581
+
582
+ .ui.form .fields > .five.wide.field {
583
+ width: 31.25%;
584
+ }
585
+
586
+ .ui.form .fields > .six.wide.field {
587
+ width: 37.5%;
588
+ }
589
+
590
+ .ui.form .fields > .seven.wide.field {
591
+ width: 43.75%;
592
+ }
593
+
594
+ .ui.form .fields > .eight.wide.field {
595
+ width: 50%;
596
+ }
597
+
598
+ .ui.form .fields > .nine.wide.field {
599
+ width: 56.25%;
600
+ }
601
+
602
+ .ui.form .fields > .ten.wide.field {
603
+ width: 62.5%;
604
+ }
605
+
606
+ .ui.form .fields > .eleven.wide.field {
607
+ width: 68.75%;
608
+ }
609
+
610
+ .ui.form .fields > .twelve.wide.field {
611
+ width: 75%;
612
+ }
613
+
614
+ .ui.form .fields > .thirteen.wide.field {
615
+ width: 81.25%;
616
+ }
617
+
618
+ .ui.form .fields > .fourteen.wide.field {
619
+ width: 87.5%;
620
+ }
621
+
622
+ .ui.form .fields > .fifteen.wide.field {
623
+ width: 93.75%;
624
+ }
625
+
626
+ .ui.form .fields > .sixteen.wide.field {
627
+ width: 100%;
628
+ }
629
+
542
630
  /* Swap to full width on mobile */
543
631
 
544
632
  @media only screen and (max-width : 767px) {
@@ -549,21 +637,28 @@
549
637
  .ui.form .four.fields > .fields,
550
638
  .ui.form .four.fields > .field,
551
639
  .ui.form .five.fields > .fields,
552
- .ui.form .five.fields > .field {
640
+ .ui.form .five.fields > .field,
641
+ .ui.form .fields > .two.wide.field,
642
+ .ui.form .fields > .three.wide.field,
643
+ .ui.form .fields > .four.wide.field,
644
+ .ui.form .fields > .five.wide.field,
645
+ .ui.form .fields > .six.wide.field,
646
+ .ui.form .fields > .seven.wide.field,
647
+ .ui.form .fields > .eight.wide.field,
648
+ .ui.form .fields > .nine.wide.field,
649
+ .ui.form .fields > .ten.wide.field,
650
+ .ui.form .fields > .eleven.wide.field,
651
+ .ui.form .fields > .twelve.wide.field,
652
+ .ui.form .fields > .thirteen.wide.field,
653
+ .ui.form .fields > .fourteen.wide.field,
654
+ .ui.form .fields > .fifteen.wide.field,
655
+ .ui.form .fields > .sixteen.wide.field {
553
656
  width: 100%;
554
657
  padding-left: 0%;
555
658
  padding-right: 0%;
556
659
  }
557
660
  }
558
661
 
559
- .ui.form .fields .field:first-child {
560
- padding-left: 0%;
561
- }
562
-
563
- .ui.form .fields .field:last-child {
564
- padding-right: 0%;
565
- }
566
-
567
662
  /*--------------------
568
663
  Inline Fields
569
664
  ---------------------*/
@@ -43,10 +43,6 @@
43
43
  z-index: 3 !important;
44
44
  }
45
45
 
46
- .ui.reveal:hover > .hidden.content {
47
- z-index: 5 !important;
48
- }
49
-
50
46
  /*------------------
51
47
  Loose Coupling
52
48
  -------------------*/
@@ -186,15 +182,20 @@
186
182
  Fade
187
183
  ---------------*/
188
184
 
189
- .ui.fade.reveal > .visible.content {
190
- opacity: 1;
185
+ .ui.fade.reveal > .hidden.content {
186
+ -webkit-transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
187
+ transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s;
191
188
  }
192
189
 
193
- .ui.fade.reveal:hover > .visible.content,
194
- .ui.fade.reveal:focus > .visible.content {
190
+ .ui.fade.reveal > .hidden.content {
191
+ z-index: 5 !important;
195
192
  opacity: 0;
196
193
  }
197
194
 
195
+ .ui.fade.reveal:hover > .hidden.content {
196
+ opacity: 1;
197
+ }
198
+
198
199
  /*--------------
199
200
  Move
200
201
  ---------------*/
@@ -23,7 +23,7 @@
23
23
  position: relative;
24
24
  display: inline-block;
25
25
  min-width: 1em;
26
- height: 1.25em;
26
+ min-height: 1.25em;
27
27
  line-height: 1em;
28
28
  outline: none;
29
29
  vertical-align: middle;
@@ -95,6 +95,7 @@
95
95
  /*--- Inside Label ---*/
96
96
 
97
97
  .ui.checkbox label {
98
+ display: block;
98
99
  color: rgba(0, 0, 0, 0.6);
99
100
  -webkit-transition: color 0.2s ease;
100
101
  transition: color 0.2s ease;
@@ -48,7 +48,7 @@
48
48
  /* Hidden */
49
49
 
50
50
  .ui.hidden.transition {
51
- display: none;
51
+ display: none !important;
52
52
  }
53
53
 
54
54
  /* Visible */
@@ -439,7 +439,7 @@
439
439
  .ui.stackable.items > .row > .item {
440
440
  display: block !important;
441
441
  height: auto !important;
442
- width: auto !important;
442
+ width: 100% !important;
443
443
  padding: 0% !important;
444
444
  }
445
445
  }
@@ -1,8 +1,8 @@
1
1
  module Semantic
2
2
  module Ui
3
3
  module Sass
4
- VERSION = "0.15.5.0"
5
- SEMANTIC_UI_SHA = '7a0c7844de0127ee20c603577afee28e2ef4a1a1'
4
+ VERSION = "0.16.1.0"
5
+ SEMANTIC_UI_SHA = '06efdb6a651f0894db489fb1ccc8a9fa097446d1'
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.15.5.0
4
+ version: 0.16.1.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-04-12 00:00:00.000000000 Z
11
+ date: 2014-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler