semantic-ui-sass 0.13.0.0 → 0.13.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: 936440d4f4659868bc5f0574a7f55cc5a39388fe
4
- data.tar.gz: 777a61bd367f76bbc2cdcdce8a0c0317dabc0437
3
+ metadata.gz: ac035071097772a7a1ad38f639aaaf4b3324f695
4
+ data.tar.gz: 3a8a712238e49cd295afe093a485ee1dc237394e
5
5
  SHA512:
6
- metadata.gz: d68a706cb55a750fe70cba8ba859359fefb07f25e6fa779ea94ce3a532dad310bf399e1c3694cc6970440f3896212141e4ba69e89a626e3eb769a14f532f609e
7
- data.tar.gz: 3f5f83ea2434d902ec4f620552c9afde17ffadb8dd7637b51ee3c13cb62ef99edd87fe1a5708f968b2e9b7282d1807779fa809737f7efa29c96caa2a44fce02f
6
+ metadata.gz: 81ca56df7d645ec6dcbfad4c0b571233e5d323d51ca719b57e6acaf6f721b8ba4f9fbf860bf36fbba65da6068ab0276ecce36e6d7a3a83cc6365ce47f3a33735
7
+ data.tar.gz: 5384d52335a3a6a277cea28cb36e51a8b67fd73f3900a762783e361e93817bf5aa76e8d08aa028ffc9b9923738cd757026b62881d61b69b19701fc7ee97f989b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.13.1.0
2
+
3
+ * Update Semantic UI to 0.13.1
4
+
1
5
  ## 0.13.0.0
2
6
 
3
7
  * Update Semantic UI to 0.13.0
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ## Installation and Usage
6
6
 
7
7
  ```ruby
8
- gem 'semantic-ui-sass', '~> 0.13.0.0'
8
+ gem 'semantic-ui-sass', '~> 0.13.1.0'
9
9
  ```
10
10
  or
11
11
 
@@ -403,7 +403,7 @@ $.fn.form = function(fields, parameters) {
403
403
  type = validation.type,
404
404
  value = $.trim($field.val() + ''),
405
405
 
406
- bracketRegExp = /\[(.*?)\]/i,
406
+ bracketRegExp = /\[(.*)\]/i,
407
407
  bracket = bracketRegExp.exec(type),
408
408
  isValid = true,
409
409
  ancillary,
@@ -429,7 +429,7 @@ $.fn.modal = function(parameters) {
429
429
  cacheSizes: function() {
430
430
  module.cache = {
431
431
  pageHeight : $body.outerHeight(),
432
- height : $module.outerHeight() + settings.offset + parseInt($module.css('marginTop'), 10),
432
+ height : $module.outerHeight() + settings.offset,
433
433
  contextHeight : (settings.context == 'body')
434
434
  ? $(window).height()
435
435
  : $dimmable.height()
@@ -490,7 +490,7 @@ $.fn.modal = function(parameters) {
490
490
  }
491
491
  },
492
492
  position: function() {
493
- module.verbose('Centering modal on page', module.cache, module.cache.height / 2);
493
+ module.verbose('Centering modal on page', module.cache);
494
494
  if(module.can.fit()) {
495
495
  $module
496
496
  .css({
@@ -408,6 +408,15 @@
408
408
  background-color: #FFCCCC;
409
409
  }
410
410
 
411
+ .ui.inverted.form .ui.checkbox label {
412
+ color: rgba(255, 255, 255, 0.8);
413
+ }
414
+
415
+ .ui.inverted.form .ui.checkbox label:hover,
416
+ .ui.inverted.form .ui.checkbox .box:hover {
417
+ color: #FFFFFF;
418
+ }
419
+
411
420
  /*--------------------
412
421
  Field Groups
413
422
  ---------------------*/
@@ -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, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.05)));
36
+ background-image: -webkit-gradient(linear, top left, bottom left, 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, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.08)));
85
+ background-image: -webkit-gradient(linear, top left, bottom left, 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);
@@ -284,29 +284,29 @@
284
284
  ---------------------*/
285
285
 
286
286
  .ui.mini.input {
287
- font-size: 0.8125rem;
287
+ font-size: 0.8125em;
288
288
  }
289
289
 
290
290
  .ui.small.input {
291
- font-size: 0.875rem;
291
+ font-size: 0.875em;
292
292
  }
293
293
 
294
294
  .ui.input {
295
- font-size: 1rem;
295
+ font-size: 1em;
296
296
  }
297
297
 
298
298
  .ui.large.input {
299
- font-size: 1.125rem;
299
+ font-size: 1.125em;
300
300
  }
301
301
 
302
302
  .ui.big.input {
303
- font-size: 1.25rem;
303
+ font-size: 1.25em;
304
304
  }
305
305
 
306
306
  .ui.huge.input {
307
- font-size: 1.375rem;
307
+ font-size: 1.375em;
308
308
  }
309
309
 
310
310
  .ui.massive.input {
311
- font-size: 1.5rem;
311
+ font-size: 1.5em;
312
312
  }
@@ -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, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3)));
407
+ background-image: -webkit-gradient(linear, top left, bottom left, 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, left top, left bottom, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6)));
416
+ background-image: -webkit-gradient(linear, top left, bottom left, 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
  }
@@ -24,8 +24,8 @@
24
24
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
25
25
  }
26
26
 
