semantic-ui-rails 0.8.1.1 → 0.8.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4131c13e00205fb217572c9c2d65b45e7ca0ebf5
4
- data.tar.gz: 2daeb67d44b063d7d618e35b5800505824a6499d
3
+ metadata.gz: d34f1c794fca0e412350b36fd819cefb94084485
4
+ data.tar.gz: f1ed9d45ec916db2f10077bf0c939bd6e26e2ed4
5
5
  SHA512:
6
- metadata.gz: 92a98a36f03c656e9a4179398079871646487332cff061c7d27b0ea8f59aaf456c0ea06c1a04b28f1077f3395ea2604730d8dcefee05d11a6ac4a1273cd99280
7
- data.tar.gz: e8b5008d75e3a60e04cce6fe03d3afdcb349f83ee509c00d4d25b9ae09a8829b8c74ef41e9f874a02518a5760dee6c65abf361f900182973d641e0b2e5c24824
6
+ metadata.gz: 00fba62ec741a97ba9fce64c9fa8bd3a2b1d8583a6f99a36ecf6b77ebb8352af19f81211d870cfbdbe527114f4e16d675a613dd4fa0e1860db96e6a205c1e649
7
+ data.tar.gz: ef5f8e855802eb6f4e37d2aa9edd0395d44c96cf53fffdd141f1de7d1f86d5e3f2cdfc9f4c9238905ba6ab990dd07707d1e6f2049b5465c2b51bf859fe22c9dd
@@ -155,7 +155,7 @@ $.fn.dimmer = function(parameters) {
155
155
  : function(){}
156
156
  ;
157
157
  module.set.dimmed();
158
- if($.fn.transition !== undefined) {
158
+ if($.fn.transition !== undefined && settings.useCSS) {
159
159
  $dimmer
160
160
  .transition({
161
161
  animation : settings.transition + ' in',
@@ -190,7 +190,7 @@ $.fn.dimmer = function(parameters) {
190
190
  ? callback
191
191
  : function(){}
192
192
  ;
193
- if($.fn.transition !== undefined) {
193
+ if($.fn.transition !== undefined && settings.useCSS) {
194
194
  module.verbose('Hiding dimmer with css');
195
195
  $dimmer
196
196
  .transition({
@@ -548,8 +548,10 @@ $.fn.dimmer.settings = {
548
548
  performance : true,
549
549
 
550
550
  transition : 'fade',
551
+ useCSS : true,
551
552
  on : false,
552
553
  closable : true,
554
+
553
555
  duration : {
554
556
  show : 500,
555
557
  hide : 500
@@ -67,12 +67,12 @@ $.fn.modal = function(parameters) {
67
67
  module.error(error.dimmer);
68
68
  return;
69
69
  }
70
-
71
70
  $dimmable = $context
72
71
  .dimmer({
73
72
  closable : false,
74
- show : settings.duration * 0.95,
75
- hide : settings.duration * 1.05
73
+ useCSS : module.is.modernBrowser(),
74
+ show : settings.duration * 0.9,
75
+ hide : settings.duration * 1.1
76
76
  })
77
77
  .dimmer('add content', $module)
78
78
  ;
@@ -145,7 +145,7 @@ $.fn.modal = function(parameters) {
145
145
  close: function() {
146
146
  module.verbose('Closing element pressed');
147
147
  if( $(this).is(selector.approve) ) {
148
- if($.proxy(settings.onApprove, element)()) {
148
+ if($.proxy(settings.onApprove, element)() !== false) {
149
149
  module.hide();
150
150
  }
151
151
  else {
@@ -153,7 +153,7 @@ $.fn.modal = function(parameters) {
153
153
  }
154
154
  }
155
155
  else if( $(this).is(selector.deny) ) {
156
- if($.proxy(settings.onDeny, element)()) {
156
+ if($.proxy(settings.onDeny, element)() !== false) {
157
157
  module.hide();
158
158
  }
159
159
  else {
@@ -340,6 +340,10 @@ $.fn.modal = function(parameters) {
340
340
  is: {
341
341
  active: function() {
342
342
  return $module.hasClass(className.active);
343
+ },
344
+ modernBrowser: function() {
345
+ // lol
346
+ return (navigator.appName !== 'Microsoft Internet Explorer');
343
347
  }
344
348
  },
345
349
 
@@ -571,8 +575,9 @@ $.fn.modal.settings = {
571
575
 
572
576
  name : 'Modal',
573
577
  namespace : 'modal',
574
- verbose : true,
578
+
575
579
  debug : true,
580
+ verbose : true,
576
581
  performance : true,
577
582
 
578
583
  closable : true,
@@ -104,7 +104,6 @@ $.fn.popup = function(parameters) {
104
104
  $offsetParent = $target.offsetParent();
105
105
  }
106
106
  else {
107
- console.log('found by refresh');
108
107
  $popup = $window.children(selector.popup).last();
109
108
  }
110
109
  },
@@ -184,27 +184,7 @@
184
184
  right: 0px;
185
185
  width: 1px;
186
186
  height: 100%;
187
- background-image: -webkit-linear-gradient(top,
188
- rgba(0, 0, 0, 0.05) 0%,
189
- rgba(0, 0, 0, 0.1) 50%,
190
- rgba(0, 0, 0, 0.05) 100%)
191
- ;
192
- background-image: -moz-linear-gradient(top,
193
- rgba(0, 0, 0, 0.05) 0%,
194
- rgba(0, 0, 0, 0.1) 50%,
195
- rgba(0, 0, 0, 0.05) 100%)
196
- ;
197
- background-image: -o-linear-gradient(top,
198
- rgba(0, 0, 0, 0.05) 0%,
199
- rgba(0, 0, 0, 0.1) 50%,
200
- rgba(0, 0, 0, 0.05) 100%)
201
- ;
202
- background-image: -ms-linear-gradient(top,
203
- rgba(0, 0, 0, 0.05) 0%,
204
- rgba(0, 0, 0, 0.1) 50%,
205
- rgba(0, 0, 0, 0.05) 100%)
206
- ;
207
- background-image: linear-gradient(top,
187
+ background-image: linear-gradient(
208
188
  rgba(0, 0, 0, 0.05) 0%,
209
189
  rgba(0, 0, 0, 0.1) 50%,
210
190
  rgba(0, 0, 0, 0.05) 100%)
@@ -1318,27 +1298,27 @@
1318
1298
 
1319
1299
  /*--- Border ---*/
1320
1300
  .ui.inverted.menu .item:before {
1321
- background-image: -webkit-linear-gradient(top,
1301
+ background-image: -webkit-linear-gradient(
1322
1302
  rgba(255, 255, 255, 0.03) 0%,
1323
1303
  rgba(255, 255, 255, 0.1) 50%,
1324
1304
  rgba(255, 255, 255, 0.03) 100%)
1325
1305
  ;
1326
- background-image: -moz-linear-gradient(top,
1306
+ background-image: -moz-linear-gradient(
1327
1307
  rgba(255, 255, 255, 0.03) 0%,
1328
1308
  rgba(255, 255, 255, 0.1) 50%,
1329
1309
  rgba(255, 255, 255, 0.03) 100%)
1330
1310
  ;
1331
- background-image: -o-linear-gradient(top,
1311
+ background-image: -o-linear-gradient(
1332
1312
  rgba(255, 255, 255, 0.03) 0%,
1333
1313
  rgba(255, 255, 255, 0.1) 50%,
1334
1314
  rgba(255, 255, 255, 0.03) 100%)
1335
1315
  ;
1336
- background-image: -ms-linear-gradient(top,
1316
+ background-image: -ms-linear-gradient(
1337
1317
  rgba(255, 255, 255, 0.03) 0%,
1338
1318
  rgba(255, 255, 255, 0.1) 50%,
1339
1319
  rgba(255, 255, 255, 0.03) 100%)
1340
1320
  ;
1341
- background-image: linear-gradient(top,
1321
+ background-image: linear-gradient(
1342
1322
  rgba(255, 255, 255, 0.03) 0%,
1343
1323
  rgba(255, 255, 255, 0.1) 50%,
1344
1324
  rgba(255, 255, 255, 0.03) 100%)
@@ -611,6 +611,7 @@
611
611
  .ui.icon.button > .icon {
612
612
  opacity: 0.9;
613
613
  margin: 0em;
614
+ vertical-align: top;
614
615
  }
615
616
 
616
617
 
@@ -330,20 +330,12 @@
330
330
  }
331
331
 
332
332
  /* Off Color */
333
- // .ui.slider.checkbox .box,
334
- // .ui.slider.checkbox label {
335
- // color: #D95C5C !important;
336
- // }
337
333
  .ui.slider.checkbox .box:after,
338
334
  .ui.slider.checkbox label:after {
339
335
  background-color: #D95C5C;
340
336
  }
341
337
 
342
338
  /* On Color */
343
- // .ui.slider.checkbox input:checked + .box,
344
- // .ui.slider.checkbox input:checked + label {
345
- // color: #89B84C !important;
346
- // }
347
339
  .ui.slider.checkbox input:checked + .box:after,
348
340
  .ui.slider.checkbox input:checked + label:after {
349
341
  background-color: #89B84C;
@@ -179,7 +179,7 @@
179
179
  left: auto;
180
180
  right: 0px;
181
181
  }
182
- .ui.vertical.menu .dropdown.item > .dropdown.icon {
182
+ .ui.vertical.menu .dropdown.item > .dropdown.icon:before {
183
183
  content: "\f0da";
184
184
  }
185
185
  .ui.dropdown.icon.button > .dropdown.icon {
@@ -230,8 +230,9 @@
230
230
  margin-left: -29%;
231
231
  }
232
232
  }
233
- .ui.small.modal {
233
+
234
234
  @media only screen and (min-width : 1500px) {
235
+ .ui.small.modal {
235
236
  width: 40%;
236
237
  margin-left: -20%;
237
238
  }
@@ -14,25 +14,10 @@
14
14
 
15
15
 
16
16
  .ui.transition {
17
- -webkit-animation-iteration-count: 1;
18
- -moz-animation-iteration-count: 1;
19
- -ms-animation-iteration-count: 1;
20
- -o-animation-iteration-count: 1;
21
17
  animation-iteration-count: 1;
22
-
23
- -webkit-animation-duration: 1s;
24
- -moz-animation-duration: 1s;
25
- -ms-animation-duration: 1s;
26
- -o-animation-duration: 1s;
27
18
  animation-duration: 1s;
28
19
 
29
20
  animation-timing-function: ease;
30
- -webkit-animation-timing-function: ease;
31
-
32
- -webkit-animation-fill-mode: both;
33
- -moz-animation-fill-mode: both;
34
- -ms-animation-fill-mode: both;
35
- -o-animation-fill-mode: both;
36
21
  animation-fill-mode: both;
37
22
  }
38
23
 
@@ -41,16 +26,7 @@
41
26
  *******************************/
42
27
 
43
28
  .ui.animating.transition {
44
- -webkit-backface-visibility: hidden;
45
- -moz-backface-visibility: hidden;
46
- -ms-backface-visibility: hidden;
47
- -o-backface-visibility: hidden;
48
29
  backface-visibility: hidden;
49
-
50
- -webkit-transform: translateZ(0);
51
- -moz-transform: translateZ(0);
52
- -ms-transform: translateZ(0);
53
- -o-transform: translateZ(0);
54
30
  transform: translateZ(0);
55
31
  }
56
32
 
@@ -74,10 +50,6 @@
74
50
 
75
51
  /* Disabled */
76
52
  .ui.disabled.transition {
77
- -webkit-animation-play-state: paused;
78
- -moz-animation-play-state: paused;
79
- -ms-animation-play-state: paused;
80
- -o-animation-play-state: paused;
81
53
  animation-play-state: paused;
82
54
  }
83
55
 
@@ -86,10 +58,6 @@
86
58
  *******************************/
87
59
 
88
60
  .ui.looping.transition {
89
- -webkit-animation-iteration-count: infinite;
90
- -moz-animation-iteration-count: infinite;
91
- -ms-animation-iteration-count: infinite;
92
- -o-animation-iteration-count: infinite;
93
61
  animation-iteration-count: infinite;
94
62
  }
95
63
 
@@ -103,34 +71,19 @@
103
71
  ---------------*/
104
72
 
105
73
  .ui.flash.transition {
106
- -webkit-animation-name: flash;
107
- -moz-animation-name: flash;
108
- -o-animation-name: flash;
109
74
  animation-name: flash;
110
75
  }
111
76
  .ui.shake.transition {
112
- -webkit-animation-name: shake;
113
- -moz-animation-name: shake;
114
- -o-animation-name: shake;
115
77
  animation-name: shake;
116
78
  }
117
79
  .ui.bounce.transition {
118
- -webkit-animation-name: bounce;
119
- -moz-animation-name: bounce;
120
- -o-animation-name: bounce;
121
80
  animation-name: bounce;
122
81
  }
123
82
  .ui.tada.transition {
124
- -webkit-animation-name: tada;
125
- -moz-animation-name: tada;
126
- -o-animation-name: tada;
127
83
  animation-name: tada;
128
84
  }
129
85
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
130
86
  .ui.pulse.transition {
131
- -webkit-animation-name: pulse;
132
- -moz-animation-name: pulse;
133
- -o-animation-name: pulse;
134
87
  animation-name: pulse;
135
88
  }
136
89
  /*--------------
@@ -144,28 +97,16 @@
144
97
  }
145
98
  .ui.horizontal.flip.transition.in,
146
99
  .ui.horizontal.flip.transition.out {
147
- -webkit-animation-name: horizontalFlip;
148
- -moz-animation-name: horizontalFlip;
149
- -o-animation-name: horizontalFlip;
150
100
  animation-name: horizontalFlip;
151
101
  }
152
102
  .ui.horizontal.flip.transition.out {
153
- -webkit-animation-name: horizontalFlipOut;
154
- -moz-animation-name: horizontalFlipOut;
155
- -o-animation-name: horizontalFlipOut;
156
103
  animation-name: horizontalFlipOut;
157
104
  }
158
105
  .ui.vertical.flip.transition.in,
159
106
  .ui.vertical.flip.transition.out {
160
- -webkit-animation-name: verticalFlip;
161
- -moz-animation-name: verticalFlip;
162
- -o-animation-name: verticalFlip;
163
107
  animation-name: verticalFlip;
164
108
  }
165
109
  .ui.vertical.flip.transition.out {
166
- -webkit-animation-name: verticalFlipOut;
167
- -moz-animation-name: verticalFlipOut;
168
- -o-animation-name: verticalFlipOut;
169
110
  animation-name: verticalFlipOut;
170
111
  }
171
112
 
@@ -174,41 +115,23 @@
174
115
  ---------------*/
175
116
 
176
117
  .ui.fade.transition.in {
177
- -webkit-animation-name: fade;
178
- -moz-animation-name: fade;
179
- -o-animation-name: fade;
180
118
  animation-name: fade;
181
119
  }
182
120
  .ui.fade.transition.out {
183
- -webkit-animation-name: fadeOut;
184
- -moz-animation-name: fadeOut;
185
- -o-animation-name: fadeOut;
186
121
  animation-name: fadeOut;
187
122
  }
188
123
 
189
124
  .ui.fade.up.transition.in {
190
- -webkit-animation-name: fadeUp;
191
- -moz-animation-name: fadeUp;
192
- -o-animation-name: fadeUp;
193
125
  animation-name: fadeUp;
194
126
  }
195
127
  .ui.fade.up.transition.out {
196
- -webkit-animation-name: fadeUpOut;
197
- -moz-animation-name: fadeUpOut;
198
- -o-animation-name: fadeUpOut;
199
128
  animation-name: fadeUpOut;
200
129
  }
201
130
 
202
131
  .ui.fade.down.transition.in {
203
- -webkit-animation-name: fadeDown;
204
- -moz-animation-name: fadeDown;
205
- -o-animation-name: fadeDown;
206
132
  animation-name: fadeDown;
207
133
  }
208
134
  .ui.fade.down.transition.out {
209
- -webkit-animation-name: fadeDownOut;
210
- -moz-animation-name: fadeDownOut;
211
- -o-animation-name: fadeDownOut;
212
135
  animation-name: fadeDownOut;
213
136
  }
214
137
 
@@ -217,15 +140,9 @@
217
140
  ---------------*/
218
141
 
219
142
  .ui.scale.transition.in {
220
- -webkit-animation-name: scale;
221
- -moz-animation-name: scale;
222
- -o-animation-name: scale;
223
143
  animation-name: scale;
224
144
  }
225
145
  .ui.scale.transition.out {
226
- -webkit-animation-name: scaleOut;
227
- -moz-animation-name: scaleOut;
228
- -o-animation-name: scaleOut;
229
146
  animation-name: scaleOut;
230
147
  }
231
148
 
@@ -236,18 +153,12 @@
236
153
  ---------------*/
237
154
 
238
155
  .ui.slide.down.transition.in {
239
- -webkit-animation-name: slide;
240
- -moz-animation-name: slide;
241
- -o-animation-name: slide;
242
156
  animation-name: slide;
243
157
  transform-origin: 50% 0%;
244
158
  -ms-transform-origin: 50% 0%;
245
159
  -webkit-transform-origin: 50% 0%;
246
160
  }
247
161
  .ui.slide.down.transition.out {
248
- -webkit-animation-name: slideOut;
249
- -moz-animation-name: slideOut;
250
- -o-animation-name: slideOut;
251
162
  animation-name: slideOut;
252
163
  transform-origin: 50% 0%;
253
164
  -ms-transform-origin: 50% 0%;
@@ -255,45 +166,18 @@
255
166
  }
256
167
 
257
168
  .ui.slide.up.transition.in {
258
- -webkit-animation-name: slide;
259
- -moz-animation-name: slide;
260
- -o-animation-name: slide;
261
169
  animation-name: slide;
262
170
  transform-origin: 50% 100%;
263
171
  -ms-transform-origin: 50% 100%;
264
172
  -webkit-transform-origin: 50% 100%;
265
173
  }
266
174
  .ui.slide.up.transition.out {
267
- -webkit-animation-name: slideOut;
268
- -moz-animation-name: slideOut;
269
- -o-animation-name: slideOut;
270
175
  animation-name: slideOut;
271
176
  transform-origin: 50% 100%;
272
177
  -ms-transform-origin: 50% 100%;
273
178
  -webkit-transform-origin: 50% 100%;
274
179
  }
275
180
 
276
-
277
- @-moz-keyframes slide {
278
- 0% {
279
- opacity: 0;
280
- -moz-transform: scaleY(0);
281
- }
282
- 100% {
283
- opacity: 1;
284
- -moz-transform: scaleY(1);
285
- }
286
- }
287
- @-webkit-keyframes slide {
288
- 0% {
289
- opacity: 0;
290
- -webkit-transform: scaleY(0);
291
- }
292
- 100% {
293
- opacity: 1;
294
- -webkit-transform: scaleY(1);
295
- }
296
- }
297
181
  @keyframes slide {
298
182
  0% {
299
183
  opacity: 0;
@@ -304,27 +188,6 @@
304
188
  transform: scaleY(1);
305
189
  }
306
190
  }
307
-
308
- @-moz-keyframes slideOut {
309
- 0% {
310
- opacity: 1;
311
- -moz-transform: scaleY(1);
312
- }
313
- 100% {
314
- opacity: 0;
315
- -moz-transform: scaleY(0);
316
- }
317
- }
318
- @-webkit-keyframes slideOut {
319
- 0% {
320
- opacity: 1;
321
- -webkit-transform: scaleY(1);
322
- }
323
- 100% {
324
- opacity: 0;
325
- -webkit-transform: scaleY(0);
326
- }
327
- }
328
191
  @keyframes slideOut {
329
192
  0% {
330
193
  opacity: 1;
@@ -345,30 +208,6 @@
345
208
  ---------------*/
346
209
 
347
210
  /* Flash */
348
- @-webkit-keyframes flash {
349
- 0%, 50%, 100% {
350
- opacity: 1;
351
- }
352
- 25%, 75% {
353
- opacity: 0;
354
- }
355
- }
356
- @-moz-keyframes flash {
357
- 0%, 50%, 100% {
358
- opacity: 1;
359
- }
360
- 25%, 75% {
361
- opacity: 0;
362
- }
363
- }
364
- @-o-keyframes flash {
365
- 0%, 50%, 100% {
366
- opacity: 1;
367
- }
368
- 25%, 75% {
369
- opacity: 0;
370
- }
371
- }
372
211
  @keyframes flash {
373
212
  0%, 50%, 100% {
374
213
  opacity: 1;
@@ -379,39 +218,6 @@
379
218
  }
380
219
 
381
220
  /* Shake */
382
- @-webkit-keyframes shake {
383
- 0%, 100% {
384
- -webkit-transform: translateX(0);
385
- }
386
- 10%, 30%, 50%, 70%, 90% {
387
- -webkit-transform: translateX(-10px);
388
- }
389
- 20%, 40%, 60%, 80% {
390
- -webkit-transform: translateX(10px);
391
- }
392
- }
393
- @-moz-keyframes shake {
394
- 0%, 100% {
395
- -moz-transform: translateX(0);
396
- }
397
- 10%, 30%, 50%, 70%, 90% {
398
- -moz-transform: translateX(-10px);
399
- }
400
- 20%, 40%, 60%, 80% {
401
- -moz-transform: translateX(10px);
402
- }
403
- }
404
- @-o-keyframes shake {
405
- 0%, 100% {
406
- -o-transform: translateX(0);
407
- }
408
- 10%, 30%, 50%, 70%, 90% {
409
- -o-transform: translateX(-10px);
410
- }
411
- 20%, 40%, 60%, 80% {
412
- -o-transform: translateX(10px);
413
- }
414
- }
415
221
  @keyframes shake {
416
222
  0%, 100% {
417
223
  transform: translateX(0);
@@ -425,39 +231,6 @@
425
231
  }
426
232
 
427
233
  /* Bounce */
428
- @-webkit-keyframes bounce {
429
- 0%, 20%, 50%, 80%, 100% {
430
- -webkit-transform: translateY(0);
431
- }
432
- 40% {
433
- -webkit-transform: translateY(-30px);
434
- }
435
- 60% {
436
- -webkit-transform: translateY(-15px);
437
- }
438
- }
439
- @-moz-keyframes bounce {
440
- 0%, 20%, 50%, 80%, 100% {
441
- -moz-transform: translateY(0);
442
- }
443
- 40% {
444
- -moz-transform: translateY(-30px);
445
- }
446
- 60% {
447
- -moz-transform: translateY(-15px);
448
- }
449
- }
450
- @-o-keyframes bounce {
451
- 0%, 20%, 50%, 80%, 100% {
452
- -o-transform: translateY(0);
453
- }
454
- 40% {
455
- -o-transform: translateY(-30px);
456
- }
457
- 60% {
458
- -o-transform: translateY(-15px);
459
- }
460
- }
461
234
  @keyframes bounce {
462
235
  0%, 20%, 50%, 80%, 100% {
463
236
  transform: translateY(0);
@@ -471,58 +244,6 @@
471
244
  }
472
245
 
473
246
  /* Tada */
474
- @-webkit-keyframes tada {
475
- 0% {
476
- -webkit-transform: scale(1);
477
- }
478
- 10%, 20% {
479
- -webkit-transform: scale(0.9) rotate(-3deg);
480
- }
481
- 30%, 50%, 70%, 90% {
482
- -webkit-transform: scale(1.1) rotate(3deg);
483
- }
484
- 40%, 60%, 80% {
485
- -webkit-transform: scale(1.1) rotate(-3deg);
486
- }
487
- 100% {
488
- -webkit-transform: scale(1) rotate(0);
489
- }
490
- }
491
- @-moz-keyframes tada {
492
- 0% {
493
- -moz-transform: scale(1);
494
- }
495
- 10%, 20% {
496
- -moz-transform: scale(0.9) rotate(-3deg);
497
- }
498
- 30%, 50%, 70%, 90% {
499
- -moz-transform: scale(1.1) rotate(3deg);
500
- }
501
- 40%, 60%, 80% {
502
- -moz-transform: scale(1.1) rotate(-3deg);
503
- }
504
- 100% {
505
- -moz-transform: scale(1) rotate(0);
506
- }
507
- }
508
- @-o-keyframes tada {
509
- 0% {
510
- -o-transform: scale(1);
511
- }
512
- 10%, 20% {
513
- -o-transform: scale(0.9) rotate(-3deg);
514
- }
515
- 30%, 50%, 70%, 90% {
516
- -o-transform: scale(1.1) rotate(3deg);
517
- }
518
- 40%, 60%, 80% {
519
- -o-transform: scale(1.1) rotate(-3deg);
520
- }
521
- 100% {
522
- -o-transform: scale(1) rotate(0);
523
- }
524
- }
525
-
526
247
  @keyframes tada {
527
248
  0% {
528
249
  transform: scale(1);
@@ -541,51 +262,7 @@
541
262
  }
542
263
  }
543
264
 
544
- @-webkit-keyframes pulse {
545
- 0% {
546
- -webkit-transform: scale(1);
547
- opacity: 1;
548
- }
549
- 50% {
550
- -webkit-transform: scale(0.9);
551
- opacity: 0.7;
552
- }
553
- 100% {
554
- -webkit-transform: scale(1);
555
- opacity: 1;
556
- }
557
- }
558
-
559
- @-o-keyframes pulse {
560
- 0% {
561
- -o-transform: scale(1);
562
- opacity: 1;
563
- }
564
- 50% {
565
- -o-transform: scale(0.9);
566
- opacity: 0.7;
567
- }
568
- 100% {
569
- -o-transform: scale(1);
570
- opacity: 1;
571
- }
572
- }
573
-
574
- @-moz-keyframes pulse {
575
- 0% {
576
- -moz-transform: scale(1);
577
- opacity: 1;
578
- }
579
- 50% {
580
- -moz-transform: scale(0.9);
581
- opacity: 0.7;
582
- }
583
- 100% {
584
- -moz-transform: scale(1);
585
- opacity: 1;
586
- }
587
- }
588
-
265
+ /* Pulse */
589
266
  @keyframes pulse {
590
267
  0% {
591
268
  transform: scale(1);
@@ -608,36 +285,6 @@
608
285
  ---------------*/
609
286
 
610
287
  /* Horizontal */
611
- @-webkit-keyframes horizontalFlip {
612
- 0% {
613
- -webkit-transform: rotateY(-90deg);
614
- opacity: 0;
615
- }
616
- 100% {
617
- -webkit-transform: rotateY(0deg);
618
- opacity: 1;
619
- }
620
- }
621
- @-moz-keyframes horizontalFlip {
622
- 0% {
623
- -moz-transform: rotateY(-90deg);
624
- opacity: 0;
625
- }
626
- 100% {
627
- -moz-transform: rotateY(0deg);
628
- opacity: 1;
629
- }
630
- }
631
- @-o-keyframes horizontalFlip {
632
- 0% {
633
- -o-transform: rotateY(-90deg);
634
- opacity: 0;
635
- }
636
- 100% {
637
- -o-transform: rotateY(0deg);
638
- opacity: 1;
639
- }
640
- }
641
288
  @keyframes horizontalFlip {
642
289
  0% {
643
290
  transform: rotateY(-90deg);
@@ -649,36 +296,6 @@
649
296
  }
650
297
  }
651
298
  /* Horizontal */
652
- @-webkit-keyframes horizontalFlipOut {
653
- 0% {
654
- -webkit-transform: rotateY(0deg);
655
- opacity: 0;
656
- }
657
- 100% {
658
- -webkit-transform: rotateY(90deg);
659
- opacity: 1;
660
- }
661
- }
662
- @-moz-keyframes horizontalFlipOut {
663
- 0% {
664
- -moz-transform: rotateY(0deg);
665
- opacity: 0;
666
- }
667
- 100% {
668
- -moz-transform: rotateY(90deg);
669
- opacity: 1;
670
- }
671
- }
672
- @-o-keyframes horizontalFlipOut {
673
- 0% {
674
- -o-transform: rotateY(0deg);
675
- opacity: 0;
676
- }
677
- 100% {
678
- -o-transform: rotateY(90deg);
679
- opacity: 1;
680
- }
681
- }
682
299
  @keyframes horizontalFlipOut {
683
300
  0% {
684
301
  transform: rotateY(0deg);
@@ -691,36 +308,6 @@
691
308
  }
692
309
 
693
310
  /* Vertical */
694
- @-webkit-keyframes verticalFlip {
695
- 0% {
696
- -webkit-transform: rotateX(-90deg);
697
- opacity: 0;
698
- }
699
- 100% {
700
- -webkit-transform: rotateX(0deg);
701
- opacity: 1;
702
- }
703
- }
704
- @-moz-keyframes verticalFlip {
705
- 0% {
706
- -moz-transform: rotateX(-90deg);
707
- opacity: 0;
708
- }
709
- 100% {
710
- -moz-transform: rotateX(0deg);
711
- opacity: 1;
712
- }
713
- }
714
- @-o-keyframes verticalFlip {
715
- 0% {
716
- -o-transform: rotateX(-90deg);
717
- opacity: 0;
718
- }
719
- 100% {
720
- -o-transform: rotateX(0deg);
721
- opacity: 1;
722
- }
723
- }
724
311
  @keyframes verticalFlip {
725
312
  0% {
726
313
  transform: rotateX(-90deg);
@@ -731,36 +318,6 @@
731
318
  opacity: 1;
732
319
  }
733
320
  }
734
- @-webkit-keyframes verticalFlipOut {
735
- 0% {
736
- -webkit-transform: rotateX(0deg);
737
- opacity: 1;
738
- }
739
- 100% {
740
- -webkit-transform: rotateX(-90deg);
741
- opacity: 0;
742
- }
743
- }
744
- @-moz-keyframes verticalFlipOut {
745
- 0% {
746
- -moz-transform: rotateX(0deg);
747
- opacity: 1;
748
- }
749
- 100% {
750
- -moz-transform: rotateX(-90deg);
751
- opacity: 0;
752
- }
753
- }
754
- @-o-keyframes verticalFlipOut {
755
- 0% {
756
- -o-transform: rotateX(0deg);
757
- opacity: 1;
758
- }
759
- 100% {
760
- -o-transform: rotateX(-90deg);
761
- opacity: 0;
762
- }
763
- }
764
321
  @keyframes verticalFlipOut {
765
322
  0% {
766
323
  transform: rotateX(0deg);
@@ -777,30 +334,6 @@
777
334
  ---------------*/
778
335
 
779
336
  /* Fade */
780
- @-webkit-keyframes fade {
781
- 0% {
782
- opacity: 0;
783
- }
784
- 100% {
785
- opacity: 1;
786
- }
787
- }
788
- @-moz-keyframes fade {
789
- 0% {
790
- opacity: 0;
791
- }
792
- 100% {
793
- opacity: 1;
794
- }
795
- }
796
- @-o-keyframes fade {
797
- 0% {
798
- opacity: 0;
799
- }
800
- 100% {
801
- opacity: 1;
802
- }
803
- }
804
337
  @keyframes fade {
805
338
  0% {
806
339
  opacity: 0;
@@ -810,30 +343,6 @@
810
343
  }
811
344
  }
812
345
 
813
- @-webkit-keyframes fadeOut {
814
- 0% {
815
- opacity: 1;
816
- }
817
- 100% {
818
- opacity: 0;
819
- }
820
- }
821
- @-moz-keyframes fadeOut {
822
- 0% {
823
- opacity: 1;
824
- }
825
- 100% {
826
- opacity: 0;
827
- }
828
- }
829
- @-o-keyframes fadeOut {
830
- 0% {
831
- opacity: 1;
832
- }
833
- 100% {
834
- opacity: 0;
835
- }
836
- }
837
346
  @keyframes fadeOut {
838
347
  0% {
839
348
  opacity: 1;
@@ -844,36 +353,6 @@
844
353
  }
845
354
 
846
355
  /* Fade Up */
847
- @-webkit-keyframes fadeUp {
848
- 0% {
849
- opacity: 0;
850
- -webkit-transform: translateY(20px);
851
- }
852
- 100% {
853
- opacity: 1;
854
- -webkit-transform: translateY(0);
855
- }
856
- }
857
- @-moz-keyframes fadeUp {
858
- 0% {
859
- opacity: 0;
860
- -moz-transform: translateY(20px);
861
- }
862
- 100% {
863
- opacity: 1;
864
- -moz-transform: translateY(0);
865
- }
866
- }
867
- @-o-keyframes fadeUp {
868
- 0% {
869
- opacity: 0;
870
- -o-transform: translateY(20px);
871
- }
872
- 100% {
873
- opacity: 1;
874
- -o-transform: translateY(0);
875
- }
876
- }
877
356
  @keyframes fadeUp {
878
357
  0% {
879
358
  opacity: 0;
@@ -885,36 +364,6 @@
885
364
  }
886
365
  }
887
366
 
888
- @-webkit-keyframes fadeUpOut {
889
- 0% {
890
- opacity: 1;
891
- -webkit-transform: translateY(0);
892
- }
893
- 100% {
894
- opacity: 0;
895
- -webkit-transform: translateY(20px);
896
- }
897
- }
898
- @-moz-keyframes fadeUpOut {
899
- 0% {
900
- opacity: 1;
901
- -moz-transform: translateY(0);
902
- }
903
- 100% {
904
- opacity: 0;
905
- -moz-transform: translateY(20px);
906
- }
907
- }
908
- @-o-keyframes fadeUpOut {
909
- 0% {
910
- opacity: 1;
911
- -o-transform: translateY(0);
912
- }
913
- 100% {
914
- opacity: 0;
915
- -o-transform: translateY(20px);
916
- }
917
- }
918
367
  @keyframes fadeUpOut {
919
368
  0% {
920
369
  opacity: 1;
@@ -927,36 +376,6 @@
927
376
  }
928
377
 
929
378
  /* Fade Down */
930
- @-webkit-keyframes fadeDown {
931
- 0% {
932
- opacity: 0;
933
- -webkit-transform: translateY(-20px);
934
- }
935
- 100% {
936
- opacity: 1;
937
- -webkit-transform: translateY(0);
938
- }
939
- }
940
- @-moz-keyframes fadeDown {
941
- 0% {
942
- opacity: 0;
943
- -moz-transform: translateY(-20px);
944
- }
945
- 100% {
946
- opacity: 1;
947
- -moz-transform: translateY(0);
948
- }
949
- }
950
- @-o-keyframes fadeDown {
951
- 0% {
952
- opacity: 0;
953
- -o-transform: translateY(-20px);
954
- }
955
- 100% {
956
- opacity: 1;
957
- -o-transform: translateY(0);
958
- }
959
- }
960
379
  @keyframes fadeDown {
961
380
  0% {
962
381
  opacity: 0;
@@ -967,38 +386,6 @@
967
386
  transform: translateY(0);
968
387
  }
969
388
  }
970
-
971
-
972
- @-webkit-keyframes fadeDownOut {
973
- 0% {
974
- opacity: 1;
975
- -webkit-transform: translateY(0);
976
- }
977
- 100% {
978
- opacity: 0;
979
- -webkit-transform: translateY(-20px);
980
- }
981
- }
982
- @-moz-keyframes fadeDownOut {
983
- 0% {
984
- opacity: 1;
985
- -moz-transform: translateY(0);
986
- }
987
- 100% {
988
- opacity: 0;
989
- -moz-transform: translateY(-20px);
990
- }
991
- }
992
- @-o-keyframes fadeDownOut {
993
- 0% {
994
- opacity: 1;
995
- -o-transform: translateY(0);
996
- }
997
- 100% {
998
- opacity: 0;
999
- -o-transform: translateY(-20px);
1000
- }
1001
- }
1002
389
  @keyframes fadeDownOut {
1003
390
  0% {
1004
391
  opacity: 1;
@@ -1015,36 +402,6 @@
1015
402
  ---------------*/
1016
403
 
1017
404
  /* Scale */
1018
- @-webkit-keyframes scale {
1019
- 0% {
1020
- opacity: 0;
1021
- -webkit-transform: scale(0.7);
1022
- }
1023
- 100% {
1024
- opacity: 1;
1025
- -webkit-transform: scale(1);
1026
- }
1027
- }
1028
- @-moz-keyframes scale {
1029
- 0% {
1030
- opacity: 0;
1031
- -moz-transform: scale(0.7);
1032
- }
1033
- 100% {
1034
- opacity: 1;
1035
- -moz-transform: scale(1);
1036
- }
1037
- }
1038
- @-o-keyframes scale {
1039
- 0% {
1040
- opacity: 0;
1041
- -o-transform: scale(0.7);
1042
- }
1043
- 100% {
1044
- opacity: 1;
1045
- -o-transform: scale(1);
1046
- }
1047
- }
1048
405
  @keyframes scale {
1049
406
  0% {
1050
407
  opacity: 0;
@@ -1055,37 +412,6 @@
1055
412
  transform: scale(1);
1056
413
  }
1057
414
  }
1058
-
1059
- @-webkit-keyframes scaleOut {
1060
- 0% {
1061
- opacity: 1;
1062
- -webkit-transform: scale(1);
1063
- }
1064
- 100% {
1065
- opacity: 0;
1066
- -webkit-transform: scale(0.7);
1067
- }
1068
- }
1069
- @-moz-keyframes scaleOut {
1070
- 0% {
1071
- opacity: 1;
1072
- -moz-transform: scale(1);
1073
- }
1074
- 100% {
1075
- opacity: 0;
1076
- -moz-transform: scale(0.7);
1077
- }
1078
- }
1079
- @-o-keyframes scaleOut {
1080
- 0% {
1081
- opacity: 1;
1082
- -o-transform: scale(1);
1083
- }
1084
- 100% {
1085
- opacity: 0;
1086
- -o-transform: scale(0.7);
1087
- }
1088
- }
1089
415
  @keyframes scaleOut {
1090
416
  0% {
1091
417
  opacity: 1;
@@ -1,7 +1,7 @@
1
1
  module Semantic
2
2
  module Ui
3
3
  module Rails
4
- VERSION = "0.8.1.1"
4
+ VERSION = "0.8.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semantic-ui-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - nd0ut
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-28 00:00:00.000000000 Z
11
+ date: 2013-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: less-rails