pushpop-rails 1.0.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.
Files changed (31) hide show
  1. data/README.md +42 -0
  2. data/Rakefile +29 -0
  3. data/lib/generators/pushpop/install/install_generator.rb +17 -0
  4. data/lib/pushpop-rails.rb +4 -0
  5. data/lib/pushpop/rails.rb +8 -0
  6. data/lib/pushpop/rails/engine.rb +7 -0
  7. data/lib/pushpop/rails/version.rb +5 -0
  8. data/vendor/assets/Pushpop/background.png +0 -0
  9. data/vendor/assets/Pushpop/background@2x.png +0 -0
  10. data/vendor/assets/Pushpop/externals/scrollkit/background.png +0 -0
  11. data/vendor/assets/Pushpop/externals/scrollkit/scrollkit.css +202 -0
  12. data/vendor/assets/Pushpop/externals/scrollkit/scrollkit.js +924 -0
  13. data/vendor/assets/Pushpop/font/pushpop-glyphs-webfont.eot +0 -0
  14. data/vendor/assets/Pushpop/font/pushpop-glyphs-webfont.svg +57 -0
  15. data/vendor/assets/Pushpop/font/pushpop-glyphs-webfont.ttf +0 -0
  16. data/vendor/assets/Pushpop/font/pushpop-glyphs-webfont.woff +0 -0
  17. data/vendor/assets/Pushpop/pushpop-modal-view-stack/pushpop-modal-view-stack.css +148 -0
  18. data/vendor/assets/Pushpop/pushpop-modal-view-stack/pushpop-modal-view-stack.js +306 -0
  19. data/vendor/assets/Pushpop/pushpop-popover-view-stack/pushpop-popover-view-stack.css +170 -0
  20. data/vendor/assets/Pushpop/pushpop-popover-view-stack/pushpop-popover-view-stack.js +278 -0
  21. data/vendor/assets/Pushpop/pushpop-split-view/pushpop-split-view.css +38 -0
  22. data/vendor/assets/Pushpop/pushpop-split-view/pushpop-split-view.js +33 -0
  23. data/vendor/assets/Pushpop/pushpop-tab-view/pushpop-tab-view.css +130 -0
  24. data/vendor/assets/Pushpop/pushpop-tab-view/pushpop-tab-view.js +298 -0
  25. data/vendor/assets/Pushpop/pushpop-table-view/pushpop-table-view.css +1273 -0
  26. data/vendor/assets/Pushpop/pushpop-table-view/pushpop-table-view.js +2275 -0
  27. data/vendor/assets/Pushpop/pushpop.css +2243 -0
  28. data/vendor/assets/Pushpop/pushpop.js +1554 -0
  29. data/vendor/assets/javascripts/pushpop_rails.js +7 -0
  30. data/vendor/assets/stylesheets/pushpop_rails.css +9 -0
  31. metadata +92 -0
@@ -0,0 +1,1273 @@
1
+ /**
2
+ Pushpop.TableView
3
+ =================
4
+ pp-table-view
5
+ */
6
+ .pp-table-view {
7
+ background: #f7f7f7;
8
+ font-size: 17px;
9
+ line-height: 1.2em;
10
+ list-style: none;
11
+ position: relative;
12
+ margin: 0;
13
+ padding: 0;
14
+ -webkit-backface-visibility: hidden;
15
+ -moz-backface-visibility: hidden;
16
+ -ms-backface-visibility: hidden;
17
+ -o-backface-visibility: hidden;
18
+ backface-visibility: hidden;
19
+ -webkit-transform: translate3d(0, 0, 0);
20
+ -moz-transform: translate(0, 0);
21
+ -ms-transform: translate(0, 0);
22
+ -o-transform: translate(0, 0);
23
+ transform: translate(0, 0);
24
+ }
25
+
26
+ .pp-table-view::before {
27
+ background: #f7f7f7;
28
+ content: '';
29
+ position: absolute;
30
+ right: 0;
31
+ top: -1024px;
32
+ left: 0;
33
+ height: 1024px;
34
+ -webkit-backface-visibility: hidden;
35
+ -moz-backface-visibility: hidden;
36
+ -ms-backface-visibility: hidden;
37
+ -o-backface-visibility: hidden;
38
+ backface-visibility: hidden;
39
+ -webkit-transform: translate3d(0, 0, 0);
40
+ -moz-transform: translate(0, 0);
41
+ -ms-transform: translate(0, 0);
42
+ -o-transform: translate(0, 0);
43
+ transform: translate(0, 0);
44
+ }
45
+
46
+ .pp-table-view::after {
47
+ background: #f7f7f7;
48
+ content: '';
49
+ position: absolute;
50
+ right: 0;
51
+ bottom: -1024px;
52
+ left: 0;
53
+ height: 1024px;
54
+ -webkit-backface-visibility: hidden;
55
+ -moz-backface-visibility: hidden;
56
+ -ms-backface-visibility: hidden;
57
+ -o-backface-visibility: hidden;
58
+ backface-visibility: hidden;
59
+ -webkit-transform: translate3d(0, 0, 0);
60
+ -moz-transform: translate(0, 0);
61
+ -ms-transform: translate(0, 0);
62
+ -o-transform: translate(0, 0);
63
+ transform: translate(0, 0);
64
+ }
65
+
66
+ .sk-scroll-view-plain .pp-table-view::before,
67
+ .sk-scroll-view-plain .pp-table-view::after {
68
+ display: none;
69
+ }
70
+
71
+ .pp-table-view-search-bar + .pp-table-view::before {
72
+ background: #d6dde2;
73
+ top: -1067px;
74
+ }
75
+
76
+ .sk-no-touch .pp-table-view::before,
77
+ .sk-no-touch .pp-table-view::after {
78
+ display: none;
79
+ }
80
+
81
+ /* Clearfix */
82
+ .pp-table-view > li::before,
83
+ .pp-table-view > li::after { content: ''; display: table; }
84
+ .pp-table-view > li::after { clear: both; }
85
+
86
+ /**
87
+ Pushpop.TableViewStyleGrouped
88
+ =============================
89
+ pp-table-view-style-grouped
90
+ */
91
+ .pp-table-view.pp-table-view-style-grouped {
92
+ background: #ddd;
93
+ padding: 1em;
94
+ }
95
+
96
+ .pp-table-view.pp-table-view-style-grouped::before {
97
+ background: #ddd;
98
+ top: -1023px;
99
+ }
100
+
101
+ .pp-table-view.pp-table-view-style-grouped::after {
102
+ background: #ddd;
103
+ bottom: -1023px;
104
+ }
105
+
106
+ .pp-table-view-search-bar + .pp-table-view.pp-table-view-style-grouped::before {
107
+ background: #d6dde2;
108
+ top: -1067px;
109
+ }
110
+
111
+ .sk-scroll-view-plain .pp-table-view.pp-table-view-style-grouped::before,
112
+ .sk-scroll-view-plain .pp-table-view.pp-table-view-style-grouped::after {
113
+ background: none;
114
+ }
115
+
116
+ .pp-table-view-style-grouped > li {
117
+ background: #f7f7f7;
118
+ }
119
+
120
+ .pp-table-view-style-grouped > li:first-child {
121
+ -webkit-border-radius: 0.65em 0.65em 0 0;
122
+ -moz-border-radius: 0.65em 0.65em 0 0;
123
+ border-radius: 0.65em 0.65em 0 0;
124
+ }
125
+
126
+ .pp-table-view-style-grouped > li:last-child {
127
+ -webkit-border-radius: 0 0 0.65em 0.65em;
128
+ -moz-border-radius: 0 0 0.65em 0.65em;
129
+ border-radius: 0 0 0.65em 0.65em;
130
+ }
131
+
132
+ .pp-table-view-style-grouped > li:last-child:first-child {
133
+ -webkit-border-radius: 0.65em;
134
+ -moz-border-radius: 0.65em;
135
+ border-radius: 0.65em;
136
+ }
137
+
138
+ .pp-table-view-style-grouped > li:first-child,
139
+ .pp-table-view-style-grouped > li.pp-table-view-selected-state:first-child {
140
+ border-top: 1px solid #cacaca;
141
+ }
142
+
143
+ /**
144
+ Pushpop.TableViewLoadingMessage
145
+ ===============================
146
+ pp-table-view-loading-message
147
+ */
148
+ .pp-table-view-loading-message {
149
+ background: rgba(0, 0, 0, 0.2);
150
+ color: #333;
151
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
152
+ font-size: 20px;
153
+ line-height: 1em;
154
+ display: block;
155
+ position: absolute;
156
+ margin: -30px 0 0 -120px;
157
+ padding: 20px;
158
+ top: 50%;
159
+ left: 50%;
160
+ width: 200px;
161
+ height: 20px;
162
+ z-index: 2;
163
+ -webkit-border-radius: 10px;
164
+ -moz-border-radius: 10px;
165
+ border-radius: 10px;
166
+ -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.6);
167
+ -moz-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.8);
168
+ box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.8);
169
+ }
170
+
171
+ .pp-table-view-loading-message.pp-hidden {
172
+ display: none;
173
+ }
174
+
175
+ .pp-table-view-loading-spinner {
176
+ position: absolute;
177
+ top: 30px;
178
+ right: 30px;
179
+ }
180
+
181
+ .pp-table-view-loading-message + .sk-scroll-content {
182
+ display: none;
183
+ }
184
+
185
+ .pp-table-view-loading-message.pp-hidden + .sk-scroll-content {
186
+ display: block;
187
+ }
188
+
189
+ /**
190
+ Pushpop.TableViewSearchBar
191
+ ==========================
192
+ pp-table-view-search-bar
193
+ */
194
+ .pp-table-view-search-bar {
195
+ background: #d6dde2; /* Old browsers */
196
+ background: -moz-linear-gradient(top, #d6dde2 0%, #b3bec5 100%); /* FF3.6+ */
197
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d6dde2), color-stop(100%,#b3bec5)); /* Chrome,Safari4+ */
198
+ background: -webkit-linear-gradient(top, #d6dde2 0%,#b3bec5 100%); /* Chrome10+,Safari5.1+ */
199
+ background: -o-linear-gradient(top, #d6dde2 0%,#b3bec5 100%); /* Opera 11.10+ */
200
+ background: -ms-linear-gradient(top, #d6dde2 0%,#b3bec5 100%); /* IE10+ */
201
+ background: linear-gradient(top, #d6dde2 0%,#b3bec5 100%); /* W3C */
202
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d6dde2', endColorstr='#b3bec5',GradientType=0 ); /* IE6-9 */
203
+ border: none;
204
+ border-top: 1px solid #e3e9ed;
205
+ border-bottom: 1px solid #717d85;
206
+ margin: 0;
207
+ padding: 0;
208
+ position: relative;
209
+ font-size: 1em;
210
+ width: 100%;
211
+ height: 42px;
212
+ overflow: hidden;
213
+ z-index: 2;
214
+ -webkit-border-radius: 0;
215
+ -moz-border-radius: 0;
216
+ border-radius: 0;
217
+ -webkit-backface-visibility: hidden;
218
+ -moz-backface-visibility: hidden;
219
+ -ms-backface-visibility: hidden;
220
+ -o-backface-visibility: hidden;
221
+ backface-visibility: hidden;
222
+ -webkit-transform: translate3d(0, 0, 0);
223
+ -moz-transform: translate(0, 0);
224
+ -ms-transform: translate(0, 0);
225
+ -o-transform: translate(0, 0);
226
+ transform: translate(0, 0);
227
+ }
228
+
229
+ .pp-table-view-search-bar::before {
230
+ content: '\f008';
231
+ color: #959aa0;
232
+ font-family: PushpopGlyphs;
233
+ font-size: 20px;
234
+ text-decoration: none;
235
+ display: inline-block;
236
+ position: absolute;
237
+ top: 12px;
238
+ left: 16px;
239
+ z-index: 2;
240
+ }
241
+
242
+ .pp-table-view-search-bar > input {
243
+ background: rgb(192,192,192); /* Old browsers */
244
+ background: -moz-linear-gradient(top, rgba(192,192,192,1) 0%, rgba(255,255,255,1) 8%); /* FF3.6+ */
245
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(192,192,192,1)), color-stop(8%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
246
+ background: -webkit-linear-gradient(top, rgba(192,192,192,1) 0%,rgba(255,255,255,1) 8%); /* Chrome10+,Safari5.1+ */
247
+ background: -o-linear-gradient(top, rgba(192,192,192,1) 0%,rgba(255,255,255,1) 8%); /* Opera 11.10+ */
248
+ background: -ms-linear-gradient(top, rgba(192,192,192,1) 0%,rgba(255,255,255,1) 8%); /* IE10+ */
249
+ background: linear-gradient(to bottom, rgba(192,192,192,1) 0%,rgba(255,255,255,1) 8%); /* W3C */
250
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c0c0c0', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
251
+ border-width: 1px;
252
+ border-style: solid;
253
+ border-color: rgba(126, 142, 160, 0.75) rgba(166, 177, 188, 1) rgba(163, 175, 184, 1);
254
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
255
+ font-size: 1.1em;
256
+ line-height: 1.1em;
257
+ outline: none;
258
+ margin: 5px 7px;
259
+ padding: 6px 7px 6px 26px;
260
+ position: absolute;
261
+ top: 0;
262
+ right: 0;
263
+ left: 0;
264
+ width: auto;
265
+ z-index: 1;
266
+ -webkit-border-radius: 1.25em;
267
+ -moz-border-radius: 1.25em;
268
+ border-radius: 1.25em;
269
+ -webkit-backface-visibility: hidden;
270
+ -moz-backface-visibility: hidden;
271
+ -ms-backface-visibility: hidden;
272
+ -o-backface-visibility: hidden;
273
+ backface-visibility: hidden;
274
+ -webkit-transform: translate3d(0, 0, 0);
275
+ -moz-transform: translate(0, 0);
276
+ -ms-transform: translate(0, 0);
277
+ -o-transform: translate(0, 0);
278
+ transform: translate(0, 0);
279
+ -webkit-transition: right 0.2s linear;
280
+ -moz-transition: right 0.2s linear;
281
+ -ms-transition: right 0.2s linear;
282
+ -o-transition: right 0.2s linear;
283
+ transition: right 0.2s linear;
284
+ -webkit-appearance: none;
285
+ }
286
+
287
+ .pp-table-view-search-bar > input:focus {
288
+ border-width: 1px;
289
+ border-style: solid;
290
+ border-color: rgba(126, 142, 160, 0.75) rgba(166, 177, 188, 1) rgba(163, 175, 184, 1);
291
+ right: 5em;
292
+ outline: none;
293
+ -webkit-box-shadow: none;
294
+ -moz-box-shadow: none;
295
+ box-shadow: none;
296
+ }
297
+
298
+ .pp-table-view-search-bar > input::-webkit-input-placeholder { color: #bbb; } /* Must be contained in its own rule */
299
+ .pp-table-view-search-bar > input:-moz-placeholder { color: #bbb; } /* Must be contained in its own rule */
300
+
301
+ .pp-table-view-search-bar-clear-button {
302
+ color: #b2b2b2;
303
+ font-family: PushpopGlyphs;
304
+ font-size: 26px;
305
+ text-decoration: none;
306
+ position: absolute;
307
+ top: 13px;
308
+ right: 82px;
309
+ z-index: 2;
310
+ visibility: hidden;
311
+ }
312
+
313
+ .pp-table-view-search-bar-clear-button:hover,
314
+ .pp-table-view-search-bar-clear-button:visited {
315
+ color: #b2b2b2;
316
+ }
317
+
318
+ .pp-table-view-search-bar-clear-button::before {
319
+ content: '\f007';
320
+ }
321
+
322
+ .pp-table-view-search-bar-clear-button.pp-active {
323
+ visibility: visible;
324
+ -webkit-transition: visibility 0s linear 0.2s;
325
+ -moz-transition: visibility 0s linear 0.2s;
326
+ -ms-transition: visibility 0s linear 0.2s;
327
+ -o-transition: visibility 0s linear 0.2s;
328
+ transition: visibility 0s linear 0.2s;
329
+ }
330
+
331
+ .pp-table-view-search-bar-clear-button.pp-active:active {
332
+ color: #80868d;
333
+ }
334
+
335
+ .pp-table-view-search-bar-button {
336
+ background: #8b99ae; /* Old browsers */
337
+ background: -moz-linear-gradient(top, #8b99ae 0%, #647791 100%); /* FF3.6+ */
338
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8b99ae), color-stop(100%,#647791)); /* Chrome,Safari4+ */
339
+ background: -webkit-linear-gradient(top, #8b99ae 0%,#647791 100%); /* Chrome10+,Safari5.1+ */
340
+ background: -o-linear-gradient(top, #8b99ae 0%,#647791 100%); /* Opera 11.10+ */
341
+ background: -ms-linear-gradient(top, #8b99ae 0%,#647791 100%); /* IE10+ */
342
+ background: linear-gradient(top, #8b99ae 0%,#647791 100%); /* W3C */
343
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8b99ae', endColorstr='#647791',GradientType=0 ); /* IE6-9 */
344
+ border: 1px solid rgba(0, 0, 0, 0.5);
345
+ color: #fff;
346
+ cursor: pointer;
347
+ display: inline-block;
348
+ font-size: 0.9em;
349
+ font-weight: bold;
350
+ line-height: 1.4em;
351
+ position: absolute;
352
+ padding: 0.55em 0.8em 0.5em;
353
+ margin: 0.5em 0 0.5em 0.25em;
354
+ min-width: 1.5em;
355
+ outline: none;
356
+ overflow: hidden;
357
+ text-align: center;
358
+ text-decoration: none;
359
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
360
+ white-space: nowrap;
361
+ zoom: 1; /* Trigger "hasLayout" in IE */
362
+ -webkit-border-radius: 0.5em;
363
+ -moz-border-radius: 0.5em;
364
+ border-radius: 0.5em;
365
+ -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 1px 0 0 rgba(0, 0, 0, 0.1);
366
+ -moz-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 1px 0 0 rgba(0, 0, 0, 0.1);
367
+ box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 1px 0 0 rgba(0, 0, 0, 0.1);
368
+ visibility: visible;
369
+ opacity: 1;
370
+ -webkit-backface-visibility: hidden;
371
+ -moz-backface-visibility: hidden;
372
+ -ms-backface-visibility: hidden;
373
+ -o-backface-visibility: hidden;
374
+ backface-visibility: hidden;
375
+ -webkit-transform: translate3d(0, 0, 0);
376
+ -moz-transform: translate(0, 0);
377
+ -ms-transform: translate(0, 0);
378
+ -o-transform: translate(0, 0);
379
+ transform: translate(0, 0);
380
+ -webkit-transition: -webkit-transform 0.3s linear;
381
+ -moz-transition: -moz-transform 0.3s linear;
382
+ -ms-transition: -ms-transform 0.3s linear;
383
+ -o-transition: -o-transform 0.3s linear;
384
+ transition: transform 0.3s linear;
385
+ width: 3.2em;
386
+ top: 0.1em;
387
+ right: -5em;
388
+ }
389
+
390
+ .pp-table-view-search-bar-button:active {
391
+ background: #758296; /* Old browsers */
392
+ background: -moz-linear-gradient(top, #758296 0%, #56677f 100%); /* FF3.6+ */
393
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#758296), color-stop(100%,#56677f)); /* Chrome,Safari4+ */
394
+ background: -webkit-linear-gradient(top, #758296 0%,#56677f 100%); /* Chrome10+,Safari5.1+ */
395
+ background: -o-linear-gradient(top, #758296 0%,#56677f 100%); /* Opera 11.10+ */
396
+ background: -ms-linear-gradient(top, #758296 0%,#56677f 100%); /* IE10+ */
397
+ background: linear-gradient(top, #758296 0%,#56677f 100%); /* W3C */
398
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#758296', endColorstr='#56677f',GradientType=0 ); /* IE6-9 */
399
+ color: #fff;
400
+ text-decoration: none;
401
+ }
402
+
403
+ .pp-table-view-search-bar-button:hover, .pp-table-view-search-bar-button:visited {
404
+ color: #fff;
405
+ text-decoration: none;
406
+ }
407
+
408
+ .pp-table-view-search-bar > input:focus + .pp-table-view-search-bar-button {
409
+ opacity: 1;
410
+ -webkit-transform: translate3d(-5.5em, 0, 0);
411
+ -moz-transform: translate(-5.5em, 0);
412
+ -ms-transform: translate(-5.5em, 0);
413
+ -o-transform: translate(-5.5em, 0);
414
+ transform: translate(-5.5em, 0);
415
+ }
416
+
417
+ .pp-table-view-search-bar-overlay {
418
+ background: rgba(0, 0, 0, 0.8);
419
+ position: absolute;
420
+ font-size: 1em;
421
+ top: 3.4em;
422
+ left: 0;
423
+ width: 100%;
424
+ height: 100%;
425
+ z-index: 99999;
426
+ visibility: hidden;
427
+ opacity: 0;
428
+ -webkit-backface-visibility: hidden;
429
+ -moz-backface-visibility: hidden;
430
+ -ms-backface-visibility: hidden;
431
+ -o-backface-visibility: hidden;
432
+ backface-visibility: hidden;
433
+ -webkit-transform: translate3d(0, 0, 0);
434
+ -moz-transform: translate(0, 0);
435
+ -ms-transform: translate(0, 0);
436
+ -o-transform: translate(0, 0);
437
+ transform: translate(0, 0);
438
+ -webkit-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
439
+ -moz-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
440
+ -ms-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
441
+ -o-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
442
+ transition: visibility 0s linear 0.2s, opacity 0.2s linear;
443
+ }
444
+
445
+ .pp-table-view-search-bar-overlay.pp-active {
446
+ visibility: visible;
447
+ opacity: 1;
448
+ -webkit-transition-delay: 0s;
449
+ -moz-transition-delay: 0s;
450
+ -ms-transition-delay: 0s;
451
+ -o-transition-delay: 0s;
452
+ transition-delay: 0s;
453
+ }
454
+
455
+ /**
456
+ Pushpop.TableViewCell (Base Class)
457
+ ==================================
458
+ pp-table-view-cell-default
459
+ */
460
+ .pp-table-view > li {
461
+ background: #f7f7f7;
462
+ border: 1px solid #cacaca;
463
+ border-top: 1px solid #fdfdfd;
464
+ position: relative;
465
+ zoom: 1; /* Trigger "hasLayout" in IE */
466
+ -webkit-backface-visibility: hidden;
467
+ -moz-backface-visibility: hidden;
468
+ -ms-backface-visibility: hidden;
469
+ -o-backface-visibility: hidden;
470
+ backface-visibility: hidden;
471
+ -webkit-transform: translate3d(0, 0, 0);
472
+ -moz-transform: translate(0, 0);
473
+ -ms-transform: translate(0, 0);
474
+ -o-transform: translate(0, 0);
475
+ transform: translate(0, 0);
476
+ -webkit-transition: padding 0.2s linear;
477
+ -moz-transition: padding 0.2s linear;
478
+ -ms-transition: padding 0.2s linear;
479
+ -o-transition: padding 0.2s linear;
480
+ transition: padding 0.2s linear;
481
+ }
482
+
483
+ .pp-table-view-cell-default {
484
+ padding: 0 10px;
485
+ }
486
+
487
+ .pp-table-view-cell-default > h1 {
488
+ color: #000;
489
+ display: block;
490
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
491
+ font-size: 1em;
492
+ font-weight: bold;
493
+ line-height: 1.2em;
494
+ text-rendering: auto;
495
+ }
496
+
497
+ .pp-table-view-cell-default.pp-table-view-selected-state > h1 {
498
+ color: #fff;
499
+ }
500
+
501
+ .pp-table-view.pp-table-view-editing > li {
502
+ padding-left: 2.6em;
503
+ }
504
+
505
+ .pp-table-view > .pp-table-view-selected-state {
506
+ background: #058cf5; /* Old browsers */
507
+ background: -moz-linear-gradient(top, rgb(5, 140, 245) 0%, rgb(1, 93, 230) 100%); /* FF3.6+ */
508
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(5, 140, 245)), color-stop(100%, rgb(1, 93, 230))); /* Chrome,Safari4+ */
509
+ background: -webkit-linear-gradient(top, rgb(5, 140, 245) 0%, rgb(1, 93, 230) 100%); /* Chrome10+,Safari5.1+ */
510
+ background: -o-linear-gradient(top, rgb(5, 140, 245) 0%, rgb(1, 93, 230) 100%); /* Opera 11.10+ */
511
+ background: -ms-linear-gradient(top, rgb(5, 140, 245) 0%, rgb(1, 93, 230) 100%); /* IE10+ */
512
+ background: linear-gradient(top, rgb(5, 140, 245) 0%, rgb(1, 93, 230) 100%); /* W3C */
513
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#058cf5', endColorstr='#015de6', GradientType=0); /* IE6-9 */
514
+ border-top: 1px solid #058cf5;
515
+ color: #fff;
516
+ text-shadow: none;
517
+ }
518
+
519
+ /**
520
+ Pushpop.SubtitleTableViewCell
521
+ =============================
522
+ pp-subtitle-table-view-cell
523
+ */
524
+ .pp-subtitle-table-view-cell {
525
+ padding: 0 10px;
526
+ }
527
+
528
+ .pp-subtitle-table-view-cell > h1 {
529
+ color: #000;
530
+ display: block;
531
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
532
+ font-size: 1.1em;
533
+ font-weight: bold;
534
+ line-height: 1.1em;
535
+ margin: 0;
536
+ text-rendering: auto;
537
+ }
538
+
539
+ .pp-subtitle-table-view-cell > h2 {
540
+ color: #808080;
541
+ display: block;
542
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
543
+ font-size: 0.8em;
544
+ font-weight: normal;
545
+ line-height: 1.5em;
546
+ margin: 2px 0 0;
547
+ text-rendering: auto;
548
+ }
549
+
550
+ .pp-subtitle-table-view-cell.pp-table-view-selected-state > h1,
551
+ .pp-subtitle-table-view-cell.pp-table-view-selected-state > h2 {
552
+ color: #fff;
553
+ }
554
+
555
+ /**
556
+ Pushpop.ValueTableViewCell
557
+ ==========================
558
+ pp-value-table-view-cell
559
+ */
560
+ .pp-value-table-view-cell {
561
+ padding: 10px 10px 12px;
562
+ }
563
+
564
+ .pp-value-table-view-cell > h1,
565
+ .pp-value-table-view-cell > h2 {
566
+ float: left;
567
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
568
+ font-size: 1em;
569
+ line-height: 1.1em;
570
+ width: 50%;
571
+ text-rendering: auto;
572
+ }
573
+
574
+ .pp-value-table-view-cell > h1 {
575
+ color: #000;
576
+ font-weight: bold;
577
+ margin: 0;
578
+ }
579
+
580
+ .pp-value-table-view-cell > h2 {
581
+ color: #385487;
582
+ font-weight: normal;
583
+ margin: 2px 0 0;
584
+ text-align: right;
585
+ }
586
+
587
+ .pp-value-table-view-cell.pp-table-view-selected-state > h1,
588
+ .pp-value-table-view-cell.pp-table-view-selected-state > h2 {
589
+ color: #fff;
590
+ }
591
+
592
+ /**
593
+ Pushpop.Value2TableViewCell
594
+ ===========================
595
+ pp-value2-table-view-cell
596
+ */
597
+ .pp-value2-table-view-cell {
598
+ padding: 10px 10px 11px;
599
+ }
600
+
601
+ .pp-value2-table-view-cell > h1,
602
+ .pp-value2-table-view-cell > h2 {
603
+ float: left;
604
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
605
+ font-weight: bold;
606
+ text-rendering: auto;
607
+ }
608
+
609
+ .pp-value2-table-view-cell > h1 {
610
+ color: #516691;
611
+ font-size: 0.75em;
612
+ line-height: 1em;
613
+ margin: 7px 0 0;
614
+ width: 30%;
615
+ text-align: right;
616
+ }
617
+
618
+ .pp-value2-table-view-cell > h2 {
619
+ color: #000;
620
+ font-size: 0.9em;
621
+ line-height: 1em;
622
+ margin: 4px 0 2px;
623
+ width: 70%;
624
+ overflow: hidden;
625
+ white-space: nowrap;
626
+ text-overflow: ellipsis;
627
+ }
628
+
629
+ .pp-value2-table-view-cell > h2::before {
630
+ content: '\00a0\00a0'; /* Add spacer before the value text */
631
+ }
632
+
633
+ .pp-value2-table-view-cell.pp-table-view-selected-state > h1,
634
+ .pp-value2-table-view-cell.pp-table-view-selected-state > h2 {
635
+ color: #fff;
636
+ }
637
+
638
+ /**
639
+ Pushpop.InlineTextInputTableViewCell
640
+ ====================================
641
+ pp-inline-text-input-table-view-cell
642
+ */
643
+ .pp-inline-text-input-table-view-cell {
644
+ padding: 10px 10px 11px;
645
+ }
646
+
647
+ .pp-inline-text-input-table-view-cell > h1,
648
+ .pp-inline-text-input-table-view-cell > h2 {
649
+ float: left;
650
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
651
+ font-weight: bold;
652
+ text-rendering: auto;
653
+ }
654
+
655
+ .pp-inline-text-input-table-view-cell > h1 {
656
+ color: #516691;
657
+ font-size: 0.75em;
658
+ line-height: 1em;
659
+ margin: 7px 0 0;
660
+ width: 30%;
661
+ text-align: right;
662
+ }
663
+
664
+ .pp-inline-text-input-table-view-cell > h2 {
665
+ color: #000;
666
+ font-size: 0.9em;
667
+ line-height: 1.2em;
668
+ position: relative;
669
+ margin: 3px 0 0;
670
+ padding: 0;
671
+ width: 70%;
672
+ overflow: hidden;
673
+ white-space: nowrap;
674
+ text-overflow: ellipsis;
675
+ }
676
+
677
+ .pp-inline-text-input-table-view-cell > h2::before {
678
+ content: '\00a0\00a0'; /* Add spacer before the value text */
679
+ }
680
+
681
+ .pp-inline-text-input-table-view-cell input,
682
+ .pp-inline-text-input-table-view-cell input:focus {
683
+ background: none;
684
+ border: none;
685
+ color: #000;
686
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
687
+ font-size: 1em;
688
+ font-weight: bold;
689
+ text-rendering: auto;
690
+ display: inline-block;
691
+ position: absolute;
692
+ /*line-height: 1em;*/
693
+ margin: 0;
694
+ padding: 0;
695
+ outline: none;
696
+ width: 100%;
697
+ -webkit-border-radius: none;
698
+ -moz-border-radius: none;
699
+ border-radius: none;
700
+ -webkit-box-shadow: none;
701
+ -moz-box-shadow: none;
702
+ box-shadow: none;
703
+ -webkit-transition: none;
704
+ -moz-transition: none;
705
+ -ms-transition: none;
706
+ -o-transition: none;
707
+ transition: none;
708
+ }
709
+
710
+ .pp-inline-text-input-table-view-cell.pp-table-view-selected-state > h1,
711
+ .pp-inline-text-input-table-view-cell.pp-table-view-selected-state > h2,
712
+ .pp-inline-text-input-table-view-cell.pp-table-view-selected-state input {
713
+ color: #fff;
714
+ }
715
+
716
+ /**
717
+ Pushpop.TextAreaInputTableViewCell
718
+ ==================================
719
+ pp-text-area-input-table-view-cell
720
+ */
721
+ .pp-text-area-input-table-view-cell {
722
+ padding: 10px 10px 11px;
723
+ }
724
+
725
+ .pp-text-area-input-table-view-cell > h1,
726
+ .pp-text-area-input-table-view-cell > h2 {
727
+ float: left;
728
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
729
+ font-weight: bold;
730
+ text-rendering: auto;
731
+ }
732
+
733
+ .pp-text-area-input-table-view-cell > h1 {
734
+ color: #516691;
735
+ font-size: 0.75em;
736
+ line-height: 1em;
737
+ margin: 7px 0 2px;
738
+ width: 30%;
739
+ text-align: right;
740
+ }
741
+
742
+ .pp-text-area-input-table-view-cell > h2 {
743
+ color: #000;
744
+ font-size: 0.9em;
745
+ line-height: 1em;
746
+ margin: 4px 0 0;
747
+ position: absolute;
748
+ left: 30%;
749
+ right: 20px;
750
+ width: auto;
751
+ overflow: hidden;
752
+ white-space: nowrap;
753
+ text-overflow: ellipsis;
754
+ }
755
+
756
+ .pp-text-area-input-table-view-cell > h2::before {
757
+ content: '\00a0\00a0\00a0'; /* Add spacer before the value text */
758
+ }
759
+
760
+ .pp-text-area-input-table-view-cell.pp-table-view-selected-state > h1,
761
+ .pp-text-area-input-table-view-cell.pp-table-view-selected-state > h2 {
762
+ color: #fff;
763
+ }
764
+
765
+ .pp-text-area-input-table-view-cell-textarea {
766
+ background: #fff;
767
+ border: none;
768
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
769
+ font-size: 1.2em;
770
+ outline: none;
771
+ margin: 0;
772
+ position: absolute;
773
+ top: 0;
774
+ right: 0;
775
+ bottom: 0;
776
+ left: 0;
777
+ width: auto;
778
+ height: auto;
779
+ -webkit-backface-visibility: hidden;
780
+ -moz-backface-visibility: hidden;
781
+ -ms-backface-visibility: hidden;
782
+ -o-backface-visibility: hidden;
783
+ backface-visibility: hidden;
784
+ -webkit-transform: translate3d(0, 0, 0);
785
+ -moz-transform: translate(0, 0);
786
+ -ms-transform: translate(0, 0);
787
+ -o-transform: translate(0, 0);
788
+ transform: translate(0, 0);
789
+ }
790
+
791
+ /**
792
+ Pushpop.SelectInputTableViewCell
793
+ ==================================
794
+ pp-select-input-table-view-cell
795
+ */
796
+ .pp-select-input-table-view-cell {
797
+ padding: 10px 10px 11px;
798
+ }
799
+
800
+ .pp-select-input-table-view-cell > h1,
801
+ .pp-select-input-table-view-cell > h2 {
802
+ float: left;
803
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
804
+ font-weight: bold;
805
+ text-rendering: auto;
806
+ }
807
+
808
+ .pp-select-input-table-view-cell > h1 {
809
+ color: #516691;
810
+ font-size: 0.75em;
811
+ line-height: 1em;
812
+ margin: 7px 0 0;
813
+ width: 30%;
814
+ text-align: right;
815
+ }
816
+
817
+ .pp-select-input-table-view-cell > h2 {
818
+ color: #000;
819
+ font-size: 0.9em;
820
+ line-height: 1em;
821
+ margin: 4px 0 2px;
822
+ width: 70%;
823
+ overflow: hidden;
824
+ white-space: nowrap;
825
+ text-overflow: ellipsis;
826
+ }
827
+
828
+ .pp-select-input-table-view-cell > h2::before {
829
+ content: '\00a0\00a0'; /* Add spacer before the value text */
830
+ }
831
+
832
+ .pp-select-input-table-view-cell.pp-table-view-selected-state > h1,
833
+ .pp-select-input-table-view-cell.pp-table-view-selected-state > h2 {
834
+ color: #fff;
835
+ }
836
+
837
+ /**
838
+ Pushpop.DateInputTableViewCell
839
+ ==============================
840
+ pp-date-input-table-view-cell
841
+ */
842
+ .pp-date-input-table-view-cell {
843
+ padding: 10px 10px 11px;
844
+ }
845
+
846
+ .pp-date-input-table-view-cell > h1,
847
+ .pp-date-input-table-view-cell > h2 {
848
+ float: left;
849
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
850
+ font-weight: bold;
851
+ text-rendering: auto;
852
+ }
853
+
854
+ .pp-date-input-table-view-cell > h1 {
855
+ color: #516691;
856
+ font-size: 0.75em;
857
+ line-height: 1em;
858
+ margin: 7px 0 0;
859
+ width: 30%;
860
+ text-align: right;
861
+ }
862
+
863
+ .pp-date-input-table-view-cell > h2 {
864
+ color: #000;
865
+ font-size: 0.9em;
866
+ line-height: 1em;
867
+ margin: 4px 0 2px;
868
+ width: 70%;
869
+ overflow: hidden;
870
+ white-space: nowrap;
871
+ text-overflow: ellipsis;
872
+ }
873
+
874
+ .pp-date-input-table-view-cell > h2::before {
875
+ content: '\00a0\00a0'; /* Add spacer before the value text */
876
+ }
877
+
878
+ .pp-date-input-table-view-cell.pp-table-view-selected-state > h1,
879
+ .pp-date-input-table-view-cell.pp-table-view-selected-state > h2 {
880
+ color: #fff;
881
+ }
882
+
883
+ /**
884
+ Pushpop.TimeInputTableViewCell
885
+ ==============================
886
+ pp-time-input-table-view-cell
887
+ */
888
+ .pp-time-input-table-view-cell {
889
+ padding: 10px 10px 11px;
890
+ }
891
+
892
+ .pp-time-input-table-view-cell > h1,
893
+ .pp-time-input-table-view-cell > h2 {
894
+ float: left;
895
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
896
+ font-weight: bold;
897
+ text-rendering: auto;
898
+ }
899
+
900
+ .pp-time-input-table-view-cell > h1 {
901
+ color: #516691;
902
+ font-size: 0.75em;
903
+ line-height: 1em;
904
+ margin: 7px 0 0;
905
+ width: 30%;
906
+ text-align: right;
907
+ }
908
+
909
+ .pp-time-input-table-view-cell > h2 {
910
+ color: #000;
911
+ font-size: 0.9em;
912
+ line-height: 1em;
913
+ margin: 4px 0 2px;
914
+ width: 70%;
915
+ overflow: hidden;
916
+ white-space: nowrap;
917
+ text-overflow: ellipsis;
918
+ }
919
+
920
+ .pp-time-input-table-view-cell > h2::before {
921
+ content: '\00a0\00a0'; /* Add spacer before the value text */
922
+ }
923
+
924
+ .pp-time-input-table-view-cell.pp-table-view-selected-state > h1,
925
+ .pp-time-input-table-view-cell.pp-table-view-selected-state > h2 {
926
+ color: #fff;
927
+ }
928
+
929
+ /**
930
+ Pushpop.TableViewCell.AccessoryType
931
+ ===================================
932
+ pp-table-view-cell-accessory
933
+ */
934
+ .pp-table-view-cell-accessory {
935
+ display: block;
936
+ font-family: PushpopGlyphs;
937
+ font-size: 1em;
938
+ line-height: 2em;
939
+ position: absolute;
940
+ margin-top: -1em;
941
+ top: 50%;
942
+ right: 0;
943
+ width: 2em;
944
+ height: 2em;
945
+ -webkit-backface-visibility: hidden;
946
+ -moz-backface-visibility: hidden;
947
+ -ms-backface-visibility: hidden;
948
+ -o-backface-visibility: hidden;
949
+ backface-visibility: hidden;
950
+ -webkit-transform: translate3d(0, 0, 0);
951
+ -moz-transform: translate(0, 0);
952
+ -ms-transform: translate(0, 0);
953
+ -o-transform: translate(0, 0);
954
+ transform: translate(0, 0);
955
+ }
956
+
957
+ .pp-table-view-cell-accessory::after {
958
+ margin-left: 0.8em;
959
+ }
960
+
961
+ .pp-table-view-selected-state > .pp-table-view-cell-accessory::after {
962
+ color: #fff;
963
+ }
964
+
965
+ /**
966
+ Pushpop.TableViewCell.AccessoryType.DisclosureIndicator
967
+ =======================================================
968
+ pp-table-view-cell-accessory-disclosure-indicator
969
+ */
970
+ .pp-table-view-cell-accessory-disclosure-indicator::after {
971
+ color: #777;
972
+ content: '\f000';
973
+ position: absolute;
974
+ }
975
+
976
+ /**
977
+ Pushpop.TableViewCell.AccessoryType.DetailDisclosureButton
978
+ ==========================================================
979
+ pp-table-view-cell-accessory-detail-disclosure-button
980
+ */
981
+ .pp-table-view-cell-accessory-detail-disclosure-button::before {
982
+ background: #2972d9; /* Old browsers */
983
+ background: -moz-linear-gradient(top, #6a9de5 0%, #2972d9 100%); /* FF3.6+ */
984
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6a9de5), color-stop(100%, #2972d9)); /* Chrome,Safari4+ */
985
+ background: -webkit-linear-gradient(top, #6a9de5 0%, #2972d9 100%); /* Chrome10+,Safari5.1+ */
986
+ background: -o-linear-gradient(top, #6a9de5 0%, #2972d9 100%); /* Opera 11.10+ */
987
+ background: -ms-linear-gradient(top, #6a9de5 0%, #2972d9 100%); /* IE10+ */
988
+ background: linear-gradient(top, #6a9de5 0%, #2972d9 100%); /* W3C */
989
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6a9de5', endColorstr='#2972d9', GradientType=0); /* IE6-9 */
990
+ border: 2px solid #fff;
991
+ content: '';
992
+ display: block;
993
+ position: absolute;
994
+ margin: 0.3em 0 0 0.3em;
995
+ width: 1.2em;
996
+ height: 1.2em;
997
+ -webkit-border-radius: 1.2em;
998
+ -moz-border-radius: 1.2em;
999
+ border-radius: 1.2em;
1000
+ -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
1001
+ -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
1002
+ box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
1003
+ }
1004
+
1005
+ .pp-table-view-cell-accessory-detail-disclosure-button::after {
1006
+ color: #fff;
1007
+ content: '\f000';
1008
+ position: absolute;
1009
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
1010
+ }
1011
+
1012
+ /**
1013
+ Pushpop.TableViewCell.AccessoryType.Checkmark
1014
+ =============================================
1015
+ pp-table-view-cell-accessory-checkmark
1016
+ */
1017
+ .pp-table-view-cell-accessory-checkmark::after {
1018
+ color: #324f85;
1019
+ content: '\f003';
1020
+ position: absolute;
1021
+ }
1022
+
1023
+ /**
1024
+ Pushpop.TableViewCell.AccessoryType.ConfirmDeleteButton
1025
+ =======================================================
1026
+ pp-table-view-cell-accessory-confirm-delete-button
1027
+ */
1028
+ .pp-table-view-cell-accessory-confirm-delete-button {
1029
+ background: #ed8288; /* Old browsers */
1030
+ background: -moz-linear-gradient(top, #ed8288 0%, #c83640 50%, #be1623 51%, #bd1421 100%); /* FF3.6+ */
1031
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ed8288), color-stop(50%,#c83640), color-stop(51%,#be1623), color-stop(100%,#bd1421)); /* Chrome,Safari4+ */
1032
+ background: -webkit-linear-gradient(top, #ed8288 0%,#c83640 50%,#be1623 51%,#bd1421 100%); /* Chrome10+,Safari5.1+ */
1033
+ background: -o-linear-gradient(top, #ed8288 0%,#c83640 50%,#be1623 51%,#bd1421 100%); /* Opera 11.10+ */
1034
+ background: -ms-linear-gradient(top, #ed8288 0%,#c83640 50%,#be1623 51%,#bd1421 100%); /* IE10+ */
1035
+ background: linear-gradient(top, #ed8288 0%,#c83640 50%,#be1623 51%,#bd1421 100%); /* W3C */
1036
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed8288', endColorstr='#bd1421',GradientType=0 ); /* IE6-9 */
1037
+ border: 1px solid rgba(0, 0, 0, 0.5);
1038
+ color: #fff;
1039
+ cursor: pointer;
1040
+ display: inline-block;
1041
+ font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
1042
+ font-size: 0.7em;
1043
+ font-weight: bold;
1044
+ position: absolute;
1045
+ top: 0;
1046
+ right: 0;
1047
+ padding: 0.3em 0 0.25em;
1048
+ margin: 0.45em 0.5em 0.5em;
1049
+ width: 4.25em;
1050
+ outline: none;
1051
+ overflow: hidden;
1052
+ text-decoration: none;
1053
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
1054
+ white-space: nowrap;
1055
+ zoom: 1; /* Trigger "hasLayout" in IE */
1056
+ -webkit-border-radius: 0.5em;
1057
+ -moz-border-radius: 0.5em;
1058
+ border-radius: 0.5em;
1059
+ -webkit-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 1px 0 0 rgba(0, 0, 0, 0.1);
1060
+ -moz-box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 1px 0 0 rgba(0, 0, 0, 0.1);
1061
+ box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.3), inset 0 1px 0 0 rgba(0, 0, 0, 0.1);
1062
+ visibility: hidden;
1063
+ opacity: 0;
1064
+ -webkit-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1065
+ -moz-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1066
+ -ms-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1067
+ -o-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1068
+ transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1069
+ }
1070
+
1071
+ .pp-table-view-cell-editing-accessory-delete-button.pp-active ~ .pp-table-view-cell-accessory-confirm-delete-button {
1072
+ visibility: visible;
1073
+ opacity: 1;
1074
+ -webkit-transition-delay: 0s;
1075
+ -moz-transition-delay: 0s;
1076
+ -ms-transition-delay: 0s;
1077
+ -o-transition-delay: 0s;
1078
+ transition-delay: 0s;
1079
+ }
1080
+
1081
+ .pp-table-view-cell-accessory-confirm-delete-button:active {
1082
+ background: #a65960; /* Old browsers */
1083
+ background: -moz-linear-gradient(top, #a65960 0%, #94262f 50%, #8d141e 51%, #8d131e 100%); /* FF3.6+ */
1084
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a65960), color-stop(50%,#94262f), color-stop(51%,#8d141e), color-stop(100%,#8d131e)); /* Chrome,Safari4+ */
1085
+ background: -webkit-linear-gradient(top, #a65960 0%,#94262f 50%,#8d141e 51%,#8d131e 100%); /* Chrome10+,Safari5.1+ */
1086
+ background: -o-linear-gradient(top, #a65960 0%,#94262f 50%,#8d141e 51%,#8d131e 100%); /* Opera 11.10+ */
1087
+ background: -ms-linear-gradient(top, #a65960 0%,#94262f 50%,#8d141e 51%,#8d131e 100%); /* IE10+ */
1088
+ background: linear-gradient(top, #a65960 0%,#94262f 50%,#8d141e 51%,#8d131e 100%); /* W3C */
1089
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a65960', endColorstr='#8d131e',GradientType=0 ); /* IE6-9 */
1090
+ }
1091
+
1092
+ .pp-table-view-cell-accessory-confirm-delete-button::after {
1093
+ content: 'Delete';
1094
+ position: absolute;
1095
+ top: 0.25em;
1096
+ margin: 0;
1097
+ width: 4.25em;
1098
+ text-align: center;
1099
+ }
1100
+
1101
+ /**
1102
+ Pushpop.TableViewCell.EditingAccessoryType
1103
+ ===================================
1104
+ pp-table-view-cell-editing-accessory
1105
+ */
1106
+ .pp-table-view-cell-editing-accessory {
1107
+ display: block;
1108
+ font-family: PushpopGlyphs;
1109
+ font-size: 1em;
1110
+ line-height: 2.1em;
1111
+ position: absolute;
1112
+ margin-top: -1em;
1113
+ top: 50%;
1114
+ left: 0;
1115
+ width: 2em;
1116
+ height: 2em;
1117
+ visibility: hidden;
1118
+ opacity: 0;
1119
+ -webkit-backface-visibility: hidden;
1120
+ -moz-backface-visibility: hidden;
1121
+ -ms-backface-visibility: hidden;
1122
+ -o-backface-visibility: hidden;
1123
+ backface-visibility: hidden;
1124
+ -webkit-transform: translate3d(0, 0, 0);
1125
+ -moz-transform: translate(0, 0);
1126
+ -ms-transform: translate(0, 0);
1127
+ -o-transform: translate(0, 0);
1128
+ transform: translate(0, 0);
1129
+ -webkit-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1130
+ -moz-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1131
+ -ms-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1132
+ -o-transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1133
+ transition: visibility 0s linear 0.2s, opacity 0.2s linear;
1134
+ }
1135
+
1136
+ .pp-table-view-editing .pp-table-view-cell-editing-accessory {
1137
+ visibility: visible;
1138
+ opacity: 1;
1139
+ -webkit-transition-delay: 0s;
1140
+ -moz-transition-delay: 0s;
1141
+ -ms-transition-delay: 0s;
1142
+ -o-transition-delay: 0s;
1143
+ transition-delay: 0s;
1144
+ }
1145
+
1146
+ .pp-table-view-cell-editing-accessory::after {
1147
+ margin-left: 0.6em;
1148
+ }
1149
+
1150
+ /**
1151
+ Pushpop.TableViewCell.EditingAccessoryType.AddButton
1152
+ ====================================================
1153
+ pp-table-view-cell-editing-accessory-add-button
1154
+ */
1155
+ .pp-table-view-cell-editing-accessory-add-button::before {
1156
+ background: #5fb860; /* Old browsers */
1157
+ background: -moz-linear-gradient(top, rgba(97,184,96,1) 0%, rgba(4,143,1,1) 100%); /* FF3.6+ */
1158
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(97,184,96,1)), color-stop(100%,rgba(4,143,1,1))); /* Chrome,Safari4+ */
1159
+ background: -webkit-linear-gradient(top, rgba(97,184,96,1) 0%,rgba(4,143,1,1) 100%); /* Chrome10+,Safari5.1+ */
1160
+ background: -o-linear-gradient(top, rgba(97,184,96,1) 0%,rgba(4,143,1,1) 100%); /* Opera 11.10+ */
1161
+ background: -ms-linear-gradient(top, rgba(97,184,96,1) 0%,rgba(4,143,1,1) 100%); /* IE10+ */
1162
+ background: linear-gradient(to bottom, rgba(97,184,96,1) 0%,rgba(4,143,1,1) 100%); /* W3C */
1163
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#61b860', endColorstr='#048f01',GradientType=0 ); /* IE6-9 */
1164
+ border: 2px solid #fff;
1165
+ content: '';
1166
+ display: block;
1167
+ position: absolute;
1168
+ margin: 0.3em 0 0 0.3em;
1169
+ width: 1.2em;
1170
+ height: 1.2em;
1171
+ -webkit-border-radius: 1.2em;
1172
+ -moz-border-radius: 1.2em;
1173
+ border-radius: 1.2em;
1174
+ -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
1175
+ -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
1176
+ box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
1177
+ }
1178
+
1179
+ .pp-table-view-cell-editing-accessory-add-button::after {
1180
+ color: #fff;
1181
+ content: '\f002';
1182
+ position: absolute;
1183
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
1184
+ }
1185
+
1186
+ /**
1187
+ Pushpop.TableViewCell.EditingAccessoryType.DeleteButton
1188
+ =======================================================
1189
+ pp-table-view-cell-editing-accessory-delete-button
1190
+ */
1191
+ .pp-table-view-cell-editing-accessory-delete-button {
1192
+ -webkit-transition: visibility 0s linear 0.2s, opacity 0.2s linear, -webkit-transform 0.2s linear;
1193
+ -moz-transition: visibility 0s linear 0.2s, opacity 0.2s linear, -moz-transform 0.2s linear;
1194
+ -ms-transition: visibility 0s linear 0.2s, opacity 0.2s linear, -ms-transform 0.2s linear;
1195
+ -o-transition: visibility 0s linear 0.2s, opacity 0.2s linear, -o-transform 0.2s linear;
1196
+ transition: visibility 0s linear 0.2s, opacity 0.2s linear, transform 0.2s linear;
1197
+ -webkit-transform: rotate(0deg);
1198
+ -moz-transform: rotate(0deg);
1199
+ -ms-transform: rotate(0deg);
1200
+ -o-transform: rotate(0deg);
1201
+ transform: rotate(0deg);
1202
+ }
1203
+
1204
+ .pp-table-view-cell-editing-accessory-delete-button::before {
1205
+ background: #bd1522; /* Old browsers */
1206
+ background: -moz-linear-gradient(top, #d77077 0%, #bd1522 100%); /* FF3.6+ */
1207
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d77077), color-stop(100%,#bd1522)); /* Chrome,Safari4+ */
1208
+ background: -webkit-linear-gradient(top, #d77077 0%,#bd1522 100%); /* Chrome10+,Safari5.1+ */
1209
+ background: -o-linear-gradient(top, #d77077 0%,#bd1522 100%); /* Opera 11.10+ */
1210
+ background: -ms-linear-gradient(top, #d77077 0%,#bd1522 100%); /* IE10+ */
1211
+ background: linear-gradient(top, #d77077 0%,#bd1522 100%); /* W3C */
1212
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d77077', endColorstr='#bd1522',GradientType=0 ); /* IE6-9 */
1213
+ border: 2px solid #fff;
1214
+ content: '';
1215
+ display: block;
1216
+ position: absolute;
1217
+ margin: 0.3em 0 0 0.3em;
1218
+ width: 1.2em;
1219
+ height: 1.2em;
1220
+ -webkit-border-radius: 1.2em;
1221
+ -moz-border-radius: 1.2em;
1222
+ border-radius: 1.2em;
1223
+ -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
1224
+ -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
1225
+ box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.5);
1226
+ }
1227
+
1228
+ .pp-table-view-cell-editing-accessory-delete-button::after {
1229
+ color: #fff;
1230
+ content: '\f001';
1231
+ position: absolute;
1232
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
1233
+ }
1234
+
1235
+ .pp-table-view-cell-editing-accessory-delete-button.pp-active {
1236
+ -webkit-transform: rotate(-90deg);
1237
+ -moz-transform: rotate(-90deg);
1238
+ -ms-transform: rotate(-90deg);
1239
+ -o-transform: rotate(-90deg);
1240
+ transform: rotate(-90deg);
1241
+ }
1242
+
1243
+ /**
1244
+ **NOT YET IMPLEMENTED**
1245
+ Pushpop.TableViewIndex
1246
+ ======================
1247
+ pp-table-view-index
1248
+ **NOT YET IMPLEMENTED**
1249
+ */
1250
+ .pp-table-view-index {
1251
+ color: #555;
1252
+ font-weight: bold;
1253
+ font-size: 1em;
1254
+ line-height: 1em;
1255
+ position: fixed;
1256
+ top: 0;
1257
+ right: 0.1em;
1258
+ width: 1em;
1259
+ height: 100%;
1260
+ z-index: 999999;
1261
+ }
1262
+
1263
+ .pp-table-view-index::after {
1264
+ content: '?\00000aA\00000aB\00000aC\00000aD\00000aE\00000aF\00000aG\00000aH\00000aI\00000aJ\00000aK\00000aL\00000aM\00000aN\00000aO\00000aP\00000aQ\00000aR\00000aS\00000aT\00000aU\00000aV\00000aW\00000aX\00000aY\00000aZ\00000a#';
1265
+ display: block;
1266
+ position: absolute;
1267
+ text-align: center;
1268
+ top: 0;
1269
+ right: 0;
1270
+ width: 100%;
1271
+ height: 100%;
1272
+ white-space: pre;
1273
+ }