27
- .ui.accordion > .title,
28
- .ui.accordion .accordion > .title {
27
+ .ui.accordion .title,
28
+ .ui.accordion .accordion .title {
29
29
  cursor: pointer;
30
30
  margin: 0em;
31
31
  padding: 0.75em 1em;
@@ -35,15 +35,15 @@
35
35
  transition: background-color 0.2s ease-out;
36
36
  }
37
37
 
38
- .ui.accordion > .title:first-child,
39
- .ui.accordion .accordion > .title:first-child {
38
+ .ui.accordion .title:first-child,
39
+ .ui.accordion .accordion .title:first-child {
40
40
  border-top: none;
41
41
  }
42
42
 
43
43
  /* Content */
44
44
 
45
- .ui.accordion > .content,
46
- .ui.accordion .accordion > .content {
45
+ .ui.accordion .content,
46
+ .ui.accordion .accordion .content {
47
47
  display: none;
48
48
  margin: 0em;
49
49
  padding: 1.3em 1em;
@@ -51,8 +51,8 @@
51
51
 
52
52
  /* Arrow */
53
53
 
54
- .ui.accordion > .title .dropdown.icon,
55
- .ui.accordion .accordion > .title .dropdown.icon {
54
+ .ui.accordion .title .dropdown.icon,
55
+ .ui.accordion .accordion .title .dropdown.icon {
56
56
  display: inline-block;
57
57
  float: none;
58
58
  margin: 0em 0.5em 0em 0em;
@@ -65,8 +65,8 @@
65
65
  transform: rotate(0deg);
66
66
  }
67
67
 
68
- .ui.accordion > .title .dropdown.icon:before,
69
- .ui.accordion .accordion > .title .dropdown.icon:before {
68
+ .ui.accordion .title .dropdown.icon:before,
69
+ .ui.accordion .accordion .title .dropdown.icon:before {
70
70
  content: '\f0da'/*rtl:'\f0d9'*/;
71
71
  }
72
72
 
@@ -80,8 +80,8 @@
80
80
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
81
81
  }
82
82
 
83
- .ui.basic.accordion.menu > .title,
84
- .ui.basic.accordion.menu > .content {
83
+ .ui.basic.accordion.menu .title,
84
+ .ui.basic.accordion.menu .content {
85
85
  padding: 0em;
86
86
  }
87
87
 
@@ -99,21 +99,21 @@
99
99
  box-shadow: none;
100
100
  }
101
101
 
102
- .ui.basic.accordion > .title,
103
- .ui.basic.accordion .accordion > .title {
102
+ .ui.basic.accordion .title,
103
+ .ui.basic.accordion .accordion .title {
104
104
  background-color: transparent;
105
105
  border-top: none;
106
106
  padding-left: 0em;
107
107
  padding-right: 0em;
108
108
  }
109
109
 
110
- .ui.basic.accordion > .content,
111
- .ui.basic.accordion .accordion > .content {
110
+ .ui.basic.accordion .content,
111
+ .ui.basic.accordion .accordion .content {
112
112
  padding: 0.5em 0em;
113
113
  }
114
114
 
115
- .ui.basic.accordion > .active.title,
116
- .ui.basic.accordion .accordion > .active.title {
115
+ .ui.basic.accordion .active.title,
116
+ .ui.basic.accordion .accordion .active.title {
117
117
  background-color: transparent;
118
118
  }
119
119
 
@@ -125,10 +125,10 @@
125
125
  Hover
126
126
  ---------------*/
127
127
 
128
- .ui.accordion > .title:hover,
129
- .ui.accordion > .active.title,
130
- .ui.accordion .accordion > .title:hover,
131
- .ui.accordion .accordion > .active.title {
128
+ .ui.accordion .title:hover,
129
+ .ui.accordion .active.title,
130
+ .ui.accordion .accordion .title:hover,
131
+ .ui.accordion .accordion .active.title {
132
132
  color: rgba(0, 0, 0, 0.8);
133
133
  }
134
134
 
@@ -136,21 +136,21 @@
136
136
  Active
137
137
  ---------------*/
138
138
 
139
- .ui.accordion > .active.title,
140
- .ui.accordion .accordion > .active.title {
139
+ .ui.accordion .active.title,
140
+ .ui.accordion .accordion .active.title {
141
141
  background-color: rgba(0, 0, 0, 0.1);
142
142
  color: rgba(0, 0, 0, 0.8);
143
143
  }
144
144
 
145
- .ui.accordion > .active.title .dropdown.icon,
146
- .ui.accordion .accordion > .active.title .dropdown.icon {
145
+ .ui.accordion .active.title .dropdown.icon,
146
+ .ui.accordion .accordion .active.title .dropdown.icon {
147
147
  -webkit-transform: rotate(90deg);
148
148
  -ms-transform: rotate(90deg);
149
149
  transform: rotate(90deg);
150
150
  }
151
151
 
152
- .ui.accordion > .active.content,
153
- .ui.accordion .accordion > .active.content {
152
+ .ui.accordion .active.content,
153
+ .ui.accordion .accordion .active.content {
154
154
  display: block;
155
155
  }
156
156
 
@@ -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, left top, left bottom, from(transparent), to(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)));
432
432
  background: transparent linear-gradient(transparent, rgba(0, 0, 0, 0.03));
433
433
  }
434
434
 
@@ -1,8 +1,8 @@
1
1
  module Semantic
2
2
  module Ui
3
3
  module Sass
4
- VERSION = "0.13.0.0"
5
- SEMANTIC_UI_SHA = 'fb014b96a85147bfc37cf4c75b08ae1b4f5c2122'
4
+ VERSION = "0.13.1.0"
5
+ SEMANTIC_UI_SHA = 'ab904bb50fdc8c8f9de93107217548a80c2ab15d'
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.13.0.0
4
+ version: 0.13.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-02-21 00:00:00.000000000 Z
11
+ date: 2014-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler