twitter_ratchet_rails 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (80) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/twitter_ratchet_rails/modals.js +41 -0
  3. data/app/assets/javascripts/twitter_ratchet_rails/popovers.js +87 -0
  4. data/app/assets/javascripts/twitter_ratchet_rails/push.js +483 -0
  5. data/app/assets/javascripts/twitter_ratchet_rails/ratchet.js +82 -54
  6. data/app/assets/javascripts/twitter_ratchet_rails/segmented-controllers.js +65 -0
  7. data/app/assets/javascripts/twitter_ratchet_rails/sliders.js +136 -0
  8. data/app/assets/javascripts/twitter_ratchet_rails/toggles.js +118 -0
  9. data/app/assets/stylesheets/twitter_ratchet_rails/ratchet-theme-android.css +113 -79
  10. data/app/assets/stylesheets/twitter_ratchet_rails/ratchet-theme-ios.css +90 -90
  11. data/app/assets/stylesheets/twitter_ratchet_rails/ratchet.css.erb +171 -166
  12. data/lib/twitter_ratchet_rails/version.rb +1 -1
  13. data/test/dummy/app/assets/javascripts/application.js +1 -0
  14. data/test/dummy/app/assets/javascripts/users.js +2 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +1 -0
  16. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  17. data/test/dummy/app/assets/stylesheets/users.css +4 -0
  18. data/test/dummy/app/controllers/users_controller.rb +58 -0
  19. data/test/dummy/app/helpers/users_helper.rb +2 -0
  20. data/test/dummy/app/models/user.rb +2 -0
  21. data/test/dummy/app/views/layouts/application.html.erb +26 -9
  22. data/test/dummy/app/views/users/_form.html.erb +25 -0
  23. data/test/dummy/app/views/users/edit.html.erb +6 -0
  24. data/test/dummy/app/views/users/index.html.erb +51 -0
  25. data/test/dummy/app/views/users/new.html.erb +5 -0
  26. data/test/dummy/app/views/users/show.html.erb +14 -0
  27. data/test/dummy/config/routes.rb +4 -0
  28. data/test/dummy/db/development.sqlite3 +0 -0
  29. data/test/dummy/db/migrate/20140620120642_create_users.rb +10 -0
  30. data/test/dummy/db/schema.rb +23 -0
  31. data/test/dummy/log/development.log +834 -0
  32. data/test/dummy/test/controllers/users_controller_test.rb +49 -0
  33. data/test/dummy/test/fixtures/users.yml +9 -0
  34. data/test/dummy/test/helpers/users_helper_test.rb +4 -0
  35. data/test/{integration/navigation_test.rb → dummy/test/models/user_test.rb} +1 -4
  36. data/test/dummy/tmp/cache/assets/development/sprockets/02365dc2cb50c9b2a206bf87d9181ef9 +0 -0
  37. data/test/dummy/tmp/cache/assets/development/sprockets/05c4a034c993964dc3064d1e840449fd +0 -0
  38. data/test/dummy/tmp/cache/assets/development/sprockets/0800f54ee19cf3cee10b956fa9786799 +0 -0
  39. data/test/dummy/tmp/cache/assets/development/sprockets/0e66254a0ff45c104998339ae7c607c5 +0 -0
  40. data/test/dummy/tmp/cache/assets/development/sprockets/0e804c20d0e8d07c2477ce1c0f102adf +0 -0
  41. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  42. data/test/dummy/tmp/cache/assets/development/sprockets/163a4561a07fbc33d8a229302099d8dd +0 -0
  43. data/test/dummy/tmp/cache/assets/development/sprockets/2bd9a33c28022e3c885044a69be41a10 +0 -0
  44. data/test/dummy/tmp/cache/assets/development/sprockets/2d3d6a06270e38c5b1ff9b578aa35990 +0 -0
  45. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  46. data/test/dummy/tmp/cache/assets/development/sprockets/30e315773d1e399a47375b9e13041ed0 +0 -0
  47. data/test/dummy/tmp/cache/assets/development/sprockets/32593d4dfd09e0a66f70fe8095bb1014 +0 -0
  48. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  49. data/test/dummy/tmp/cache/assets/development/sprockets/35fa941d49cfabf40906d7ac81e502b5 +0 -0
  50. data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/3a18489ba6c9aaef36fe82a5eccaa683 +0 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/3b2f71b1e0ed4912133e1322edeebeb4 +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/3cff68a61696f3df6cc0150dfe5f0a7a +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/5159109e8d44f828ad6e8c67292647ee +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/56a757e904e5be9c01961ca2d84bf6dd +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/6ecbd847a59c3a487acbaf3a341a116e +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/7c5d2dcee0e90462ec7314c630051fc2 +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/90cccb07f2fc8407c9356103eb53c419 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/c71d61ab8105e8c42bf9dc173a72671d +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/cebc6db0bbb8120f430da3970b173d2f +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/d247d1ed3987a4834f22fb867bdca6bc +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/d47632ab6c54bae0f6a62e211aca4938 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/dd1bfc325578c5b436921f471d625afa +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/f333e4623731332ab806c650e07ef890 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/f4a9eb5609520a5f6dbad5dbdbeb37ca +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  75. data/test/dummy/tmp/pids/server.pid +1 -0
  76. metadata +130 -14
  77. data/app/helpers/twitter_ratchet_rails/application_helper.rb +0 -4
  78. data/app/views/layouts/twitter_ratchet_rails/application.html.erb +0 -14
  79. data/test/test_helper.rb +0 -15
  80. data/test/twitter_ratchet_rails_test.rb +0 -7
@@ -1,10 +1,10 @@
1
1
  /*!
2
2
  * =====================================================
3
- * Ratchet v2.0.1 (http://goratchet.com)
3
+ * Ratchet v2.0.2 (http://goratchet.com)
4
4
  * Copyright 2014 Connor Sears
5
- * Licensed under MIT.
5
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
6
6
  *
7
- * v2.0.1 designed by @connors.
7
+ * v2.0.2 designed by @connors.
8
8
  * =====================================================
9
9
  */
10
10
 
@@ -32,18 +32,18 @@ p {
32
32
  }
33
33
 
34
34
  .btn {
35
- border: 1px solid #929292;
36
35
  color: #929292;
37
- background-color: rgba(247, 247, 247, 0.98);
36
+ background-color: rgba(247, 247, 247, .98);
37
+ border: 1px solid #929292;
38
38
  -webkit-transition: all;
39
- -moz-transition: all;
40
- transition: all;
41
- -webkit-transition-duration: 0.2s;
42
- -moz-transition-duration: 0.2s;
43
- transition-duration: 0.2s;
39
+ -moz-transition: all;
40
+ transition: all;
44
41
  -webkit-transition-timing-function: linear;
45
- -moz-transition-timing-function: linear;
46
- transition-timing-function: linear;
42
+ -moz-transition-timing-function: linear;
43
+ transition-timing-function: linear;
44
+ -webkit-transition-duration: .2s;
45
+ -moz-transition-duration: .2s;
46
+ transition-duration: .2s;
47
47
  }
48
48
  .btn:active, .btn.active {
49
49
  color: #fff;
@@ -52,32 +52,32 @@ p {
52
52
 
53
53
  .btn-primary {
54
54
  color: #fff;
55
- border: 1px solid #007aff;
56
55
  background-color: #007aff;
56
+ border: 1px solid #007aff;
57
57
  }
58
58
  .btn-primary:active, .btn-primary.active {
59
- border: 1px solid #0062cc;
60
59
  background-color: #0062cc;
60
+ border: 1px solid #0062cc;
61
61
  }
62
62
 
63
63
  .btn-positive {
64
64
  color: #fff;
65
- border: 1px solid #4cd964;
66
65
  background-color: #4cd964;
66
+ border: 1px solid #4cd964;
67
67
  }
68
68
  .btn-positive:active, .btn-positive.active {
69
- border: 1px solid #2ac845;
70
69
  background-color: #2ac845;
70
+ border: 1px solid #2ac845;
71
71
  }
72
72
 
73
73
  .btn-negative {
74
74
  color: #fff;
75
- border: 1px solid #dd524d;
76
75
  background-color: #dd524d;
76
+ border: 1px solid #dd524d;
77
77
  }
78
78
  .btn-negative:active, .btn-negative.active {
79
- border: 1px solid #cf2d28;
80
79
  background-color: #cf2d28;
80
+ border: 1px solid #cf2d28;
81
81
  }
82
82
 
83
83
  .btn-outlined {
@@ -107,7 +107,7 @@ p {
107
107
  }
108
108
 
109
109
  .btn .badge {
110
- background-color: rgba(0, 0, 0, 0.15);
110
+ background-color: rgba(0, 0, 0, .15);
111
111
  }
112
112
  .btn .badge.badge-inverted {
113
113
  background-color: transparent;
@@ -117,10 +117,10 @@ p {
117
117
  }
118
118
 
119
119
  .bar {
120
+ background-color: rgba(247, 247, 247, .98);
120
121
  border-bottom: 0;
121
- background-color: rgba(247, 247, 247, 0.98);
122
- -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.85);
123
- box-shadow: 0 0 1px rgba(0, 0, 0, 0.85);
122
+ -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .85);
123
+ box-shadow: 0 0 1px rgba(0, 0, 0, .85);
124
124
  }
125
125
  .bar.bar-header-secondary {
126
126
  top: 44px;
@@ -195,27 +195,30 @@ p {
195
195
  }
196
196
 
197
197
  .table-view {
198
- border-top: 0;
199
- border-bottom: 0;
200
198
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>");
201
- background-position: 0 100%, 0 0%;
202
199
  background-repeat: no-repeat;
200
+ background-position: 0 100%, 0 0;
201
+ border-top: 0;
202
+ border-bottom: 0;
203
203
  }
204
204
  .table-view .table-view-cell {
205
- border-bottom: 0;
206
205
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>");
207
- background-position: 15px 100%;
208
206
  background-repeat: no-repeat;
207
+ background-position: 15px 100%;
208
+ border-bottom: 0;
209
209
  }
210
210
  .table-view .table-view-cell:last-child {
211
211
  background-image: none;
212
212
  }
213
+ .table-view .table-view-cell > a:not(.btn):active {
214
+ color: inherit;
215
+ }
213
216
  .table-view .table-view-divider {
214
- border-top: 0;
215
- border-bottom: 0;
216
217
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>");
217
- background-position: 0 100%, 0 0%;
218
218
  background-repeat: no-repeat;
219
+ background-position: 0 100%, 0 0;
220
+ border-top: 0;
221
+ border-bottom: 0;
219
222
  }
220
223
 
221
224
  select,
@@ -237,13 +240,13 @@ input[type="color"],
237
240
  .input-group {
238
241
  height: 40px;
239
242
  padding: 10px 15px;
240
- border: 1px solid rgba(0, 0, 0, 0.2);
243
+ border: 1px solid rgba(0, 0, 0, .2);
241
244
  }
242
245
 
243
246
  input[type="search"] {
244
247
  height: 34px;
245
248
  text-align: center;
246
- background-color: rgba(0, 0, 0, 0.1);
249
+ background-color: rgba(0, 0, 0, .1);
247
250
  border: 0;
248
251
  border-radius: 6px;
249
252
  }
@@ -260,17 +263,17 @@ textarea,
260
263
 
261
264
  .input-group {
262
265
  padding: 0;
263
- border: 0;
264
266
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>"), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>");
265
- background-position: 0 100%, 0 0%;
266
267
  background-repeat: no-repeat;
268
+ background-position: 0 100%, 0 0;
269
+ border: 0;
267
270
  }
268
271
 
269
272
  .input-group input {
270
- border: 0;
271
273
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>");
272
- background-position: 15px 100%;
273
274
  background-repeat: no-repeat;
275
+ background-position: 15px 100%;
276
+ border: 0;
274
277
  }
275
278
 
276
279
  .input-group input:last-child {
@@ -278,10 +281,10 @@ textarea,
278
281
  }
279
282
 
280
283
  .input-row {
281
- border-bottom: 0;
282
284
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>");
283
- background-position: 15px 100%;
284
285
  background-repeat: no-repeat;
286
+ background-position: 15px 100%;
287
+ border-bottom: 0;
285
288
  }
286
289
 
287
290
  .input-row:last-child,
@@ -296,9 +299,9 @@ textarea,
296
299
  .segmented-control .control-item {
297
300
  color: #929292;
298
301
  border-color: #929292;
299
- -webkit-transition: background-color 0.1s linear;
300
- -moz-transition: background-color 0.1s linear;
301
- transition: background-color 0.1s linear;
302
+ -webkit-transition: background-color .1s linear;
303
+ -moz-transition: background-color .1s linear;
304
+ transition: background-color .1s linear;
302
305
  }
303
306
  .segmented-control .control-item:active {
304
307
  background-color: #ebebeb;
@@ -356,116 +359,113 @@ textarea,
356
359
  .popover {
357
360
  border-radius: 12px;
358
361
  -webkit-transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;
359
- -moz-transition: -moz-transform .2s ease-in-out, opacity .2s ease-in-out;
360
- transition: transform .2s ease-in-out, opacity .2s ease-in-out;
361
- -webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
362
- -moz-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
363
- transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
362
+ -moz-transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;
363
+ transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;
364
364
  }
365
365
  .popover:before {
366
- border-bottom: 15px solid rgba(247, 247, 247, 0.98);
366
+ border-bottom: 15px solid rgba(247, 247, 247, .98);
367
367
  }
368
368
 
369
369
  .popover .bar {
370
370
  -webkit-box-shadow: none;
371
- box-shadow: none;
371
+ box-shadow: none;
372
372
  }
373
373
 
374
374
  .popover .bar-nav {
375
- border-bottom: 1px solid rgba(0, 0, 0, 0.15);
375
+ border-bottom: 1px solid rgba(0, 0, 0, .15);
376
376
  }
377
377
 
378
378
  .popover .table-view {
379
- border-radius: 12px;
380
379
  background-image: none;
380
+ border-radius: 12px;
381
381
  }
382
382
 
383
383
  .modal {
384
- -webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1);
385
- -moz-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1);
386
- transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1);
384
+ -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
385
+ -moz-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
386
+ transition-timing-function: cubic-bezier(.1, .5, .1, 1);
387
387
  }
