semantic-ui-sass 0.10.1.0 → 0.10.2.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: 80b3cbd592532324cf5101866f53bcc0ccbb6c2d
4
- data.tar.gz: eeeafb6f2df77d52c46be58d60cb6a1e918d2ef9
3
+ metadata.gz: 136dd8eef21a474e7d48e763d8a08c275ad04a44
4
+ data.tar.gz: 8fed24dc8455c832d7e1a7ebaf384ed448ca11e7
5
5
  SHA512:
6
- metadata.gz: d21331d3d2831ddb986efd2c3252ef1e1071205e2c91a4b5c211297541f92e7655ab0a70debda8de3bc376c15f30452866138f7bf8b3f49cacefa2525efc49d3
7
- data.tar.gz: 1680bb7448a832e9689cbd6edec9837ad9ac95f0109d32e39f7ec1c3f2b0e758e394d489a13b21ab5da44be3956f3dfbcf5028d1da01d62a8ee2c58f0ca02090
6
+ metadata.gz: 11d932f4ba1d42077ce58f131b40f59c7f8a406662e50a4a62d10bbc9248a6a027667d5f22396ce72f5cf6a260dc27ed3e6a5cd7f8456ac1ce24d78a3bc30b98
7
+ data.tar.gz: 74a61b86ce03a013db9a3bbdcb5eb544ea214bbba90632736db546d268e649b78e6be57a6586c6603a8b51dd5088f3fe63b0c7ece2b43be1072b2aee453ea7bc
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- ## 0.10.0.0
1
+ ## 0.10.2.0
2
+
3
+ * Update Semantic UI to 0.10.2
4
+
5
+ ## 0.10.1.0
2
6
 
3
7
  * Update Semantic UI to 0.10.1
4
8
 
data/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ## Installation and Usage
6
6
 
7
7
  ```ruby
8
- gem 'semantic-ui-sass', '~> 0.10.1.0'
8
+ gem 'semantic-ui-sass', '~> 0.10.2.0'
9
9
  ```
10
10
  or
11
11
 
@@ -836,4 +836,12 @@ $.fn.dropdown.settings = {
836
836
 
837
837
  };
838
838
 
839
+ // Adds easing
840
+ $.extend( $.easing, {
841
+ easeOutQuad: function (x, t, b, c, d) {
842
+ return -c *(t/=d)*(t-2) + b;
843
+ },
844
+ });
845
+
846
+
839
847
  })( jQuery, window , document );
@@ -202,13 +202,15 @@ $.fn.sidebar = function(parameters) {
202
202
  add: {
203
203
  bodyCSS: function(direction, distance) {
204
204
  var
205
+ invertDirection,
205
206
  style
206
207
  ;
207
208
  if(direction !== className.bottom) {
209
+ invertDirection = direction === 'right' ? -1 : 1;
208
210
  style = ''
209
211
  + '<style title="' + namespace + '">'
210
212
  + 'body.pushed {'
211
- + ' margin-' + direction + ': ' + distance + 'px !important;'
213
+ + ' margin-left: ' + invertDirection * distance + 'px !important;'
212
214
  + '}'
213
215
  + '</style>'
214
216
  ;
@@ -218,6 +220,7 @@ $.fn.sidebar = function(parameters) {
218
220
  }
219
221
  },
220
222
 
223
+
221
224
  remove: {
222
225
  bodyCSS: function() {
223
226
  module.debug('Removing body css styles', $style);
@@ -454,6 +454,23 @@
454
454
  color: #FFFFFF;
455
455
  }
456
456
 
457
+ /* vk.com */
458
+
459
+ .ui.vk.button {
460
+ background-color: #4D7198;
461
+ color: #FFFFFF;
462
+ }
463
+
464
+ .ui.vk.button:hover {
465
+ background-color: #537AA5;
466
+ color: #FFFFFF;
467
+ }
468
+
469
+ .ui.vk.button:active {
470
+ background-color: #405E7E;
471
+ color: #FFFFFF;
472
+ }
473
+
457
474
  /*--------------
458
475
  Icon
459
476
  ---------------*/
@@ -254,14 +254,17 @@
254
254
  border-right: none;
255
255
  }
256
256
 
257
- .ui.action.input > .button {
257
+ .ui.action.input > .button,
258
+ .ui.action.input > .buttons,
259
+ {
258
260
  display: table-cell;
259
261
  border-top-left-radius: 0px;
260
262
  border-bottom-left-radius: 0px;
261
263
  white-space: nowrap;
262
264
  }
263
265
 
264
- .ui.action.input > .button > .icon {
266
+ .ui.action.input > .button > .icon,
267
+ .ui.action.input > .buttons > .button > .icon {
265
268
  display: inline;
266
269
  vertical-align: top;
267
270
  }
@@ -16,7 +16,7 @@
16
16
  .ui.rating {
17
17
  display: inline-block;
18
18
  font-size: 0em;
19
- vertical-align: baseline;
19
+ vertical-align: middle;
20
20
  margin: 0em 0.5rem 0em 0em;
21
21
  }
22
22
 
@@ -1,8 +1,8 @@
1
1
  module Semantic
2
2
  module Ui
3
3
  module Sass
4
- VERSION = "0.10.1.0"
5
- SEMANTIC_UI_SHA = '640c91ae12e9692634781bbdcea9b8cbf5a9f270'
4
+ VERSION = "0.10.2.0"
5
+ SEMANTIC_UI_SHA = 'a5f486a84511393d9cbd9e83ddc82a51a9501571'
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.1.0
4
+ version: 0.10.2.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-05 00:00:00.000000000 Z
11
+ date: 2013-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler