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 +4 -4
- data/CHANGELOG.md +5 -1
- data/README.md +1 -1
- data/app/assets/javascripts/semantic-ui/dropdown.js +8 -0
- data/app/assets/javascripts/semantic-ui/sidebar.js +4 -1
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +17 -0
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +5 -2
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +1 -1
- data/lib/semantic/ui/sass/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 136dd8eef21a474e7d48e763d8a08c275ad04a44
|
|
4
|
+
data.tar.gz: 8fed24dc8455c832d7e1a7ebaf384ed448ca11e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11d932f4ba1d42077ce58f131b40f59c7f8a406662e50a4a62d10bbc9248a6a027667d5f22396ce72f5cf6a260dc27ed3e6a5cd7f8456ac1ce24d78a3bc30b98
|
|
7
|
+
data.tar.gz: 74a61b86ce03a013db9a3bbdcb5eb544ea214bbba90632736db546d268e649b78e6be57a6586c6603a8b51dd5088f3fe63b0c7ece2b43be1072b2aee453ea7bc
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -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-' +
|
|
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
|
}
|
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.
|
|
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-
|
|
11
|
+
date: 2013-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|