388
388
  .modal.active {
389
- -webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1);
390
- -moz-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1);
391
- transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1);
389
+ -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
390
+ -moz-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
391
+ transition-timing-function: cubic-bezier(.1, .5, .1, 1);
392
392
  }
393
393
 
394
394
  .toggle {
395
395
  width: 47px;
396
396
  border: 2px solid #e6e6e6;
397
397
  -webkit-box-shadow: inset 0 0 0 0 #e1e1e1;
398
- box-shadow: inset 0 0 0 0 #e1e1e1;
398
+ box-shadow: inset 0 0 0 0 #e1e1e1;
399
+ -webkit-transition-duration: .2s;
400
+ -moz-transition-duration: .2s;
401
+ transition-duration: .2s;
399
402
  -webkit-transition-property: box-shadow, border;
400
- -moz-transition-property: box-shadow, border;
401
- transition-property: box-shadow, border;
402
- -webkit-transition-duration: 0.2s;
403
- -moz-transition-duration: 0.2s;
404
- transition-duration: 0.2s;
403
+ -moz-transition-property: box-shadow, border;
404
+ transition-property: box-shadow, border;
405
405
  }
406
406
  .toggle .toggle-handle {
407
- border: 1px solid rgba(0, 0, 0, 0.2);
407
+ border: 1px solid rgba(0, 0, 0, .2);
408
+ -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .08);
409
+ box-shadow: 0 3px 3px rgba(0, 0, 0, .08);
408
410
  -webkit-transition-property: -webkit-transform, border, width;
409
- -moz-transition-property: -moz-transform, border, width;
410
- transition-property: transform, border, width;
411
- -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08);
412
- box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08);
411
+ -moz-transition-property: -moz-transform, border, width;
412
+ transition-property: transform, border, width;
413
413
  }
414
414
  .toggle:before {
415
415
  display: none;
416
416
  }
417
417
  .toggle.active {
418
- border: 2px solid #4cd964;
419
418
  background-color: transparent;
419
+ border: 2px solid #4cd964;
420
420
  -webkit-box-shadow: inset 0 0 0 13px #4cd964;
421
- box-shadow: inset 0 0 0 13px #4cd964;
421
+ box-shadow: inset 0 0 0 13px #4cd964;
422
422
  }
423
423
  .toggle.active .toggle-handle {
424
424
  -webkit-transform: translate3d(17px, 0, 0);
425
- -ms-transform: translate3d(17px, 0, 0);
426
- transform: translate3d(17px, 0, 0);
425
+ -ms-transform: translate3d(17px, 0, 0);
426
+ transform: translate3d(17px, 0, 0);
427
427
  }
428
428
  .toggle.active .toggle-handle {
429
429
  border-color: #4cd964;
430
430
  }
431
431
 
432
432
  .content.fade {
433
- -webkit-transition: opacity 0.2s ease-in-out;
434
- -moz-transition: opacity 0.2s ease-in-out;
435
- transition: opacity 0.2s ease-in-out;
433
+ -webkit-transition: opacity .2s ease-in-out;
434
+ -moz-transition: opacity .2s ease-in-out;
435
+ transition: opacity .2s ease-in-out;
436
436
  }
437
437
  .content.sliding {
438
- -webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1);
439
- -moz-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1);
440
- transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1);
438
+ -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
439
+ -moz-transition-timing-function: cubic-bezier(.1, .5, .1, 1);
440
+ transition-timing-function: cubic-bezier(.1, .5, .1, 1);
441
441
  }
442
442
  .content.sliding.sliding-in, .content.sliding.right:not([class*="sliding-in"]) {
443
443
  -webkit-animation-name: fadeOverlay;
444
- -moz-animation-name: fadeOverlay;
445
- animation-name: fadeOverlay;
446
- -webkit-animation-duration: 0.4s;
447
- -moz-animation-duration: 0.4s;
448
- animation-duration: 0.4s;
444
+ -moz-animation-name: fadeOverlay;
445
+ animation-name: fadeOverlay;
446
+ -webkit-animation-duration: .4s;
447
+ -moz-animation-duration: .4s;
448
+ animation-duration: .4s;
449
449
  }
450
450
  .content.sliding.right:not([class*="sliding-in"]) {
451
451
  -webkit-animation-direction: reverse;
452
- -moz-animation-direction: reverse;
453
- animation-direction: reverse;
452
+ -moz-animation-direction: reverse;
453
+ animation-direction: reverse;
454
454
  }
455
455
  .content.sliding.left {
456
456
  -webkit-transform: translate3d(-20%, 0, 0);
457
- -ms-transform: translate3d(-20%, 0, 0);
458
- transform: translate3d(-20%, 0, 0);
457
+ -ms-transform: translate3d(-20%, 0, 0);
458
+ transform: translate3d(-20%, 0, 0);
459
459
  }
460
460
 
461
461
  @-webkit-keyframes fadeOverlay {
462
462
  from {
463
- -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0), -320px 0 0 rgba(0, 0, 0, 0);
464
- box-shadow: 0 0 10px rgba(0, 0, 0, 0), -320px 0 0 rgba(0, 0, 0, 0);
463
+ -webkit-box-shadow: 0 0 10px transparent, -320px 0 0 transparent;
464
+ box-shadow: 0 0 10px transparent, -320px 0 0 transparent;
465
465
  }
