semantic-ui-sass 0.9.5.0 → 0.9.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/app/assets/javascripts/semantic-ui/rating.js +6 -5
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +28 -16
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +5 -0
- data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +10 -0
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +2 -2
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +8 -0
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +4 -4
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/tasks/converter.rb +1 -1
- 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: f4fdae4fa8333afa8df1be0f5d98174fda1ad372
|
4
|
+
data.tar.gz: 1ad73c7e0cba62b1784762570af94e047a5cb6ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7dcccefbd853e1c63fdc2e5b81162df46e4ba004bfff85b0aa7cc23d7c78c29c79111cf45fedaca6377549fc20c5ec338942d1172efed4a88ad963ae58b30f1a
|
7
|
+
data.tar.gz: 70dfe332a254093c8564e0287a8b9639ea3aea29c8bd6889b00793014440304baad436cbf1918fc5f318058e9c4a7c8eff6f1dd28b4ec65b12f6e1580399e2f3
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -152,7 +152,7 @@ $.fn.rating = function(parameters) {
|
|
152
152
|
.on('click' + eventNamespace, module.event.click)
|
153
153
|
;
|
154
154
|
$module
|
155
|
-
.
|
155
|
+
.removeClass(className.disabled)
|
156
156
|
;
|
157
157
|
},
|
158
158
|
|
@@ -162,7 +162,7 @@ $.fn.rating = function(parameters) {
|
|
162
162
|
.off(eventNamespace)
|
163
163
|
;
|
164
164
|
$module
|
165
|
-
.
|
165
|
+
.addClass(className.disabled)
|
166
166
|
;
|
167
167
|
},
|
168
168
|
|
@@ -392,9 +392,10 @@ $.fn.rating.settings = {
|
|
392
392
|
},
|
393
393
|
|
394
394
|
className : {
|
395
|
-
active
|
396
|
-
|
397
|
-
|
395
|
+
active : 'active',
|
396
|
+
disabled : 'disabled',
|
397
|
+
hover : 'hover',
|
398
|
+
loading : 'loading'
|
398
399
|
},
|
399
400
|
|
400
401
|
selector : {
|
@@ -139,82 +139,82 @@ body > .ui.grid {
|
|
139
139
|
|
140
140
|
.ui.grid > .row > .one.wide.column,
|
141
141
|
.ui.grid > .one.wide.column {
|
142
|
-
width: 6.25
|
142
|
+
width: 6.25% !important;
|
143
143
|
}
|
144
144
|
|
145
145
|
.ui.grid > .row > .two.wide.column,
|
146
146
|
.ui.grid > .two.wide.column {
|
147
|
-
width: 12.5
|
147
|
+
width: 12.5% !important;
|
148
148
|
}
|
149
149
|
|
150
150
|
.ui.grid > .row > .three.wide.column,
|
151
151
|
.ui.grid > .three.wide.column {
|
152
|
-
width: 18.75
|
152
|
+
width: 18.75% !important;
|
153
153
|
}
|
154
154
|
|
155
155
|
.ui.grid > .row > .four.wide.column,
|
156
156
|
.ui.grid > .four.wide.column {
|
157
|
-
width: 25
|
157
|
+
width: 25% !important;
|
158
158
|
}
|
159
159
|
|
160
160
|
.ui.grid > .row > .five.wide.column,
|
161
161
|
.ui.grid > .five.wide.column {
|
162
|
-
width: 31.25
|
162
|
+
width: 31.25% !important;
|
163
163
|
}
|
164
164
|
|
165
165
|
.ui.grid > .row > .six.wide.column,
|
166
166
|
.ui.grid > .six.wide.column {
|
167
|
-
width: 37.5
|
167
|
+
width: 37.5% !important;
|
168
168
|
}
|
169
169
|
|
170
170
|
.ui.grid > .row > .seven.wide.column,
|
171
171
|
.ui.grid > .seven.wide.column {
|
172
|
-
width: 43.75
|
172
|
+
width: 43.75% !important;
|
173
173
|
}
|
174
174
|
|
175
175
|
.ui.grid > .row > .eight.wide.column,
|
176
176
|
.ui.grid > .eight.wide.column {
|
177
|
-
width: 50
|
177
|
+
width: 50% !important;
|
178
178
|
}
|
179
179
|
|
180
180
|
.ui.grid > .row > .nine.wide.column,
|
181
181
|
.ui.grid > .nine.wide.column {
|
182
|
-
width: 56.25
|
182
|
+
width: 56.25% !important;
|
183
183
|
}
|
184
184
|
|
185
185
|
.ui.grid > .row > .ten.wide.column,
|
186
186
|
.ui.grid > .ten.wide.column {
|
187
|
-
width: 62.5
|
187
|
+
width: 62.5% !important;
|
188
188
|
}
|
189
189
|
|
190
190
|
.ui.grid > .row > .eleven.wide.column,
|
191
191
|
.ui.grid > .eleven.wide.column {
|
192
|
-
width: 68.75
|
192
|
+
width: 68.75% !important;
|
193
193
|
}
|
194
194
|
|
195
195
|
.ui.grid > .row > .twelve.wide.column,
|
196
196
|
.ui.grid > .twelve.wide.column {
|
197
|
-
width: 75
|
197
|
+
width: 75% !important;
|
198
198
|
}
|
199
199
|
|
200
200
|
.ui.grid > .row > .thirteen.wide.column,
|
201
201
|
.ui.grid > .thirteen.wide.column {
|
202
|
-
width: 81.25
|
202
|
+
width: 81.25% !important;
|
203
203
|
}
|
204
204
|
|
205
205
|
.ui.grid > .row > .fourteen.wide.column,
|
206
206
|
.ui.grid > .fourteen.wide.column {
|
207
|
-
width: 87.5
|
207
|
+
width: 87.5% !important;
|
208
208
|
}
|
209
209
|
|
210
210
|
.ui.grid > .row > .fifteen.wide.column,
|
211
211
|
.ui.grid > .fifteen.wide.column {
|
212
|
-
width: 93.75
|
212
|
+
width: 93.75% !important;
|
213
213
|
}
|
214
214
|
|
215
215
|
.ui.grid > .row > .sixteen.wide.column,
|
216
216
|
.ui.grid > .sixteen.wide.column {
|
217
|
-
width: 100
|
217
|
+
width: 100% !important;
|
218
218
|
}
|
219
219
|
|
220
220
|
/*-------------------
|
@@ -479,6 +479,18 @@ body > .ui.grid {
|
|
479
479
|
text-align: right;
|
480
480
|
}
|
481
481
|
|
482
|
+
.ui.justified.grid,
|
483
|
+
.ui.justified.grid > .row > .column,
|
484
|
+
.ui.justified.grid > .column,
|
485
|
+
.ui.grid .justified.column,
|
486
|
+
.ui.grid > .justified.row > .column {
|
487
|
+
text-align: justify;
|
488
|
+
-webkit-hyphens: auto;
|
489
|
+
-moz-hyphens: auto;
|
490
|
+
-ms-hyphens: auto;
|
491
|
+
hyphens: auto;
|
492
|
+
}
|
493
|
+
|
482
494
|
/*----------------------
|
483
495
|
Vertically Centered
|
484
496
|
-----------------------*/
|
@@ -17,9 +17,9 @@
|
|
17
17
|
font-family: 'Basic Icons';
|
18
18
|
src: font-url("semantic-ui/basic.icons.eot");
|
19
19
|
src: font-url("semantic-ui/basic.icons.eot?#iefix") format('embedded-opentype'),
|
20
|
+
font-url("semantic-ui/basic.icons.svg#basic.icons") format('svg'),
|
20
21
|
font-url("semantic-ui/basic.icons.woff") format('woff'),
|
21
|
-
font-url("semantic-ui/basic.icons.ttf") format('truetype')
|
22
|
-
font-url("semantic-ui/basic.icons.svg#basic.icons") format('svg');
|
22
|
+
font-url("semantic-ui/basic.icons.ttf") format('truetype');
|
23
23
|
font-style: normal;
|
24
24
|
font-weight: normal;
|
25
25
|
font-variant: normal;
|
@@ -293,6 +293,16 @@ h5.ui.header {
|
|
293
293
|
text-align: center;
|
294
294
|
}
|
295
295
|
|
296
|
+
.ui.justified.header {
|
297
|
+
text-align: justify;
|
298
|
+
}
|
299
|
+
|
300
|
+
.ui.justified.header:after {
|
301
|
+
display: inline-block;
|
302
|
+
content: '';
|
303
|
+
width: 100%;
|
304
|
+
}
|
305
|
+
|
296
306
|
/*-------------------
|
297
307
|
Floated
|
298
308
|
--------------------*/
|
@@ -30,9 +30,9 @@
|
|
30
30
|
font-family: 'Icons';
|
31
31
|
src: font-url("semantic-ui/icons.eot");
|
32
32
|
src: font-url("semantic-ui/icons.eot?#iefix") format('embedded-opentype'),
|
33
|
+
font-url("semantic-ui/icons.svg#icons") format('svg'),
|
33
34
|
font-url("semantic-ui/icons.woff") format('woff'),
|
34
|
-
font-url("semantic-ui/icons.ttf") format('truetype')
|
35
|
-
font-url("semantic-ui/icons.svg#icons") format('svg');
|
35
|
+
font-url("semantic-ui/icons.ttf") format('truetype');
|
36
36
|
font-style: normal;
|
37
37
|
font-weight: normal;
|
38
38
|
font-variant: normal;
|
@@ -336,6 +336,14 @@
|
|
336
336
|
text-align: center;
|
337
337
|
}
|
338
338
|
|
339
|
+
.ui.justified.segment {
|
340
|
+
text-align: justify;
|
341
|
+
-webkit-hyphens: auto;
|
342
|
+
-moz-hyphens: auto;
|
343
|
+
-ms-hyphens: auto;
|
344
|
+
hyphens: auto;
|
345
|
+
}
|
346
|
+
|
339
347
|
/*-------------------
|
340
348
|
Floated
|
341
349
|
--------------------*/
|
@@ -35,7 +35,7 @@
|
|
35
35
|
/* Icon */
|
36
36
|
|
37
37
|
.ui.rating .icon {
|
38
|
-
cursor:
|
38
|
+
cursor: pointer;
|
39
39
|
margin: 0em;
|
40
40
|
width: 1em;
|
41
41
|
height: auto;
|
@@ -118,10 +118,10 @@
|
|
118
118
|
Active
|
119
119
|
--------------------*/
|
120
120
|
|
121
|
-
/*
|
121
|
+
/* disabled rating */
|
122
122
|
|
123
|
-
.ui.
|
124
|
-
cursor:
|
123
|
+
.ui.disabled.rating .icon {
|
124
|
+
cursor: default;
|
125
125
|
}
|
126
126
|
|
127
127
|
/* active icons */
|
data/tasks/converter.rb
CHANGED
@@ -18,7 +18,7 @@ class Converter
|
|
18
18
|
BROWSERS = ['last 2 version', '> 1%', 'opera 12.1', 'safari 6', 'ie 9', 'bb 10', 'android 4']
|
19
19
|
|
20
20
|
def initialize(branch)
|
21
|
-
@repo = '
|
21
|
+
@repo = 'Semantic-Org/Semantic-UI'
|
22
22
|
@repo_url = "https://github.com/#@repo"
|
23
23
|
@branch = branch || 'master'
|
24
24
|
@git_data_trees = "#{GIT_DATA}/#{@repo}/git/trees"
|
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.9.
|
4
|
+
version: 0.9.6.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-
|
11
|
+
date: 2013-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|