466
466
 
467
467
  to {
468
- -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -320px 0 0 rgba(0, 0, 0, 0.1);
469
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -320px 0 0 rgba(0, 0, 0, 0.1);
468
+ -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3), -320px 0 0 rgba(0, 0, 0, .1);
469
+ box-shadow: 0 0 10px rgba(0, 0, 0, .3), -320px 0 0 rgba(0, 0, 0, .1);
470
470
  }
471
471
  }
@@ -1,18 +1,18 @@
1
1
  /*!
2
2
  * =====================================================
3
- * Ratchet v2.0.1 (http://goratchet.com)
3
+ * Ratchet v2.0.2 (http://goratchet.com)
4
4
  * Copyright 2014 Connor Sears
5
- * Licensed under MIT.
5
+ * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)
6
6
  *
7
- * v2.0.1 designed by @connors.
7
+ * v2.0.2 designed by @connors.
8
8
  * =====================================================
9
9
  */
10
10
 
11
- /*! normalize.css v3.0.0 | MIT License | git.io/normalize */
11
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
12
12
  html {
13
13
  font-family: sans-serif;
14
- -ms-text-size-adjust: 100%;
15
14
  -webkit-text-size-adjust: 100%;
15
+ -ms-text-size-adjust: 100%;
16
16
  }
17
17
 
18
18
  body {
@@ -75,13 +75,13 @@ dfn {
75
75
  }
76
76
 
77
77
  h1 {
78
+ margin: .67em 0;
78
79
  font-size: 2em;
79
- margin: 0.67em 0;
80
80
  }
81
81
 
82
82
  mark {
83
- background: #ff0;
84
83
  color: #000;
84
+ background: #ff0;
85
85
  }
86
86
 
87
87
  small {
@@ -90,18 +90,18 @@ small {
90
90
 
91
91
  sub,
92
92
  sup {
93
+ position: relative;
93
94
  font-size: 75%;
94
95
  line-height: 0;
95
- position: relative;
96
96
  vertical-align: baseline;
97
97
  }
98
98
 
99
99
  sup {
100
- top: -0.5em;
100
+ top: -.5em;
101
101
  }
102
102
 
103
103
  sub {
104
- bottom: -0.25em;
104
+ bottom: -.25em;
105
105
  }
106
106
 
107
107
  img {
@@ -117,9 +117,9 @@ figure {
117
117
  }
118
118
 
119
119
  hr {
120
- -moz-box-sizing: content-box;
121
- box-sizing: content-box;
122
120
  height: 0;
121
+ -moz-box-sizing: content-box;
122
+ box-sizing: content-box;
123
123
  }
124
124
 
125
125
  pre {
@@ -139,9 +139,9 @@ input,
139
139
  optgroup,
140
140
  select,
141
141
  textarea {
142
- color: inherit;
143
- font: inherit;
144
142
  margin: 0;
143
+ font: inherit;
144
+ color: inherit;
145
145
  }
146
146
 
147
147
  button {
@@ -168,8 +168,8 @@ html input[disabled] {
168
168
 
169
169
  button::-moz-focus-inner,
170
170
  input::-moz-focus-inner {
171
- border: 0;
172
171
  padding: 0;
172
+ border: 0;
173
173
  }
174
174
 
175
175
  input {
@@ -188,10 +188,10 @@ input[type="number"]::-webkit-outer-spin-button {
188
188
  }
189
189
 
190
190
  input[type="search"] {
191
- -webkit-appearance: textfield;
192
- -moz-box-sizing: content-box;
193
191
  -webkit-box-sizing: content-box;
194
- box-sizing: content-box;
192
+ -moz-box-sizing: content-box;
193
+ box-sizing: content-box;
194
+ -webkit-appearance: textfield;
195
195
  }
196
196
 
197
197
  input[type="search"]::-webkit-search-cancel-button,
@@ -200,14 +200,14 @@ input[type="search"]::-webkit-search-decoration {
200
200
  }
201
201
 
202
202
  fieldset {
203
- border: 1px solid #c0c0c0;
203
+ padding: .35em .625em .75em;
204
204
  margin: 0 2px;
205
- padding: 0.35em 0.625em 0.75em;
205
+ border: 1px solid #c0c0c0;
206
206
  }
207
207
 
208
208
  legend {
209
- border: 0;
210
209
  padding: 0;
210
+ border: 0;
211
211
  }
212
212
 
213
213
  textarea {
@@ -219,8 +219,8 @@ optgroup {
219
219
  }
220
220
 
221
221
  table {
222
- border-collapse: collapse;
223
222
  border-spacing: 0;
223
+ border-collapse: collapse;
224
224
  }
225
225
 
226
226
  td,
@@ -230,8 +230,8 @@ th {
230
230
 
231
231
  * {
232
232
  -webkit-box-sizing: border-box;
233
- -moz-box-sizing: border-box;
234
- box-sizing: border-box;
233
+ -moz-box-sizing: border-box;
234
+ box-sizing: border-box;
235
235
  }
236
236
 
237
237
  body {
@@ -250,27 +250,28 @@ body {
250
250
  a {
251
251
  color: #428bca;
252
252
  text-decoration: none;
253
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
253
+
254
+ -webkit-tap-highlight-color: transparent;
254
255
  }
255
256
  a:active {
256
257
  color: #3071a9;
257
258
  }
258
259
 
259
260
  .content {
260
- position: fixed;
261
+ position: absolute;
261
262
  top: 0;
262
263
  right: 0;
263
264
  bottom: 0;
264
265
  left: 0;
265
266
  overflow: auto;
266
- background-color: #fff;
267
267
  -webkit-overflow-scrolling: touch;
268
+ background-color: #fff;
268
269
  }
269
270
 
270
271
  .content > * {
271
272
  -webkit-transform: translateZ(0);
272
- -ms-transform: translateZ(0);
273
- transform: translateZ(0);
273
+ -ms-transform: translateZ(0);
274
+ transform: translateZ(0);
274
275
  }
275
276
 
276
277
  .bar-nav ~ .content {
@@ -310,8 +311,8 @@ a:active {
310
311
  }
311
312
 
312
313
  .clearfix:before, .clearfix:after {
313
- content: " ";
314
314
  display: table;
315
+ content: " ";
315
316
  }
316
317
  .clearfix:after {
317
318
  clear: both;
@@ -340,13 +341,13 @@ h4, .h4 {
340
341
  }
341
342
 
342
343
  h5, .h5 {
343
- font-size: 14px;
344
344
  margin-top: 20px;
345
+ font-size: 14px;
345
346
  }
346
347
 
347
348
  h6, .h6 {
348
- font-size: 12px;
349
349
  margin-top: 20px;
350
+ font-size: 12px;
350
351
  }
351
352
 
352
353
  p {
@@ -366,8 +367,8 @@ p {
366
367
  line-height: 1;
367
368
  color: #333;
368
369
  text-align: center;
369
- vertical-align: top;
370
370
  white-space: nowrap;
371
+ vertical-align: top;
371
372
  cursor: pointer;
372
373
  background-color: white;
373
374
  border: 1px solid #ccc;
@@ -383,35 +384,35 @@ p {
383
384
 
384
385
  .btn-primary {
385
386
  color: #fff;
386
- border: 1px solid #428bca;
387
387
  background-color: #428bca;
388
+ border: 1px solid #428bca;
388
389
  }
389
390
  .btn-primary:active, .btn-primary.active {
390
391
  color: #fff;
391
- border: 1px solid #3071a9;
392
392
  background-color: #3071a9;
393
+ border: 1px solid #3071a9;
393
394
  }
394
395
 
395
396
  .btn-positive {
396
397
  color: #fff;
397
- border: 1px solid #5cb85c;
398
398
  background-color: #5cb85c;
399
+ border: 1px solid #5cb85c;
399
400
  }
400
401
  .btn-positive:active, .btn-positive.active {
401
402
  color: #fff;
402
- border: 1px solid #449d44;
403
403
  background-color: #449d44;
404
+ border: 1px solid #449d44;
404
405
  }
405
406
 
406
407
  .btn-negative {
407
408
  color: #fff;
408
- border: 1px solid #d9534f;
409
409
  background-color: #d9534f;
410
+ border: 1px solid #d9534f;
410
411
  }
411
412
  .btn-negative:active, .btn-negative.active {
412
413
  color: #fff;
413
- border: 1px solid #c9302c;
414
414
  background-color: #c9302c;
415
+ border: 1px solid #c9302c;
415
416
  }
416
417
 
417
418
  .btn-outlined {
@@ -457,9 +458,9 @@ input[type="button"] {
457
458
  }
458
459
 
459
460
  .btn .badge {
460
- font-size: 12px;
461
461
  margin: -2px -4px -2px 4px;
462
- background-color: rgba(0, 0, 0, 0.15);
462
+ font-size: 12px;
463
+ background-color: rgba(0, 0, 0, .15);
463
464
  }
464
465
 
465
466
  .btn .badge-inverted,
@@ -491,8 +492,11 @@ input[type="button"] {
491
492
  height: 44px;
492
493
  padding-right: 10px;
493
494
  padding-left: 10px;
494
- border-bottom: 1px solid #dddddd;
495
495
  background-color: white;
496
+ border-bottom: 1px solid #ddd;
497
+
498
+ -webkit-backface-visibility: hidden;
499
+ backface-visibility: hidden;
496
500
  }
497
501
 
498
502
  .bar-header-secondary {
@@ -514,8 +518,8 @@ input[type="button"] {
514
518
  .bar-footer,
515
519
  .bar-footer-secondary,
516
520
  .bar-footer-secondary-tab {
521
+ border-top: 1px solid #ddd;
517
522
  border-bottom: 0;
518
- border-top: 1px solid #dddddd;
519
523
  }
520
524
 
521
525
  .bar-nav {
@@ -541,22 +545,22 @@ input[type="button"] {
541
545
  }
542
546
 
543
547
  .bar-tab {
544
- display: table;
545
548
  bottom: 0;
549
+ display: table;
546
550
  width: 100%;
547
551
  height: 50px;
548
552
  padding: 0;
549
- border-top: 1px solid #dddddd;
550
- border-bottom: 0;
551
553
  table-layout: fixed;
554
+ border-top: 1px solid #ddd;
555
+ border-bottom: 0;
552
556
  }
553
557
  .bar-tab .tab-item {
554
558
  display: table-cell;
555
559
  width: 1%;
556
560
  height: 50px;
557
- vertical-align: middle;
558
561
  color: #929292;
559
562
  text-align: center;
563
+ vertical-align: middle;
560
564
  }
561
565
  .bar-tab .tab-item.active, .bar-tab .tab-item:active {
562
566
  color: #428bca;
@@ -592,8 +596,8 @@ input[type="button"] {
592
596
  top: 0;
593
597
  padding: 0;
594
598
  font-size: 16px;
595
- color: #428bca;
596
599
  line-height: 44px;
600
+ color: #428bca;
597
601
  border: 0;
598
602
  }
599
603
  .bar .btn-link:active, .bar .btn-link.active {
@@ -655,7 +659,7 @@ input[type="button"] {
655
659
  font-size: 12px;
656
660
  line-height: 1;
657
661
  color: #333;
658
- background-color: rgba(0, 0, 0, 0.15);
662
+ background-color: rgba(0, 0, 0, .15);
659
663
  border-radius: 100px;
660
664
  }
661
665
  .badge.badge-inverted {
@@ -688,10 +692,10 @@ input[type="button"] {
688
692
  }
689
693
 
690
694
  .card {
691
- overflow: hidden;
692
695
  margin: 10px;
696
+ overflow: hidden;
693
697
  background-color: white;
694
- border: 1px solid #dddddd;
698
+ border: 1px solid #ddd;
695
699
  border-radius: 6px;
696
700
  }
697
701
 
@@ -702,8 +706,8 @@ input[type="button"] {
702
706
  }
703
707
  .card .table-view .table-view-divider:first-child {
704
708
  top: 0;
705
- border-top-right-radius: 6px;
706
709
  border-top-left-radius: 6px;
710
+ border-top-right-radius: 6px;
707
711
  }
708
712
  .card .table-view .table-view-divider:last-child {
709
713
  border-bottom-right-radius: 6px;
@@ -720,15 +724,15 @@ input[type="button"] {
720
724
  margin-bottom: 15px;
721
725
  list-style: none;
722
726
  background-color: #fff;
723
- border-top: 1px solid #dddddd;
724
- border-bottom: 1px solid #dddddd;
727
+ border-top: 1px solid #ddd;
728
+ border-bottom: 1px solid #ddd;
725
729
  }
726
730
 
727
731
  .table-view-cell {
728
732
  position: relative;
729
- overflow: hidden;
730
733
  padding: 11px 65px 11px 15px;
731
- border-bottom: 1px solid #dddddd;
734
+ overflow: hidden;
735
+ border-bottom: 1px solid #ddd;
732
736
  }
733
737
  .table-view-cell:last-child {
734
738
  border-bottom: 0;
@@ -736,9 +740,9 @@ input[type="button"] {
736
740
  .table-view-cell > a:not(.btn) {
737
741
  position: relative;
738
742
  display: block;
739
- overflow: hidden;
740
743
  padding: inherit;
741
744
  margin: -11px -65px -11px -15px;
745
+ overflow: hidden;
742
746
  color: inherit;
743
747
  }
744
748
  .table-view-cell > a:not(.btn):active {
@@ -754,17 +758,16 @@ input[type="button"] {
754
758
  padding-left: 15px;
755
759
  margin-top: -1px;
756
760
  margin-left: 0;
757
- color: #999;
758
761
  font-weight: 500;
759
- border-top: 1px solid #dddddd;
760
- border-bottom: 1px solid #dddddd;
762
+ color: #999;
761
763
  background-color: #fafafa;
764
+ border-top: 1px solid #ddd;
765
+ border-bottom: 1px solid #ddd;
762
766
  }
763
767
 
764
768
  .table-view .media,
765
769
  .table-view .media-body {
766
770
  overflow: hidden;
767
- zoom: 1;
768
771
  }
769
772
 
770
773
  .table-view .media-object.pull-left {
@@ -784,8 +787,8 @@ input[type="button"] {
784
787
  top: 50%;
785
788
  right: 15px;
786
789
  -webkit-transform: translateY(-50%);
787
- -ms-transform: translateY(-50%);
788
- transform: translateY(-50%);
790
+ -ms-transform: translateY(-50%);
791
+ transform: translateY(-50%);
789
792
  }
790
793
  .table-view-cell .navigate-left > .btn,
791
794
  .table-view-cell .navigate-left > .badge,
@@ -844,21 +847,23 @@ input[type="tel"],
844
847
  input[type="color"] {
845
848
  width: 100%;
846
849
  height: 35px;
850
+ -webkit-appearance: none;
847
851
  padding: 0 15px;
848
852
  margin-bottom: 15px;
849
853
  line-height: 21px;
850
854
  background-color: #fff;
851
- border: 1px solid #dddddd;
855
+ border: 1px solid #ddd;
852
856
  border-radius: 3px;
853
857
  outline: none;
854
- -webkit-appearance: none;
855
858
  }
856
859
 
857
860
  input[type="search"] {
861
+ -webkit-box-sizing: border-box;
862
+ -moz-box-sizing: border-box;
863
+ box-sizing: border-box;
858
864
  padding: 0 10px;
859
865
  font-size: 16px;
860
866
  border-radius: 20px;
861
- box-sizing: border-box;
862
867
  }
863
868
 
864
869
  input[type="search"]:focus {
@@ -873,8 +878,8 @@ select {
873
878
  height: auto;
874
879
  font-size: 14px;
875
880
  background-color: #f8f8f8;
876
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
877
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
881
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
882
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
878
883
  }
879
884
 
880
885
  .input-group {
@@ -886,22 +891,23 @@ select {
886
891
  margin-bottom: 0;
887
892
  background-color: transparent;
888
893
  border-top: 0;
889
- border-left: 0;
890
894
  border-right: 0;
895
+ border-left: 0;
891
896
  border-radius: 0;
892
897
  -webkit-box-shadow: none;
893
- box-shadow: none;
898
+ box-shadow: none;
894
899
  }
895
900
 
896
901
  .input-row {
902
+ height: 35px;
897
903
  overflow: hidden;
898
- border-bottom: 1px solid #dddddd;
904
+ border-bottom: 1px solid #ddd;
899
905
  }
900
906
 
901
907
  .input-row label {
902
908
  float: left;
903
909
  width: 35%;
904
- padding: 10px 15px;
910
+ padding: 8px 15px;
905
911
  font-family: "Helvetica Neue", Helvetica, sans-serif;
906
912
  line-height: 1.1;
907
913
  }
@@ -926,15 +932,15 @@ select {
926
932
  }
927
933
  .segmented-control .control-item {
928
934
  display: table-cell;
929
- overflow: hidden;
930
935
  width: 1%;
931
936
  padding-top: 6px;
932
937
  padding-bottom: 7px;
938
+ overflow: hidden;
933
939
  line-height: 1;
934
940
  color: #333;
935
941
  text-align: center;
936
- white-space: nowrap;
937
942
  text-overflow: ellipsis;
943
+ white-space: nowrap;
938
944
  border-left: 1px solid #ccc;
939
945
  }
940
946
  .segmented-control .control-item:first-child {
@@ -1009,15 +1015,15 @@ select {
1009
1015
  margin-left: -140px;
1010
1016
  background-color: white;
1011
1017
  border-radius: 6px;
1018
+ -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);
1019
+ box-shadow: 0 0 15px rgba(0, 0, 0, .1);
1012
1020
  opacity: 0;
1013
- -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
1014
- box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
1021
+ -webkit-transition: all .25s linear;
1022
+ -moz-transition: all .25s linear;
1023
+ transition: all .25s linear;
1015
1024
  -webkit-transform: translate3d(0, -15px, 0);
1016
- -ms-transform: translate3d(0, -15px, 0);
1017
- transform: translate3d(0, -15px, 0);
1018
- -webkit-transition: all 0.25s linear;
1019
- -moz-transition: all 0.25s linear;
1020
- transition: all 0.25s linear;
1025
+ -ms-transform: translate3d(0, -15px, 0);
1026
+ transform: translate3d(0, -15px, 0);
1021
1027
  }
1022
1028
  .popover:before {
1023
1029
  position: absolute;
@@ -1026,16 +1032,16 @@ select {
1026
1032
  width: 0;
1027
1033
  height: 0;
1028
1034
  margin-left: -15px;
1035
+ content: '';
1029
1036
  border-right: 15px solid transparent;
1030
1037
  border-bottom: 15px solid white;
1031
1038
  border-left: 15px solid transparent;
1032
- content: '';
1033
1039
  }
1034
1040
  .popover.visible {
1035
1041
  opacity: 1;
1036
1042
  -webkit-transform: translate3d(0, 0, 0);
1037
- -ms-transform: translate3d(0, 0, 0);
1038
- transform: translate3d(0, 0, 0);
1043
+ -ms-transform: translate3d(0, 0, 0);
1044
+ transform: translate3d(0, 0, 0);
1039
1045
  }
1040
1046
  .popover .bar ~ .table-view {
1041
1047
  padding-top: 44px;
@@ -1048,7 +1054,7 @@ select {
1048
1054
  bottom: 0;
1049
1055
  left: 0;
1050
1056
  z-index: 15;
1051
- background-color: rgba(0, 0, 0, 0.3);
1057
+ background-color: rgba(0, 0, 0, .3);
1052
1058
  }
1053
1059
 
1054
1060
  .popover .btn-block {
@@ -1059,49 +1065,49 @@ select {
1059
1065
  }
1060
1066
 
1061
1067
  .popover .bar-nav {
1062
- border-bottom: 1px solid #dddddd;
1063
- border-top-right-radius: 12px;
1068
+ border-bottom: 1px solid #ddd;
1064
1069
  border-top-left-radius: 12px;
1070
+ border-top-right-radius: 12px;
1065
1071
  -webkit-box-shadow: none;
1066
- box-shadow: none;
1072
+ box-shadow: none;
1067
1073
  }
1068
1074
 
1069
1075
  .popover .table-view {
1070
1076
  max-height: 300px;
1071
1077
  margin-bottom: 0;
1072
1078
  overflow: auto;
1079
+ -webkit-overflow-scrolling: touch;
1073
1080
  background-color: #fff;
1074
1081
  border-top: 0;
1075
1082
  border-bottom: 0;
1076
1083
  border-radius: 6px;
1077
- -webkit-overflow-scrolling: touch;
1078
1084
  }
1079
1085
 
1080
1086
  .modal {
1081
1087
  position: fixed;
1082
1088
  top: 0;
1083
- opacity: 0;
1084
1089
  z-index: 11;
1085
1090
  width: 100%;
1086
1091
  min-height: 100%;
1087
1092
  overflow: hidden;
1088
1093
  background-color: #fff;
1094
+ opacity: 0;
1089
1095
  -webkit-transition: -webkit-transform .25s, opacity 1ms .25s;
1090
- -moz-transition: -moz-transform .25s, opacity 1ms .25s;
1091
- transition: transform .25s, opacity 1ms .25s;
1096
+ -moz-transition: -moz-transform .25s, opacity 1ms .25s;
1097
+ transition: transform .25s, opacity 1ms .25s;
1092
1098
  -webkit-transform: translate3d(0, 100%, 0);
1093
- -ms-transform: translate3d(0, 100%, 0);
1094
- transform: translate3d(0, 100%, 0);
1099
+ -ms-transform: translate3d(0, 100%, 0);
1100
+ transform: translate3d(0, 100%, 0);
1095
1101
  }
1096
1102
  .modal.active {
1097
- opacity: 1;
1098
1103
  height: 100%;
1104
+ opacity: 1;
1099
1105
  -webkit-transition: -webkit-transform .25s;
1100
- -moz-transition: -moz-transform .25s;
1101
- transition: transform .25s;
1106
+ -moz-transition: -moz-transform .25s;
1107
+ transition: transform .25s;
1102
1108
  -webkit-transform: translate3d(0, 0, 0);
1103
- -ms-transform: translate3d(0, 0, 0);
1104
- transform: translate3d(0, 0, 0);
1109
+ -ms-transform: translate3d(0, 0, 0);
1110
+ transform: translate3d(0, 0, 0);
1105
1111
  }
1106
1112
 
1107
1113
  .slider {
@@ -1116,32 +1122,32 @@ select {
1116
1122
  position: relative;
1117
1123
  font-size: 0;
1118
1124
  white-space: nowrap;
1119
- -webkit-transition: all 0 linear;
1120
- -moz-transition: all 0 linear;
1121
- transition: all 0 linear;
1125
+ -webkit-transition: all 0s linear;
1126
+ -moz-transition: all 0s linear;
1127
+ transition: all 0s linear;
1122
1128
  }
1123
1129
  .slider .slide-group .slide {
1124
1130
  display: inline-block;
1125
- vertical-align: top;
1126
1131
  width: 100%;
1127
1132
  height: 100%;
1128
1133
  font-size: 14px;
1134
+ vertical-align: top;
1129
1135
  }
1130
1136
 
1131
1137
  .toggle {
1132
- display: block;
1133
1138
  position: relative;
1139
+ display: block;
1134
1140
  width: 74px;
1135
1141
  height: 30px;
1136
1142
  background-color: #fff;
1137
1143
  border: 2px solid #ddd;
1138
1144
  border-radius: 20px;
1145
+ -webkit-transition-duration: .2s;
1146
+ -moz-transition-duration: .2s;
1147
+ transition-duration: .2s;
1139
1148
  -webkit-transition-property: background-color, border;
1140
- -moz-transition-property: background-color, border;
1141
- transition-property: background-color, border;
1142
- -webkit-transition-duration: 0.2s;
1143
- -moz-transition-duration: 0.2s;
1144
- transition-duration: 0.2s;
1149
+ -moz-transition-property: background-color, border;
1150
+ transition-property: background-color, border;
1145
1151
  }
1146
1152
  .toggle .toggle-handle {
1147
1153
  position: absolute;
@@ -1153,31 +1159,31 @@ select {
1153
1159
  background-color: #fff;
1154
1160
  border: 1px solid #ddd;
1155
1161
  border-radius: 100px;
1162
+ -webkit-transition-duration: .2s;
1163
+ -moz-transition-duration: .2s;
1164
+ transition-duration: .2s;
1156
1165
  -webkit-transition-property: -webkit-transform, border, width;
1157
- -moz-transition-property: -moz-transform, border, width;
1158
- transition-property: transform, border, width;
1159
- -webkit-transition-duration: 0.2s;
1160
- -moz-transition-duration: 0.2s;
1161
- transition-duration: 0.2s;
1166
+ -moz-transition-property: -moz-transform, border, width;
1167
+ transition-property: transform, border, width;
1162
1168
  }
1163
1169
  .toggle:before {
1164
1170
  position: absolute;
1165
1171
  top: 3px;
1166
1172
  right: 11px;
1167
- color: #999;
1168
1173
  font-size: 13px;
1174
+ color: #999;
1169
1175
  text-transform: uppercase;
1170
1176
  content: "Off";
1171
1177
  }
1172
1178
  .toggle.active {
1173
- border: 2px solid #5cb85c;
1174
1179
  background-color: #5cb85c;
1180
+ border: 2px solid #5cb85c;
1175
1181
  }
1176
1182
  .toggle.active .toggle-handle {
1177
1183
  border-color: #5cb85c;
1178
1184
  -webkit-transform: translate3d(44px, 0, 0);
1179
- -ms-transform: translate3d(44px, 0, 0);
1180
- transform: translate3d(44px, 0, 0);
1185
+ -ms-transform: translate3d(44px, 0, 0);
1186
+ transform: translate3d(44px, 0, 0);
1181
1187
  }
1182
1188
  .toggle.active:before {
1183
1189
  right: auto;
@@ -1199,23 +1205,23 @@ select {
1199
1205
  .content.sliding {
1200
1206
  z-index: 2;
1201
1207
  -webkit-transition: -webkit-transform .4s;
1202
- -moz-transition: -moz-transform .4s;
1203
- transition: transform .4s;
1208
+ -moz-transition: -moz-transform .4s;
1209
+ transition: transform .4s;
1204
1210
  -webkit-transform: translate3d(0, 0, 0);
1205
- -ms-transform: translate3d(0, 0, 0);
1206
- transform: translate3d(0, 0, 0);
1211
+ -ms-transform: translate3d(0, 0, 0);
1212
+ transform: translate3d(0, 0, 0);
1207
1213
  }
1208
1214
  .content.sliding.left {
1209
1215
  z-index: 1;
1210
1216
  -webkit-transform: translate3d(-100%, 0, 0);
1211
- -ms-transform: translate3d(-100%, 0, 0);
1212
- transform: translate3d(-100%, 0, 0);
1217
+ -ms-transform: translate3d(-100%, 0, 0);
1218
+ transform: translate3d(-100%, 0, 0);
1213
1219
  }
1214
1220
  .content.sliding.right {
1215
1221
  z-index: 3;
1216
1222
  -webkit-transform: translate3d(100%, 0, 0);
1217
- -ms-transform: translate3d(100%, 0, 0);
1218
- transform: translate3d(100%, 0, 0);
1223
+ -ms-transform: translate3d(100%, 0, 0);
1224
+ transform: translate3d(100%, 0, 0);
1219
1225
  }
1220
1226
 
1221
1227
  .navigate-left:after,
@@ -1225,15 +1231,16 @@ select {
1225
1231
  position: absolute;
1226
1232
  top: 50%;
1227
1233
  display: inline-block;
1228
- color: #bbb;
1229
1234
  font-family: Ratchicons;
1230
1235
  font-size: inherit;
1231
- text-decoration: none;
1232
1236
  line-height: 1;
1233
- -webkit-font-smoothing: antialiased;
1237
+ color: #bbb;
1238
+ text-decoration: none;
1234
1239
  -webkit-transform: translateY(-50%);
1235
- -ms-transform: translateY(-50%);
1236
- transform: translateY(-50%);
1240
+ -ms-transform: translateY(-50%);
1241
+ transform: translateY(-50%);
1242
+
1243
+ -webkit-font-smoothing: antialiased;
1237
1244
  }
1238
1245
 
1239
1246
  .navigate-left:after,
@@ -1250,23 +1257,21 @@ select {
1250
1257
 
1251
1258
  @font-face {
1252
1259
  font-family: Ratchicons;
1260
+ font-style: normal;
1261
+ font-weight: normal;
1262
+
1253
1263
  src: url("<%= asset_path 'ratchicons.eot' %>");
1254
1264
  src: url("<%= asset_path 'ratchicons.eot?#iefix' %>") format("embedded-opentype"), url("<%= asset_path 'ratchicons.woff' %>") format("woff"), url("<%= asset_path 'ratchicons.ttf' %>") format("truetype"), url("<%= asset_path 'ratchicons.svg#svgFontName' %>") format("svg");
1255
- font-weight: normal;
1256
- font-style: normal;
1257
1265
  }
1258
1266
 
1259
1267
  .icon {
1260
1268
  display: inline-block;
1261
1269
  font-family: Ratchicons;
1262
1270
  font-size: 24px;
1263
- text-decoration: none;
1264
1271
  line-height: 1;
1265
- -webkit-font-smoothing: antialiased;
1266
- }
1272
+ text-decoration: none;
1267
1273
 
1268
- .icon-and-up:before {
1269
- content: '\e809';
1274
+ -webkit-font-smoothing: antialiased;
1270
1275
  }
1271
1276
 
1272
1277
  .icon-back:before {
@@ -1297,14 +1302,6 @@ select {
1297
1302
  content: '\e813';
1298
1303
  }
1299
1304
 
1300
- .icon-down-nav:before {
1301
- content: '\e814';
1302
- }
1303
-
1304
- .icon-down:before {
1305
- content: '\e820';
1306
- }
1307
-
1308
1305
  .icon-download:before {
1309
1306
  content: '\e815';
1310
1307
  }
@@ -1329,14 +1326,6 @@ select {
1329
1326
  content: '\e82c';
1330
1327
  }
1331
1328
 
1332
- .icon-left-nav:before {
1333
- content: '\e82d';
1334
- }
1335
-
1336
- .icon-left:before {
1337
- content: '\e822';
1338
- }
1339
-
1340
1329
  .icon-list:before {
1341
1330
  content: '\e823';
1342
1331
  }
@@ -1373,14 +1362,6 @@ select {
1373
1362
  content: '\e825';
1374
1363
  }
1375
1364
 
1376
- .icon-right-nav:before {
1377
- content: '\e818';
1378
- }
1379
-
1380
- .icon-right:before {
1381
- content: '\e826';
1382
- }
1383
-
1384
1365
  .icon-search:before {
1385
1366
  content: '\e819';
1386
1367
  }
@@ -1389,6 +1370,10 @@ select {
1389
1370
  content: '\e81a';
1390
1371
  }
1391
1372
 
1373
+ .icon-sound:before {
1374
+ content: '\e827';
1375
+ }
1376
+
1392
1377
  .icon-sound2:before {
1393
1378
  content: '\e828';
1394
1379
  }
@@ -1401,10 +1386,6 @@ select {
1401
1386
  content: '\e80c';
1402
1387
  }
1403
1388
 
1404
- .icon-sound:before {
1405
- content: '\e827';
1406
- }
1407
-
1408
1389
  .icon-star-filled:before {
1409
1390
  content: '\e81b';
1410
1391
  }
@@ -1428,3 +1409,27 @@ select {
1428
1409
  .icon-up:before {
1429
1410
  content: '\e80d';
1430
1411
  }
1412
+
1413
+ .icon-right-nav:before {
1414
+ content: '\e818';
1415
+ }
1416
+
1417
+ .icon-right:before {
1418
+ content: '\e826';
1419
+ }
1420
+
1421
+ .icon-down-nav:before {
1422
+ content: '\e814';
1423
+ }
1424
+
1425
+ .icon-down:before {
1426
+ content: '\e820';
1427
+ }
1428
+
1429
+ .icon-left-nav:before {
1430
+ content: '\e82d';
1431
+ }
1432
+
1433
+ .icon-left:before {
1434
+ content: '\e822';
1435
+ }