framework7_rails 1.4.0 → 1.6.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 (37) hide show
  1. checksums.yaml +4 -4
  2. data/framework7_rails.gemspec +1 -1
  3. data/lib/framework7_rails/version.rb +1 -1
  4. data/vendor/assets/fonts/Framework7Icons-Regular.eot +0 -0
  5. data/vendor/assets/fonts/Framework7Icons-Regular.ttf +0 -0
  6. data/vendor/assets/fonts/Framework7Icons-Regular.woff +0 -0
  7. data/vendor/assets/fonts/Framework7Icons-Regular.woff2 +0 -0
  8. data/vendor/assets/javascripts/framework7.js +3404 -1673
  9. data/vendor/assets/javascripts/framework7.js.map +1 -1
  10. data/vendor/assets/stylesheets/framework7-icons.css +31 -0
  11. data/vendor/assets/stylesheets/framework7.ios.colors.css +1784 -629
  12. data/vendor/assets/stylesheets/framework7.ios.css +2176 -230
  13. data/vendor/assets/stylesheets/framework7.ios.rtl.css +158 -5
  14. data/vendor/assets/stylesheets/framework7.material.colors.css +4738 -2841
  15. data/vendor/assets/stylesheets/framework7.material.css +2070 -331
  16. data/vendor/assets/stylesheets/framework7.material.rtl.css +128 -5
  17. metadata +8 -23
  18. data/vendor/assets/images/i-form-calendar-ios.svg +0 -16
  19. data/vendor/assets/images/i-form-calendar-material.svg +0 -4
  20. data/vendor/assets/images/i-form-comment-ios.svg +0 -10
  21. data/vendor/assets/images/i-form-comment-material.svg +0 -4
  22. data/vendor/assets/images/i-form-email-ios.svg +0 -13
  23. data/vendor/assets/images/i-form-email-material.svg +0 -4
  24. data/vendor/assets/images/i-form-gender-ios.svg +0 -16
  25. data/vendor/assets/images/i-form-gender-material.svg +0 -8
  26. data/vendor/assets/images/i-form-name-ios.svg +0 -10
  27. data/vendor/assets/images/i-form-name-material.svg +0 -4
  28. data/vendor/assets/images/i-form-password-ios.svg +0 -13
  29. data/vendor/assets/images/i-form-password-material.svg +0 -4
  30. data/vendor/assets/images/i-form-settings-ios.svg +0 -14
  31. data/vendor/assets/images/i-form-settings-material.svg +0 -7
  32. data/vendor/assets/images/i-form-tel-ios.svg +0 -10
  33. data/vendor/assets/images/i-form-tel-material.svg +0 -4
  34. data/vendor/assets/images/i-form-toggle-ios.svg +0 -11
  35. data/vendor/assets/images/i-form-toggle-material.svg +0 -5
  36. data/vendor/assets/images/i-form-url-ios.svg +0 -28
  37. data/vendor/assets/images/i-form-url-material.svg +0 -4
@@ -1,21 +1,22 @@
1
1
  /**
2
- * Framework7 1.4.0
3
- * Full Featured Mobile HTML Framework For Building iOS & Android Apps
4
- *
2
+ * Framework7 1.6.0
3
+ * Full featured mobile HTML framework for building iOS & Android apps
4
+ *
5
5
  * iOS Theme
6
6
  *
7
- * http://www.idangero.us/framework7
8
- *
9
- * Copyright 2015, Vladimir Kharlampidi
7
+ * http://framework7.io/
8
+ *
9
+ * Copyright 2017, Vladimir Kharlampidi
10
10
  * The iDangero.us
11
11
  * http://www.idangero.us/
12
- *
12
+ *
13
13
  * Licensed under MIT
14
- *
15
- * Released on: December 7, 2015
14
+ *
15
+ * Released on: April 10, 2017
16
16
  */
17
17
  html,
18
- body {
18
+ body,
19
+ .framework7-root {
19
20
  position: relative;
20
21
  height: 100%;
21
22
  width: 100%;
@@ -33,15 +34,20 @@ body {
33
34
  background: #fff;
34
35
  overflow: hidden;
35
36
  }
37
+ .framework7-root {
38
+ overflow: hidden;
39
+ }
36
40
  @media all and (width: 1024px) and (height: 691px) and (orientation: landscape) {
37
41
  html,
38
- body {
42
+ body,
43
+ .framework7-root {
39
44
  height: 671px;
40
45
  }
41
46
  }
42
47
  @media all and (width: 1024px) and (height: 692px) and (orientation: landscape) {
43
48
  html,
44
- body {
49
+ body,
50
+ .framework7-root {
45
51
  height: 672px;
46
52
  }
47
53
  }
@@ -136,6 +142,14 @@ p {
136
142
  .row.no-gutter .col-75 {
137
143
  width: 75%;
138
144
  }
145
+ .row .col-70 {
146
+ width: 70%;
147
+ width: -webkit-calc((100% - 15px*0.4285714285714286) / 1.4285714285714286);
148
+ width: calc((100% - 15px*0.4285714285714286) / 1.4285714285714286);
149
+ }
150
+ .row.no-gutter .col-70 {
151
+ width: 70%;
152
+ }
139
153
  .row .col-66 {
140
154
  width: 66.66666666666666%;
141
155
  width: -webkit-calc((100% - 15px*0.5000000000000002) / 1.5000000000000002);
@@ -144,6 +158,14 @@ p {
144
158
  .row.no-gutter .col-66 {
145
159
  width: 66.66666666666666%;
146
160
  }
161
+ .row .col-65 {
162
+ width: 65%;
163
+ width: -webkit-calc((100% - 15px*0.5384615384615385) / 1.5384615384615385);
164
+ width: calc((100% - 15px*0.5384615384615385) / 1.5384615384615385);
165
+ }
166
+ .row.no-gutter .col-65 {
167
+ width: 65%;
168
+ }
147
169
  .row .col-60 {
148
170
  width: 60%;
149
171
  width: -webkit-calc((100% - 15px*0.6666666666666667) / 1.6666666666666667);
@@ -152,6 +174,14 @@ p {
152
174
  .row.no-gutter .col-60 {
153
175
  width: 60%;
154
176
  }
177
+ .row .col-55 {
178
+ width: 55%;
179
+ width: -webkit-calc((100% - 15px*0.8181818181818181) / 1.8181818181818181);
180
+ width: calc((100% - 15px*0.8181818181818181) / 1.8181818181818181);
181
+ }
182
+ .row.no-gutter .col-55 {
183
+ width: 55%;
184
+ }
155
185
  .row .col-50 {
156
186
  width: 50%;
157
187
  width: -webkit-calc((100% - 15px*1) / 2);
@@ -160,6 +190,14 @@ p {
160
190
  .row.no-gutter .col-50 {
161
191
  width: 50%;
162
192
  }
193
+ .row .col-45 {
194
+ width: 45%;
195
+ width: -webkit-calc((100% - 15px*1.2222222222222223) / 2.2222222222222223);
196
+ width: calc((100% - 15px*1.2222222222222223) / 2.2222222222222223);
197
+ }
198
+ .row.no-gutter .col-45 {
199
+ width: 45%;
200
+ }
163
201
  .row .col-40 {
164
202
  width: 40%;
165
203
  width: -webkit-calc((100% - 15px*1.5) / 2.5);
@@ -168,6 +206,14 @@ p {
168
206
  .row.no-gutter .col-40 {
169
207
  width: 40%;
170
208
  }
209
+ .row .col-35 {
210
+ width: 35%;
211
+ width: -webkit-calc((100% - 15px*1.8571428571428572) / 2.857142857142857);
212
+ width: calc((100% - 15px*1.8571428571428572) / 2.857142857142857);
213
+ }
214
+ .row.no-gutter .col-35 {
215
+ width: 35%;
216
+ }
171
217
  .row .col-33 {
172
218
  width: 33.333333333333336%;
173
219
  width: -webkit-calc((100% - 15px*2) / 3);
@@ -176,6 +222,14 @@ p {
176
222
  .row.no-gutter .col-33 {
177
223
  width: 33.333333333333336%;
178
224
  }
225
+ .row .col-30 {
226
+ width: 30%;
227
+ width: -webkit-calc((100% - 15px*2.3333333333333335) / 3.3333333333333335);
228
+ width: calc((100% - 15px*2.3333333333333335) / 3.3333333333333335);
229
+ }
230
+ .row.no-gutter .col-30 {
231
+ width: 30%;
232
+ }
179
233
  .row .col-25 {
180
234
  width: 25%;
181
235
  width: -webkit-calc((100% - 15px*3) / 4);
@@ -366,6 +420,66 @@ p {
366
420
  .row.no-gutter .col-auto:nth-last-child(15) ~ .col-auto {
367
421
  width: 6.66666667%;
368
422
  }
423
+ .row .col-auto:nth-last-child(16),
424
+ .row .col-auto:nth-last-child(16) ~ .col-auto {
425
+ width: 6.25%;
426
+ width: -webkit-calc((100% - 15px*15) / 16);
427
+ width: calc((100% - 15px*15) / 16);
428
+ }
429
+ .row.no-gutter .col-auto:nth-last-child(16),
430
+ .row.no-gutter .col-auto:nth-last-child(16) ~ .col-auto {
431
+ width: 6.25%;
432
+ }
433
+ .row .col-auto:nth-last-child(17),
434
+ .row .col-auto:nth-last-child(17) ~ .col-auto {
435
+ width: 5.88235294%;
436
+ width: -webkit-calc((100% - 15px*16) / 17);
437
+ width: calc((100% - 15px*16) / 17);
438
+ }
439
+ .row.no-gutter .col-auto:nth-last-child(17),
440
+ .row.no-gutter .col-auto:nth-last-child(17) ~ .col-auto {
441
+ width: 5.88235294%;
442
+ }
443
+ .row .col-auto:nth-last-child(18),
444
+ .row .col-auto:nth-last-child(18) ~ .col-auto {
445
+ width: 5.55555556%;
446
+ width: -webkit-calc((100% - 15px*17) / 18);
447
+ width: calc((100% - 15px*17) / 18);
448
+ }
449
+ .row.no-gutter .col-auto:nth-last-child(18),
450
+ .row.no-gutter .col-auto:nth-last-child(18) ~ .col-auto {
451
+ width: 5.55555556%;
452
+ }
453
+ .row .col-auto:nth-last-child(19),
454
+ .row .col-auto:nth-last-child(19) ~ .col-auto {
455
+ width: 5.26315789%;
456
+ width: -webkit-calc((100% - 15px*18) / 19);
457
+ width: calc((100% - 15px*18) / 19);
458
+ }
459
+ .row.no-gutter .col-auto:nth-last-child(19),
460
+ .row.no-gutter .col-auto:nth-last-child(19) ~ .col-auto {
461
+ width: 5.26315789%;
462
+ }
463
+ .row .col-auto:nth-last-child(20),
464
+ .row .col-auto:nth-last-child(20) ~ .col-auto {
465
+ width: 5%;
466
+ width: -webkit-calc((100% - 15px*19) / 20);
467
+ width: calc((100% - 15px*19) / 20);
468
+ }
469
+ .row.no-gutter .col-auto:nth-last-child(20),
470
+ .row.no-gutter .col-auto:nth-last-child(20) ~ .col-auto {
471
+ width: 5%;
472
+ }
473
+ .row .col-auto:nth-last-child(21),
474
+ .row .col-auto:nth-last-child(21) ~ .col-auto {
475
+ width: 4.76190476%;
476
+ width: -webkit-calc((100% - 15px*20) / 21);
477
+ width: calc((100% - 15px*20) / 21);
478
+ }
479
+ .row.no-gutter .col-auto:nth-last-child(21),
480
+ .row.no-gutter .col-auto:nth-last-child(21) ~ .col-auto {
481
+ width: 4.76190476%;
482
+ }
369
483
  @media all and (min-width: 768px) {
370
484
  .row .tablet-100 {
371
485
  width: 100%;
@@ -415,6 +529,14 @@ p {
415
529
  .row.no-gutter .tablet-75 {
416
530
  width: 75%;
417
531
  }
532
+ .row .tablet-70 {
533
+ width: 70%;
534
+ width: -webkit-calc((100% - 15px*0.4285714285714286) / 1.4285714285714286);
535
+ width: calc((100% - 15px*0.4285714285714286) / 1.4285714285714286);
536
+ }
537
+ .row.no-gutter .tablet-70 {
538
+ width: 70%;
539
+ }
418
540
  .row .tablet-66 {
419
541
  width: 66.66666666666666%;
420
542
  width: -webkit-calc((100% - 15px*0.5000000000000002) / 1.5000000000000002);
@@ -423,6 +545,14 @@ p {
423
545
  .row.no-gutter .tablet-66 {
424
546
  width: 66.66666666666666%;
425
547
  }
548
+ .row .tablet-65 {
549
+ width: 65%;
550
+ width: -webkit-calc((100% - 15px*0.5384615384615385) / 1.5384615384615385);
551
+ width: calc((100% - 15px*0.5384615384615385) / 1.5384615384615385);
552
+ }
553
+ .row.no-gutter .tablet-65 {
554
+ width: 65%;
555
+ }
426
556
  .row .tablet-60 {
427
557
  width: 60%;
428
558
  width: -webkit-calc((100% - 15px*0.6666666666666667) / 1.6666666666666667);
@@ -431,6 +561,14 @@ p {
431
561
  .row.no-gutter .tablet-60 {
432
562
  width: 60%;
433
563
  }
564
+ .row .tablet-55 {
565
+ width: 55%;
566
+ width: -webkit-calc((100% - 15px*0.8181818181818181) / 1.8181818181818181);
567
+ width: calc((100% - 15px*0.8181818181818181) / 1.8181818181818181);
568
+ }
569
+ .row.no-gutter .tablet-55 {
570
+ width: 55%;
571
+ }
434
572
  .row .tablet-50 {
435
573
  width: 50%;
436
574
  width: -webkit-calc((100% - 15px*1) / 2);
@@ -439,6 +577,14 @@ p {
439
577
  .row.no-gutter .tablet-50 {
440
578
  width: 50%;
441
579
  }
580
+ .row .tablet-45 {
581
+ width: 45%;
582
+ width: -webkit-calc((100% - 15px*1.2222222222222223) / 2.2222222222222223);
583
+ width: calc((100% - 15px*1.2222222222222223) / 2.2222222222222223);
584
+ }
585
+ .row.no-gutter .tablet-45 {
586
+ width: 45%;
587
+ }
442
588
  .row .tablet-40 {
443
589
  width: 40%;
444
590
  width: -webkit-calc((100% - 15px*1.5) / 2.5);
@@ -447,6 +593,14 @@ p {
447
593
  .row.no-gutter .tablet-40 {
448
594
  width: 40%;
449
595
  }
596
+ .row .tablet-35 {
597
+ width: 35%;
598
+ width: -webkit-calc((100% - 15px*1.8571428571428572) / 2.857142857142857);
599
+ width: calc((100% - 15px*1.8571428571428572) / 2.857142857142857);
600
+ }
601
+ .row.no-gutter .tablet-35 {
602
+ width: 35%;
603
+ }
450
604
  .row .tablet-33 {
451
605
  width: 33.333333333333336%;
452
606
  width: -webkit-calc((100% - 15px*2) / 3);
@@ -455,6 +609,14 @@ p {
455
609
  .row.no-gutter .tablet-33 {
456
610
  width: 33.333333333333336%;
457
611
  }
612
+ .row .tablet-30 {
613
+ width: 30%;
614
+ width: -webkit-calc((100% - 15px*2.3333333333333335) / 3.3333333333333335);
615
+ width: calc((100% - 15px*2.3333333333333335) / 3.3333333333333335);
616
+ }
617
+ .row.no-gutter .tablet-30 {
618
+ width: 30%;
619
+ }
458
620
  .row .tablet-25 {
459
621
  width: 25%;
460
622
  width: -webkit-calc((100% - 15px*3) / 4);
@@ -645,12 +807,71 @@ p {
645
807
  .row.no-gutter .tablet-auto:nth-last-child(15) ~ .tablet-auto {
646
808
  width: 6.66666667%;
647
809
  }
810
+ .row .tablet-auto:nth-last-child(16),
811
+ .row .tablet-auto:nth-last-child(16) ~ .col-auto {
812
+ width: 6.25%;
813
+ width: -webkit-calc((100% - 15px*15) / 16);
814
+ width: calc((100% - 15px*15) / 16);
815
+ }
816
+ .row.no-gutter .tablet-auto:nth-last-child(16),
817
+ .row.no-gutter .tablet-auto:nth-last-child(16) ~ .tablet-auto {
818
+ width: 6.25%;
819
+ }
820
+ .row .tablet-auto:nth-last-child(17),
821
+ .row .tablet-auto:nth-last-child(17) ~ .col-auto {
822
+ width: 5.88235294%;
823
+ width: -webkit-calc((100% - 15px*16) / 17);
824
+ width: calc((100% - 15px*16) / 17);
825
+ }
826
+ .row.no-gutter .tablet-auto:nth-last-child(17),
827
+ .row.no-gutter .tablet-auto:nth-last-child(17) ~ .tablet-auto {
828
+ width: 5.88235294%;
829
+ }
830
+ .row .tablet-auto:nth-last-child(18),
831
+ .row .tablet-auto:nth-last-child(18) ~ .col-auto {
832
+ width: 5.55555556%;
833
+ width: -webkit-calc((100% - 15px*17) / 18);
834
+ width: calc((100% - 15px*17) / 18);
835
+ }
836
+ .row.no-gutter .tablet-auto:nth-last-child(18),
837
+ .row.no-gutter .tablet-auto:nth-last-child(18) ~ .tablet-auto {
838
+ width: 5.55555556%;
839
+ }
840
+ .row .tablet-auto:nth-last-child(19),
841
+ .row .tablet-auto:nth-last-child(19) ~ .col-auto {
842
+ width: 5.26315789%;
843
+ width: -webkit-calc((100% - 15px*18) / 19);
844
+ width: calc((100% - 15px*18) / 19);
845
+ }
846
+ .row.no-gutter .tablet-auto:nth-last-child(19),
847
+ .row.no-gutter .tablet-auto:nth-last-child(19) ~ .tablet-auto {
848
+ width: 5.26315789%;
849
+ }
850
+ .row .tablet-auto:nth-last-child(20),
851
+ .row .tablet-auto:nth-last-child(20) ~ .col-auto {
852
+ width: 5%;
853
+ width: -webkit-calc((100% - 15px*19) / 20);
854
+ width: calc((100% - 15px*19) / 20);
855
+ }
856
+ .row.no-gutter .tablet-auto:nth-last-child(20),
857
+ .row.no-gutter .tablet-auto:nth-last-child(20) ~ .tablet-auto {
858
+ width: 5%;
859
+ }
860
+ .row .tablet-auto:nth-last-child(21),
861
+ .row .tablet-auto:nth-last-child(21) ~ .col-auto {
862
+ width: 4.76190476%;
863
+ width: -webkit-calc((100% - 15px*20) / 21);
864
+ width: calc((100% - 15px*20) / 21);
865
+ }
866
+ .row.no-gutter .tablet-auto:nth-last-child(21),
867
+ .row.no-gutter .tablet-auto:nth-last-child(21) ~ .tablet-auto {
868
+ width: 4.76190476%;
869
+ }
648
870
  }
649
871
  /* === Views === */
650
872
  .views,
651
873
  .view {
652
874
  position: relative;
653
- width: 100%;
654
875
  height: 100%;
655
876
  z-index: 5000;
656
877
  }
@@ -661,6 +882,7 @@ p {
661
882
  .view {
662
883
  overflow: hidden;
663
884
  box-sizing: border-box;
885
+ width: 100%;
664
886
  }
665
887
  /* === Pages === */
666
888
  .pages {
@@ -909,6 +1131,8 @@ html.android .page-from-center-to-right:before {
909
1131
  z-index: 500;
910
1132
  -webkit-backface-visibility: hidden;
911
1133
  backface-visibility: hidden;
1134
+ -webkit-transform: translate3d(0, 0, 0);
1135
+ transform: translate3d(0, 0, 0);
912
1136
  }
913
1137
  .navbar b,
914
1138
  .toolbar b {
@@ -1052,6 +1276,16 @@ html.pixel-ratio-3 .navbar:after {
1052
1276
  html.ios-gt-8 .navbar .center {
1053
1277
  font-weight: 600;
1054
1278
  }
1279
+ .navbar .center .subtitle {
1280
+ color: #6d6d72;
1281
+ display: block;
1282
+ line-height: 1;
1283
+ bottom: 3px;
1284
+ font-size: 10px;
1285
+ position: absolute;
1286
+ text-align: center;
1287
+ width: 100%;
1288
+ }
1055
1289
  .navbar .left,
1056
1290
  .navbar .right {
1057
1291
  -webkit-flex-shrink: 0;
@@ -1278,6 +1512,35 @@ html.pixel-ratio-3 .toolbar:before {
1278
1512
  text-overflow: ellipsis;
1279
1513
  white-space: nowrap;
1280
1514
  }
1515
+ .subnavbar input[type="text"],
1516
+ .navbar input[type="text"],
1517
+ .subnavbar input[type="password"],
1518
+ .navbar input[type="password"],
1519
+ .subnavbar input[type="search"],
1520
+ .navbar input[type="search"],
1521
+ .subnavbar input[type="email"],
1522
+ .navbar input[type="email"],
1523
+ .subnavbar input[type="tel"],
1524
+ .navbar input[type="tel"],
1525
+ .subnavbar input[type="url"],
1526
+ .navbar input[type="url"] {
1527
+ box-sizing: border-box;
1528
+ width: 100%;
1529
+ height: 28px;
1530
+ display: block;
1531
+ border: none;
1532
+ -webkit-appearance: none;
1533
+ -moz-appearance: none;
1534
+ -ms-appearance: none;
1535
+ appearance: none;
1536
+ border-radius: 5px;
1537
+ font-family: inherit;
1538
+ color: #000;
1539
+ font-size: 14px;
1540
+ font-weight: normal;
1541
+ padding: 0 8px;
1542
+ background-color: #fff;
1543
+ }
1281
1544
  @media all and (min-width: 768px) {
1282
1545
  .tabbar .toolbar-inner {
1283
1546
  -webkit-box-pack: center;
@@ -1509,6 +1772,10 @@ html.pixel-ratio-3 .toolbar:before {
1509
1772
  -webkit-transition-duration: 400ms;
1510
1773
  transition-duration: 400ms;
1511
1774
  }
1775
+ .navbar.not-animated {
1776
+ -webkit-transition-duration: 0ms;
1777
+ transition-duration: 0ms;
1778
+ }
1512
1779
  .page.no-navbar .page-content {
1513
1780
  padding-top: 0;
1514
1781
  }
@@ -1535,6 +1802,11 @@ html.pixel-ratio-3 .toolbar:before {
1535
1802
  -webkit-transform: translate3d(0, 100%, 0);
1536
1803
  transform: translate3d(0, 100%, 0);
1537
1804
  }
1805
+ .toolbar.not-animated,
1806
+ .tabbar.not-animated {
1807
+ -webkit-transition-duration: 0ms;
1808
+ transition-duration: 0ms;
1809
+ }
1538
1810
  .page.no-toolbar .page-content,
1539
1811
  .page.no-tabbar .page-content {
1540
1812
  padding-bottom: 0;
@@ -1591,7 +1863,7 @@ html.pixel-ratio-3 .searchbar:after {
1591
1863
  .searchbar input[type="search"] {
1592
1864
  box-sizing: border-box;
1593
1865
  width: 100%;
1594
- height: 100%;
1866
+ height: 28px;
1595
1867
  display: block;
1596
1868
  border: none;
1597
1869
  -webkit-appearance: none;
@@ -1603,8 +1875,10 @@ html.pixel-ratio-3 .searchbar:after {
1603
1875
  color: #000;
1604
1876
  font-size: 14px;
1605
1877
  font-weight: normal;
1606
- padding: 0 28px;
1878
+ padding: 0 8px;
1607
1879
  background-color: #fff;
1880
+ padding: 0 28px;
1881
+ height: 100%;
1608
1882
  background-repeat: no-repeat;
1609
1883
  background-position: 8px center;
1610
1884
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2013'%20enable-background%3D'new%200%200%2013%2013'%3E%3Cg%3E%3Cpath%20fill%3D'%23939398'%20d%3D'M5%2C1c2.2%2C0%2C4%2C1.8%2C4%2C4S7.2%2C9%2C5%2C9S1%2C7.2%2C1%2C5S2.8%2C1%2C5%2C1%20M5%2C0C2.2%2C0%2C0%2C2.2%2C0%2C5s2.2%2C5%2C5%2C5s5-2.2%2C5-5S7.8%2C0%2C5%2C0%20L5%2C0z'%2F%3E%3C%2Fg%3E%3Cline%20stroke%3D'%23939398'%20stroke-miterlimit%3D'10'%20x1%3D'12.6'%20y1%3D'12.6'%20x2%3D'8.2'%20y2%3D'8.2'%2F%3E%3C%2Fsvg%3E");
@@ -1720,6 +1994,10 @@ html:not(.watch-active-state) .searchbar.searchbar-active .searchbar-cancel:acti
1720
1994
  transform: translate3d(0, 0, 0);
1721
1995
  -webkit-transition-duration: 0ms;
1722
1996
  transition-duration: 0ms;
1997
+ background: #fff;
1998
+ }
1999
+ .messagebar:before {
2000
+ display: none;
1723
2001
  }
1724
2002
  .messagebar textarea {
1725
2003
  -webkit-appearance: none;
@@ -1731,13 +2009,13 @@ html:not(.watch-active-state) .searchbar.searchbar-active .searchbar-cancel:acti
1731
2009
  box-sizing: border-box;
1732
2010
  border: 1px solid #c8c8cd;
1733
2011
  background: #fff;
1734
- border-radius: 5px;
2012
+ border-radius: 17px;
1735
2013
  box-shadow: none;
1736
2014
  display: block;
1737
- padding: 3px 8px 3px;
2015
+ padding: 6px 15px;
1738
2016
  margin: 0;
1739
2017
  width: 100%;
1740
- height: 28px;
2018
+ height: 34px;
1741
2019
  color: #000;
1742
2020
  font-size: 17px;
1743
2021
  line-height: 20px;
@@ -1766,10 +2044,8 @@ html:not(.watch-active-state) .searchbar.searchbar-active .searchbar-cancel:acti
1766
2044
  -ms-flex: 0 0 auto;
1767
2045
  flex-shrink: 0;
1768
2046
  }
1769
- .messagebar ~ .page-content {
1770
- padding-bottom: 44px;
1771
- }
1772
- .page.no-toolbar .messagebar ~ .page-content {
2047
+ .page.no-toolbar .messagebar ~ .page-content,
2048
+ .page.no-tabbar .messagebar ~ .page-content {
1773
2049
  padding-bottom: 44px;
1774
2050
  }
1775
2051
  .hidden-toolbar .messagebar {
@@ -1817,59 +2093,9 @@ i.icon.icon-camera {
1817
2093
  i.icon.icon-f7 {
1818
2094
  width: 29px;
1819
2095
  height: 29px;
1820
- background-image: url("../assets/i-f7-ios.png");
2096
+ background-image: url("../img/i-f7-ios.png");
1821
2097
  border-radius: 6px;
1822
2098
  }
1823
- i.icon.icon-form-name {
1824
- width: 29px;
1825
- height: 29px;
1826
- background-image: url("../assets/i-form-name-ios.svg");
1827
- }
1828
- i.icon.icon-form-password {
1829
- width: 29px;
1830
- height: 29px;
1831
- background-image: url("../assets/i-form-password-ios.svg");
1832
- }
1833
- i.icon.icon-form-email {
1834
- width: 29px;
1835
- height: 29px;
1836
- background-image: url("../assets/i-form-email-ios.svg");
1837
- }
1838
- i.icon.icon-form-calendar {
1839
- width: 29px;
1840
- height: 29px;
1841
- background-image: url("../assets/i-form-calendar-ios.svg");
1842
- }
1843
- i.icon.icon-form-tel {
1844
- width: 29px;
1845
- height: 29px;
1846
- background-image: url("../assets/i-form-tel-ios.svg");
1847
- }
1848
- i.icon.icon-form-gender {
1849
- width: 29px;
1850
- height: 29px;
1851
- background-image: url("../assets/i-form-gender-ios.svg");
1852
- }
1853
- i.icon.icon-form-toggle {
1854
- width: 29px;
1855
- height: 29px;
1856
- background-image: url("../assets/i-form-toggle-ios.svg");
1857
- }
1858
- i.icon.icon-form-comment {
1859
- width: 29px;
1860
- height: 29px;
1861
- background-image: url("../assets/i-form-comment-ios.svg");
1862
- }
1863
- i.icon.icon-form-settings {
1864
- width: 29px;
1865
- height: 29px;
1866
- background-image: url("../assets/i-form-settings-ios.svg");
1867
- }
1868
- i.icon.icon-form-url {
1869
- width: 29px;
1870
- height: 29px;
1871
- background-image: url("../assets/i-form-url-ios.svg");
1872
- }
1873
2099
  i.icon.icon-next,
1874
2100
  i.icon.icon-prev {
1875
2101
  width: 15px;
@@ -1889,6 +2115,31 @@ i.icon.icon-plus {
1889
2115
  text-align: center;
1890
2116
  font-weight: 100;
1891
2117
  }
2118
+ .navbar .framework7-icons,
2119
+ .navbar .f7-icons,
2120
+ .toolbar .framework7-icons,
2121
+ .toolbar .f7-icons {
2122
+ font-size: 22px;
2123
+ }
2124
+ .tabbar .framework7-icons,
2125
+ .tabbar .f7-icons,
2126
+ .tabbar-labels .framework7-icons,
2127
+ .tabbar-labels .f7-icons {
2128
+ font-size: 25px;
2129
+ }
2130
+ .item-media .framework7-icons,
2131
+ .item-media .f7-icons {
2132
+ font-size: 29px;
2133
+ }
2134
+ .button .framework7-icons,
2135
+ .button .f7-icons {
2136
+ font-size: 22px;
2137
+ }
2138
+ .item-actions .framework7-icons,
2139
+ .item-actions .f7-icons {
2140
+ font-size: 23px;
2141
+ vertical-align: top;
2142
+ }
1892
2143
  .badge {
1893
2144
  font-size: 13px;
1894
2145
  display: inline-block;
@@ -1904,7 +2155,9 @@ i.icon.icon-plus {
1904
2155
  .item-after .badge {
1905
2156
  min-width: 20px;
1906
2157
  }
1907
- .icon .badge {
2158
+ .icon .badge,
2159
+ .f7-icons .badge,
2160
+ .framework7-icons .badge {
1908
2161
  position: absolute;
1909
2162
  left: 100%;
1910
2163
  margin-left: -10px;
@@ -1915,6 +2168,102 @@ i.icon.icon-plus {
1915
2168
  border-radius: 16px;
1916
2169
  padding: 0px 4px;
1917
2170
  min-width: 16px;
2171
+ font-family: -apple-system, SF UI Text, Helvetica Neue, Helvetica, Arial, sans-serif;
2172
+ }
2173
+ /* === Chips === */
2174
+ .chip {
2175
+ font-size: 14px;
2176
+ font-weight: normal;
2177
+ color: #fff;
2178
+ background: rgba(0, 0, 0, 0.37);
2179
+ display: inline-block;
2180
+ height: 23px;
2181
+ line-height: 23px;
2182
+ border-radius: 5px;
2183
+ padding: 0 6px;
2184
+ box-sizing: border-box;
2185
+ vertical-align: middle;
2186
+ display: -webkit-inline-box;
2187
+ display: -ms-inline-flexbox;
2188
+ display: -webkit-inline-flex;
2189
+ display: inline-flex;
2190
+ -webkit-box-align: center;
2191
+ -ms-flex-align: center;
2192
+ -webkit-align-items: center;
2193
+ align-items: center;
2194
+ margin: 2px 0;
2195
+ }
2196
+ .chip-media {
2197
+ width: 16px;
2198
+ height: 16px;
2199
+ vertical-align: middle;
2200
+ border-radius: 50%;
2201
+ text-align: center;
2202
+ line-height: 16px;
2203
+ color: #fff;
2204
+ font-size: 12px;
2205
+ box-sizing: border-box;
2206
+ -webkit-flex-shrink: 0;
2207
+ -ms-flex: 0 0 auto;
2208
+ flex-shrink: 0;
2209
+ display: -webkit-box;
2210
+ display: -ms-flexbox;
2211
+ display: -webkit-flex;
2212
+ display: flex;
2213
+ -webkit-box-align: center;
2214
+ -ms-flex-align: center;
2215
+ -webkit-align-items: center;
2216
+ align-items: center;
2217
+ -webkit-box-pack: center;
2218
+ -ms-flex-pack: center;
2219
+ -webkit-justify-content: center;
2220
+ justify-content: center;
2221
+ }
2222
+ .chip-media img {
2223
+ max-width: 100%;
2224
+ max-height: 100%;
2225
+ width: auto;
2226
+ height: auto;
2227
+ border-radius: 50%;
2228
+ display: block;
2229
+ }
2230
+ .chip-media + .chip-label {
2231
+ margin-left: 4px;
2232
+ }
2233
+ .chip-media i.icon {
2234
+ font-size: 16px;
2235
+ height: 16px;
2236
+ }
2237
+ .chip-label {
2238
+ white-space: nowrap;
2239
+ overflow: hidden;
2240
+ text-overflow: ellipsis;
2241
+ position: relative;
2242
+ -webkit-flex-shrink: 1;
2243
+ -ms-flex: 0 1 auto;
2244
+ flex-shrink: 1;
2245
+ min-width: 0;
2246
+ }
2247
+ .chip-delete {
2248
+ margin-right: -6px;
2249
+ width: 23px;
2250
+ height: 23px;
2251
+ text-align: center;
2252
+ line-height: 23px;
2253
+ cursor: pointer;
2254
+ -webkit-flex-shrink: 0;
2255
+ -ms-flex: 0 0 auto;
2256
+ flex-shrink: 0;
2257
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2028'%3E%3Ccircle%20cx%3D'14'%20cy%3D'14'%20r%3D'14'%20fill%3D'%23fff'%2F%3E%3Cline%20stroke%3D'%23000'%20stroke-width%3D'2'%20stroke-miterlimit%3D'10'%20x1%3D'8'%20y1%3D'8'%20x2%3D'20'%20y2%3D'20'%2F%3E%3Cline%20fill%3D'none'%20stroke%3D'%23000'%20stroke-width%3D'2'%20stroke-miterlimit%3D'10'%20x1%3D'20'%20y1%3D'8'%20x2%3D'8'%20y2%3D'20'%2F%3E%3C%2Fsvg%3E");
2258
+ background-repeat: no-repeat;
2259
+ background-position: center;
2260
+ -webkit-background-size: 13px 13px;
2261
+ background-size: 13px 13px;
2262
+ opacity: 0.7;
2263
+ }
2264
+ html:not(.watch-active-state) .chip-delete:active,
2265
+ .chip-delete.active-state {
2266
+ opacity: 1;
1918
2267
  }
1919
2268
  /* === Content Block === */
1920
2269
  .content-block {
@@ -1923,6 +2272,16 @@ i.icon.icon-plus {
1923
2272
  color: #6d6d72;
1924
2273
  box-sizing: border-box;
1925
2274
  }
2275
+ .content-block.no-hairlines:before,
2276
+ .content-block.no-hairlines ul:before,
2277
+ .content-block.no-hairlines .content-block-inner:before {
2278
+ display: none;
2279
+ }
2280
+ .content-block.no-hairlines:after,
2281
+ .content-block.no-hairlines ul:after,
2282
+ .content-block.no-hairlines .content-block-inner:after {
2283
+ display: none;
2284
+ }
1926
2285
  .content-block-title {
1927
2286
  position: relative;
1928
2287
  overflow: hidden;
@@ -1937,7 +2296,8 @@ i.icon.icon-plus {
1937
2296
  }
1938
2297
  .content-block-title + .list-block,
1939
2298
  .content-block-title + .content-block,
1940
- .content-block-title + .card {
2299
+ .content-block-title + .card,
2300
+ .content-block-title + .timeline {
1941
2301
  margin-top: 10px;
1942
2302
  }
1943
2303
  .content-block-inner {
@@ -2206,7 +2566,7 @@ html.pixel-ratio-3 .list-block ul:after {
2206
2566
  .list-block .item-media i + i {
2207
2567
  margin-left: 5px;
2208
2568
  }
2209
- .list-block .item-media i + assets {
2569
+ .list-block .item-media i + img {
2210
2570
  margin-left: 5px;
2211
2571
  }
2212
2572
  .list-block .item-media + .item-inner {
@@ -2279,7 +2639,8 @@ html.pixel-ratio-3 .list-block .item-inner:after {
2279
2639
  -webkit-flex-shrink: 0;
2280
2640
  -ms-flex: 0 0 auto;
2281
2641
  flex-shrink: 0;
2282
- margin-left: 5px;
2642
+ margin-left: auto;
2643
+ padding-left: 5px;
2283
2644
  display: -webkit-box;
2284
2645
  display: -ms-flexbox;
2285
2646
  display: -webkit-flex;
@@ -2294,13 +2655,60 @@ html.pixel-ratio-3 .list-block .item-inner:after {
2294
2655
  position: relative;
2295
2656
  display: block;
2296
2657
  }
2297
- .list-block .item-link {
2658
+ .list-block .item-actions {
2659
+ margin-left: auto;
2660
+ padding-left: 15px;
2661
+ display: -webkit-box;
2662
+ display: -ms-flexbox;
2663
+ display: -webkit-flex;
2664
+ display: flex;
2665
+ -webkit-box-align: center;
2666
+ -ms-flex-align: center;
2667
+ -webkit-align-items: center;
2668
+ align-items: center;
2669
+ -webkit-box-pack: justify;
2670
+ -ms-flex-pack: justify;
2671
+ -webkit-justify-content: space-between;
2672
+ justify-content: space-between;
2673
+ }
2674
+ .list-block .item-actions a {
2675
+ min-width: 23px;
2676
+ display: -webkit-box;
2677
+ display: -ms-flexbox;
2678
+ display: -webkit-flex;
2679
+ display: flex;
2680
+ -webkit-box-align: center;
2681
+ -ms-flex-align: center;
2682
+ -webkit-align-items: center;
2683
+ align-items: center;
2684
+ -webkit-box-pack: center;
2685
+ -ms-flex-pack: center;
2686
+ -webkit-justify-content: center;
2687
+ justify-content: center;
2688
+ -webkit-transition-duration: 300ms;
2689
+ transition-duration: 300ms;
2690
+ }
2691
+ html:not(.watch-active-state) .list-block .item-actions a:active,
2692
+ .list-block .item-actions a.active-state {
2693
+ opacity: 0.3;
2694
+ -webkit-transition-duration: 0ms;
2695
+ transition-duration: 0ms;
2696
+ }
2697
+ .list-block .item-actions a + a {
2698
+ margin-left: 8px;
2699
+ }
2700
+ .list-block .item-after + .item-actions {
2701
+ margin-left: 0;
2702
+ }
2703
+ .list-block .item-link,
2704
+ .list-block .list-button {
2298
2705
  -webkit-transition-duration: 300ms;
2299
2706
  transition-duration: 300ms;
2300
2707
  display: block;
2301
2708
  color: inherit;
2302
2709
  }
2303
- .list-block .item-link .item-inner {
2710
+ .list-block .item-link .item-inner,
2711
+ .list-block .list-button .item-inner {
2304
2712
  padding-right: 35px;
2305
2713
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%2060%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'm60%2061.5-38.25%2038.25-9.75-9.75%2029.25-28.5-29.25-28.5%209.75-9.75z'%20fill%3D'%23c7c7cc'%2F%3E%3C%2Fsvg%3E");
2306
2714
  background-size: 10px 20px;
@@ -2310,23 +2718,27 @@ html.pixel-ratio-3 .list-block .item-inner:after {
2310
2718
  background-position: calc(100% - 15px) center;
2311
2719
  }
2312
2720
  html:not(.watch-active-state) .list-block .item-link:active,
2313
- .list-block .item-link.active-state {
2721
+ html:not(.watch-active-state) .list-block .list-button:active,
2722
+ .list-block .item-link.active-state,
2723
+ .list-block .list-button.active-state {
2314
2724
  -webkit-transition-duration: 0ms;
2315
2725
  transition-duration: 0ms;
2316
2726
  background-color: #d9d9d9;
2317
2727
  }
2318
2728
  html:not(.watch-active-state) .list-block .item-link:active .item-inner:after,
2319
- .list-block .item-link.active-state .item-inner:after {
2729
+ html:not(.watch-active-state) .list-block .list-button:active .item-inner:after,
2730
+ .list-block .item-link.active-state .item-inner:after,
2731
+ .list-block .list-button.active-state .item-inner:after {
2320
2732
  background-color: transparent;
2321
2733
  }
2322
- .list-block .item-link.list-button {
2734
+ .list-block .list-button {
2323
2735
  padding: 0 15px;
2324
2736
  text-align: center;
2325
2737
  color: #007aff;
2326
2738
  display: block;
2327
2739
  line-height: 43px;
2328
2740
  }
2329
- .list-block .item-link.list-button:after {
2741
+ .list-block .list-button:after {
2330
2742
  content: '';
2331
2743
  position: absolute;
2332
2744
  left: 0;
@@ -2341,11 +2753,11 @@ html:not(.watch-active-state) .list-block .item-link:active .item-inner:after,
2341
2753
  -webkit-transform-origin: 50% 100%;
2342
2754
  transform-origin: 50% 100%;
2343
2755
  }
2344
- html.pixel-ratio-2 .list-block .item-link.list-button:after {
2756
+ html.pixel-ratio-2 .list-block .list-button:after {
2345
2757
  -webkit-transform: scaleY(0.5);
2346
2758
  transform: scaleY(0.5);
2347
2759
  }
2348
- html.pixel-ratio-3 .list-block .item-link.list-button:after {
2760
+ html.pixel-ratio-3 .list-block .list-button:after {
2349
2761
  -webkit-transform: scaleY(0.33);
2350
2762
  transform: scaleY(0.33);
2351
2763
  }
@@ -2512,8 +2924,8 @@ html.ios-gt-8 .list-block li.media-item .item-title {
2512
2924
  padding-top: 9px;
2513
2925
  padding-bottom: 10px;
2514
2926
  }
2515
- .list-block.media-list .item-media assets,
2516
- .list-block li.media-item .item-media assets {
2927
+ .list-block.media-list .item-media img,
2928
+ .list-block li.media-item .item-media img {
2517
2929
  display: block;
2518
2930
  }
2519
2931
  .list-block.media-list .item-title-row,
@@ -2670,6 +3082,23 @@ html.pixel-ratio-3 .list-block li:last-child li .item-inner:after {
2670
3082
  -webkit-transform: scaleY(0.33);
2671
3083
  transform: scaleY(0.33);
2672
3084
  }
3085
+ .list-block.no-hairlines:before,
3086
+ .list-block.no-hairlines ul:before,
3087
+ .list-block.no-hairlines .content-block-inner:before {
3088
+ display: none;
3089
+ }
3090
+ .list-block.no-hairlines:after,
3091
+ .list-block.no-hairlines ul:after,
3092
+ .list-block.no-hairlines .content-block-inner:after {
3093
+ display: none;
3094
+ }
3095
+ .list-block.no-hairlines-between .item-inner:after,
3096
+ .list-block.no-hairlines-between .list-button:after,
3097
+ .list-block.no-hairlines-between .item-divider:after,
3098
+ .list-block.no-hairlines-between .list-group-title:after,
3099
+ .list-block.no-hairlines-between .list-group-title:after {
3100
+ display: none;
3101
+ }
2673
3102
  /* === Contacts === */
2674
3103
  .contacts-content {
2675
3104
  background: #fff;
@@ -2903,7 +3332,7 @@ html:not(.watch-active-state) .button:active,
2903
3332
  .button.button-fill {
2904
3333
  color: #fff;
2905
3334
  background: #007aff;
2906
- border: none;
3335
+ border-color: transparent;
2907
3336
  }
2908
3337
  html:not(.watch-active-state) .button.button-fill:active,
2909
3338
  .button.button-fill.active-state {
@@ -3009,12 +3438,21 @@ html:not(.watch-active-state) .button.button-fill:active,
3009
3438
  -moz-appearance: none;
3010
3439
  -ms-appearance: none;
3011
3440
  appearance: none;
3012
- border: none;
3013
3441
  height: 28px;
3014
3442
  width: 28px;
3015
- position: relative;
3016
- background: none;
3017
- }
3443
+ border-radius: 28px;
3444
+ background: #fff;
3445
+ z-index: 10;
3446
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
3447
+ border: 0;
3448
+ outline: 0;
3449
+ position: absolute;
3450
+ box-sizing: border-box;
3451
+ content: ' ';
3452
+ position: relative;
3453
+ cursor: pointer;
3454
+ margin-top: -1px;
3455
+ }
3018
3456
  .range-slider input[type="range"]::-webkit-slider-thumb:after {
3019
3457
  height: 28px;
3020
3458
  width: 28px;
@@ -3092,18 +3530,33 @@ html:not(.watch-active-state) .button.button-fill:active,
3092
3530
  .range-slider input[type="range"]::-ms-fill-upper {
3093
3531
  background: #b7b8b7;
3094
3532
  }
3095
- label.label-checkbox {
3533
+ .form-checkbox {
3534
+ position: relative;
3535
+ display: inline-block;
3536
+ vertical-align: middle;
3537
+ }
3538
+ label.label-checkbox,
3539
+ .form-checkbox {
3096
3540
  cursor: pointer;
3097
3541
  }
3098
- label.label-checkbox i.icon-form-checkbox {
3542
+ label.label-checkbox input[type="checkbox"],
3543
+ .form-checkbox input[type="checkbox"],
3544
+ label.label-checkbox input[type="radio"],
3545
+ .form-checkbox input[type="radio"] {
3546
+ display: none;
3547
+ }
3548
+ label.label-checkbox i.icon-form-checkbox,
3549
+ .form-checkbox i {
3099
3550
  width: 22px;
3100
3551
  height: 22px;
3101
3552
  position: relative;
3102
3553
  border-radius: 22px;
3103
3554
  border: 1px solid #c7c7cc;
3104
3555
  box-sizing: border-box;
3556
+ display: block;
3105
3557
  }
3106
- label.label-checkbox i.icon-form-checkbox:after {
3558
+ label.label-checkbox i.icon-form-checkbox:after,
3559
+ .form-checkbox i:after {
3107
3560
  content: ' ';
3108
3561
  position: absolute;
3109
3562
  left: 50%;
@@ -3113,26 +3566,53 @@ label.label-checkbox i.icon-form-checkbox:after {
3113
3566
  width: 12px;
3114
3567
  height: 9px;
3115
3568
  }
3116
- label.label-checkbox input[type="checkbox"],
3117
- label.label-checkbox input[type="radio"] {
3118
- display: none;
3119
- }
3120
3569
  label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox,
3121
- label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox {
3570
+ label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox,
3571
+ .form-checkbox input[type="checkbox"]:checked ~ i {
3122
3572
  border: none;
3123
3573
  background-color: #007aff;
3124
3574
  }
3125
3575
  label.label-checkbox input[type="checkbox"]:checked + .item-media i.icon-form-checkbox:after,
3126
- label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox:after {
3576
+ label.label-checkbox input[type="radio"]:checked + .item-media i.icon-form-checkbox:after,
3577
+ .form-checkbox input[type="checkbox"]:checked ~ i:after {
3127
3578
  background: no-repeat center;
3128
3579
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20x%3D'0px'%20y%3D'0px'%20viewBox%3D'0%200%2012%209'%20xml%3Aspace%3D'preserve'%3E%3Cpolygon%20fill%3D'%23ffffff'%20points%3D'12%2C0.7%2011.3%2C0%203.9%2C7.4%200.7%2C4.2%200%2C4.9%203.9%2C8.8%203.9%2C8.8%203.9%2C8.8%20'%2F%3E%3C%2Fsvg%3E");
3129
3580
  -webkit-background-size: 12px 9px;
3130
3581
  background-size: 12px 9px;
3131
3582
  }
3132
- label.label-radio {
3583
+ .form-radio {
3584
+ display: inline-block;
3585
+ vertical-align: middle;
3586
+ position: relative;
3587
+ }
3588
+ .form-radio i {
3589
+ width: 22px;
3590
+ height: 22px;
3591
+ position: relative;
3592
+ border-radius: 4px;
3593
+ border: 1px solid #c7c7cc;
3594
+ box-sizing: border-box;
3595
+ display: block;
3596
+ }
3597
+ label.label-radio,
3598
+ .form-radio {
3133
3599
  cursor: pointer;
3134
3600
  }
3135
3601
  label.label-radio input[type="checkbox"],
3602
+ .form-radio input[type="checkbox"],
3603
+ label.label-radio input[type="radio"],
3604
+ .form-radio input[type="radio"] {
3605
+ display: none;
3606
+ }
3607
+ .form-radio input[type="radio"]:checked ~ i,
3608
+ label.label-radio input[type="checkbox"]:checked ~ .item-inner,
3609
+ label.label-radio input[type="radio"]:checked ~ .item-inner {
3610
+ background: no-repeat center;
3611
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23007aff'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
3612
+ -webkit-background-size: 13px 10px;
3613
+ background-size: 13px 10px;
3614
+ }
3615
+ label.label-radio input[type="checkbox"],
3136
3616
  label.label-radio input[type="radio"] {
3137
3617
  display: none;
3138
3618
  }
@@ -3142,13 +3622,9 @@ label.label-radio input[type="radio"] ~ .item-inner {
3142
3622
  }
3143
3623
  label.label-radio input[type="checkbox"]:checked ~ .item-inner,
3144
3624
  label.label-radio input[type="radio"]:checked ~ .item-inner {
3145
- background: no-repeat center;
3146
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2013%2010'%3E%3Cpolygon%20fill%3D'%23007aff'%20points%3D'11.6%2C0%204.4%2C7.2%201.4%2C4.2%200%2C5.6%204.4%2C10%204.4%2C10%204.4%2C10%2013%2C1.4%20'%2F%3E%3C%2Fsvg%3E");
3147
3625
  background-position: 90% center;
3148
3626
  background-position: -webkit-calc(100% - 15px) center;
3149
3627
  background-position: calc(100% - 15px) center;
3150
- -webkit-background-size: 13px 10px;
3151
- background-size: 13px 10px;
3152
3628
  }
3153
3629
  label.label-checkbox,
3154
3630
  label.label-radio {
@@ -3172,6 +3648,230 @@ label.label-radio.active-state .item-inner:after {
3172
3648
  .smart-select select {
3173
3649
  display: none;
3174
3650
  }
3651
+ /* === Floating Action Button === */
3652
+ .floating-button {
3653
+ position: absolute;
3654
+ right: 15px;
3655
+ bottom: 15px;
3656
+ width: 50px;
3657
+ height: 50px;
3658
+ border-radius: 50%;
3659
+ z-index: 1500;
3660
+ background-color: #007aff;
3661
+ color: #fff;
3662
+ overflow: hidden;
3663
+ -webkit-transition-duration: 300ms;
3664
+ transition-duration: 300ms;
3665
+ display: -webkit-box;
3666
+ display: -ms-flexbox;
3667
+ display: -webkit-flex;
3668
+ display: flex;
3669
+ -webkit-box-align: center;
3670
+ -ms-flex-align: center;
3671
+ -webkit-align-items: center;
3672
+ align-items: center;
3673
+ -webkit-box-pack: center;
3674
+ -ms-flex-pack: center;
3675
+ -webkit-justify-content: center;
3676
+ justify-content: center;
3677
+ }
3678
+ html:not(.watch-active-state) .floating-button:active,
3679
+ .floating-button.active-state {
3680
+ -webkit-transition-duration: 0ms;
3681
+ transition-duration: 0ms;
3682
+ background: #0066d6;
3683
+ }
3684
+ .toolbar-fixed .floating-button,
3685
+ .toolbar-through .floating-button {
3686
+ bottom: 59px;
3687
+ }
3688
+ .tabbar-labels-fixed .floating-button,
3689
+ .tabbar-labels-through .floating-button {
3690
+ bottom: 65px;
3691
+ }
3692
+ @media (min-width: 768px) {
3693
+ .tabbar-labels-fixed .floating-button,
3694
+ .tabbar-labels-through .floating-button {
3695
+ bottom: 71px;
3696
+ }
3697
+ }
3698
+ .floating-button-toolbar,
3699
+ .speed-dial {
3700
+ position: absolute;
3701
+ right: 15px;
3702
+ bottom: 15px;
3703
+ z-index: 1500;
3704
+ }
3705
+ .toolbar-fixed .floating-button-toolbar,
3706
+ .toolbar-fixed .speed-dial,
3707
+ .toolbar-through .floating-button-toolbar,
3708
+ .toolbar-through .speed-dial {
3709
+ bottom: 59px;
3710
+ }
3711
+ .tabbar-labels-fixed .floating-button-toolbar,
3712
+ .tabbar-labels-fixed .speed-dial,
3713
+ .tabbar-labels-through .floating-button-toolbar,
3714
+ .tabbar-labels-through .speed-dial {
3715
+ bottom: 65px;
3716
+ }
3717
+ @media (min-width: 768px) {
3718
+ .tabbar-labels-fixed .floating-button-toolbar,
3719
+ .tabbar-labels-fixed .speed-dial,
3720
+ .tabbar-labels-through .floating-button-toolbar,
3721
+ .tabbar-labels-through .speed-dial {
3722
+ bottom: 71px;
3723
+ }
3724
+ }
3725
+ .floating-button-toolbar .floating-button,
3726
+ .speed-dial .floating-button {
3727
+ right: 0;
3728
+ bottom: 0;
3729
+ position: relative;
3730
+ }
3731
+ .speed-dial .floating-button i {
3732
+ position: absolute;
3733
+ left: 50%;
3734
+ top: 50%;
3735
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
3736
+ transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
3737
+ -webkit-transition-duration: 300ms;
3738
+ transition-duration: 300ms;
3739
+ }
3740
+ .speed-dial .floating-button i + i {
3741
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(-90deg) scale(0.5);
3742
+ transform: translate3d(-50%, -50%, 0) rotate(-90deg) scale(0.5);
3743
+ opacity: 0;
3744
+ }
3745
+ .speed-dial.speed-dial-opened .floating-button i {
3746
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(90deg) scale(0.5);
3747
+ transform: translate3d(-50%, -50%, 0) rotate(90deg) scale(0.5);
3748
+ opacity: 0;
3749
+ }
3750
+ .speed-dial.speed-dial-opened .floating-button i + i {
3751
+ -webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
3752
+ transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
3753
+ opacity: 1;
3754
+ }
3755
+ .speed-dial-buttons {
3756
+ position: absolute;
3757
+ width: 40px;
3758
+ left: 50%;
3759
+ margin-left: -20px;
3760
+ bottom: 100%;
3761
+ margin-bottom: 16px;
3762
+ display: -webkit-box;
3763
+ display: -ms-flexbox;
3764
+ display: -webkit-flex;
3765
+ display: flex;
3766
+ -webkit-box-orient: vertical;
3767
+ -webkit-box-direction: reverse;
3768
+ -moz-box-orient: vertical;
3769
+ -moz-box-direction: reverse;
3770
+ -ms-flex-direction: column-reverse;
3771
+ -webkit-flex-direction: column-reverse;
3772
+ flex-direction: column-reverse;
3773
+ visibility: hidden;
3774
+ pointer-events: none;
3775
+ }
3776
+ .speed-dial-buttons a {
3777
+ width: 40px;
3778
+ height: 40px;
3779
+ opacity: 0;
3780
+ color: #fff;
3781
+ border-radius: 50%;
3782
+ position: relative;
3783
+ z-index: 1;
3784
+ overflow: hidden;
3785
+ background-color: #007aff;
3786
+ -webkit-transition-duration: 300ms;
3787
+ transition-duration: 300ms;
3788
+ display: -webkit-box;
3789
+ display: -ms-flexbox;
3790
+ display: -webkit-flex;
3791
+ display: flex;
3792
+ -webkit-box-align: center;
3793
+ -ms-flex-align: center;
3794
+ -webkit-align-items: center;
3795
+ align-items: center;
3796
+ -webkit-box-pack: center;
3797
+ -ms-flex-pack: center;
3798
+ -webkit-justify-content: center;
3799
+ justify-content: center;
3800
+ -webkit-transform: translate3d(0, 8px, 0) scale(0.3);
3801
+ transform: translate3d(0, 8px, 0) scale(0.3);
3802
+ -webkit-transform-origin: center bottom;
3803
+ transform-origin: center bottom;
3804
+ }
3805
+ .speed-dial-buttons a + a {
3806
+ margin-bottom: 16px;
3807
+ }
3808
+ html:not(.watch-active-state) .speed-dial-buttons a:active,
3809
+ .speed-dial-buttons a.active-state {
3810
+ -webkit-transition-duration: 0ms;
3811
+ transition-duration: 0ms;
3812
+ background: #0066d6;
3813
+ }
3814
+ .speed-dial-opened .speed-dial-buttons {
3815
+ visibility: visible;
3816
+ pointer-events: auto;
3817
+ }
3818
+ .speed-dial-opened .speed-dial-buttons a {
3819
+ opacity: 1;
3820
+ -webkit-transform: translate3d(0, 0, 0) scaleY(1);
3821
+ transform: translate3d(0, 0, 0) scaleY(1);
3822
+ }
3823
+ .speed-dial-opened .speed-dial-buttons a:nth-child(2) {
3824
+ -webkit-transition-delay: 50ms;
3825
+ transition-delay: 50ms;
3826
+ }
3827
+ .speed-dial-opened .speed-dial-buttons a:nth-child(3) {
3828
+ -webkit-transition-delay: 100ms;
3829
+ transition-delay: 100ms;
3830
+ }
3831
+ .speed-dial-opened .speed-dial-buttons a:nth-child(4) {
3832
+ -webkit-transition-delay: 150ms;
3833
+ transition-delay: 150ms;
3834
+ }
3835
+ .speed-dial-opened .speed-dial-buttons a:nth-child(5) {
3836
+ -webkit-transition-delay: 200ms;
3837
+ transition-delay: 200ms;
3838
+ }
3839
+ .speed-dial-opened .speed-dial-buttons a:nth-child(6) {
3840
+ -webkit-transition-delay: 250ms;
3841
+ transition-delay: 250ms;
3842
+ }
3843
+ .floating-button-to-popover.floating-button-to-popover {
3844
+ -webkit-transition-duration: 300ms;
3845
+ transition-duration: 300ms;
3846
+ }
3847
+ .floating-button-to-popover.floating-button-to-popover-in {
3848
+ -webkit-transition-duration: 100ms;
3849
+ transition-duration: 100ms;
3850
+ }
3851
+ .floating-button-to-popover.floating-button-to-popover-in i {
3852
+ opacity: 0;
3853
+ -webkit-transition-duration: 100ms;
3854
+ transition-duration: 100ms;
3855
+ }
3856
+ .floating-button-to-popover.floating-button-to-popover-scale {
3857
+ border-radius: 0;
3858
+ -webkit-transition-duration: 300ms;
3859
+ transition-duration: 300ms;
3860
+ box-shadow: none;
3861
+ }
3862
+ .floating-button-to-popover.floating-button-to-popover-out {
3863
+ -webkit-transition-delay: 0ms;
3864
+ transition-delay: 0ms;
3865
+ -webkit-transition-duration: 300ms;
3866
+ transition-duration: 300ms;
3867
+ }
3868
+ .floating-button-to-popover.floating-button-to-popover-out i {
3869
+ opacity: 1;
3870
+ -webkit-transition-duration: 100ms;
3871
+ transition-duration: 100ms;
3872
+ -webkit-transition-delay: 200ms;
3873
+ transition-delay: 200ms;
3874
+ }
3175
3875
  /* === Accordion === */
3176
3876
  .list-block .accordion-item-toggle {
3177
3877
  cursor: pointer;
@@ -3449,7 +4149,8 @@ html.pixel-ratio-3 .card-footer:before {
3449
4149
  /* === Modals === */
3450
4150
  .modal-overlay,
3451
4151
  .preloader-indicator-overlay,
3452
- .popup-overlay {
4152
+ .popup-overlay,
4153
+ .picker-modal-overlay {
3453
4154
  position: absolute;
3454
4155
  left: 0;
3455
4156
  top: 0;
@@ -3462,12 +4163,23 @@ html.pixel-ratio-3 .card-footer:before {
3462
4163
  -webkit-transition-duration: 400ms;
3463
4164
  transition-duration: 400ms;
3464
4165
  }
4166
+ .modal-overlay.not-animated,
4167
+ .preloader-indicator-overlay.not-animated,
4168
+ .popup-overlay.not-animated,
4169
+ .picker-modal-overlay.not-animated {
4170
+ -webkit-transition-duration: 0ms;
4171
+ transition-duration: 0ms;
4172
+ }
3465
4173
  .modal-overlay.modal-overlay-visible,
3466
4174
  .preloader-indicator-overlay.modal-overlay-visible,
3467
- .popup-overlay.modal-overlay-visible {
4175
+ .popup-overlay.modal-overlay-visible,
4176
+ .picker-modal-overlay.modal-overlay-visible {
3468
4177
  visibility: visible;
3469
4178
  opacity: 1;
3470
4179
  }
4180
+ .picker-modal-overlay {
4181
+ z-index: 12000;
4182
+ }
3471
4183
  .popup-overlay {
3472
4184
  z-index: 10500;
3473
4185
  }
@@ -3683,6 +4395,9 @@ html.pixel-ratio-3 .modal-buttons-vertical .modal-button:after {
3683
4395
  width: 100%;
3684
4396
  -webkit-transform: translate3d(0, 100%, 0);
3685
4397
  transform: translate3d(0, 100%, 0);
4398
+ max-height: 100%;
4399
+ overflow: auto;
4400
+ -webkit-overflow-scrolling: touch;
3686
4401
  }
3687
4402
  @media (min-width: 496px) {
3688
4403
  .actions-modal {
@@ -3691,16 +4406,22 @@ html.pixel-ratio-3 .modal-buttons-vertical .modal-button:after {
3691
4406
  margin-left: -240px;
3692
4407
  }
3693
4408
  }
3694
- .actions-modal.modal-in {
4409
+ .actions-modal.modal-in,
4410
+ .actions-modal.modal-out {
3695
4411
  -webkit-transition-duration: 300ms;
3696
4412
  transition-duration: 300ms;
4413
+ }
4414
+ .actions-modal.modal-in.not-animated,
4415
+ .actions-modal.modal-out.not-animated {
4416
+ -webkit-transition-duration: 0ms;
4417
+ transition-duration: 0ms;
4418
+ }
4419
+ .actions-modal.modal-in {
3697
4420
  -webkit-transform: translate3d(0, 0, 0);
3698
4421
  transform: translate3d(0, 0, 0);
3699
4422
  }
3700
4423
  .actions-modal.modal-out {
3701
4424
  z-index: 13499;
3702
- -webkit-transition-duration: 300ms;
3703
- transition-duration: 300ms;
3704
4425
  -webkit-transform: translate3d(0, 100%, 0);
3705
4426
  transform: translate3d(0, 100%, 0);
3706
4427
  }
@@ -3888,6 +4609,10 @@ input.modal-text-input + input.modal-text-input {
3888
4609
  transition-duration: 300ms;
3889
4610
  opacity: 1;
3890
4611
  }
4612
+ .popover.modal-in.not-animated {
4613
+ -webkit-transition-duration: 0ms;
4614
+ transition-duration: 0ms;
4615
+ }
3891
4616
  .popover .list-block {
3892
4617
  margin: 0;
3893
4618
  }
@@ -4042,6 +4767,13 @@ html.pixel-ratio-3 .actions-popover-label:after {
4042
4767
  -webkit-transition-duration: 400ms;
4043
4768
  transition-duration: 400ms;
4044
4769
  }
4770
+ .popup.modal-in.not-animated,
4771
+ .login-screen.modal-in.not-animated,
4772
+ .popup.modal-out.not-animated,
4773
+ .login-screen.modal-out.not-animated {
4774
+ -webkit-transition-duration: 0ms;
4775
+ transition-duration: 0ms;
4776
+ }
4045
4777
  .popup.modal-in,
4046
4778
  .login-screen.modal-in {
4047
4779
  -webkit-transform: translate3d(0, 0, 0);
@@ -4139,6 +4871,11 @@ html.with-statusbar-overlay .popup.tablet-fullscreen {
4139
4871
  -webkit-transition-duration: 400ms;
4140
4872
  transition-duration: 400ms;
4141
4873
  }
4874
+ .picker-modal.modal-in.not-animated,
4875
+ .picker-modal.modal-out.not-animated {
4876
+ -webkit-transition-duration: 0ms;
4877
+ transition-duration: 0ms;
4878
+ }
4142
4879
  .picker-modal.modal-in {
4143
4880
  -webkit-transform: translate3d(0, 0, 0);
4144
4881
  transform: translate3d(0, 0, 0);
@@ -4275,6 +5012,14 @@ html.pixel-ratio-3 .picker-modal.smart-select-picker .toolbar:after {
4275
5012
  opacity: 0;
4276
5013
  z-index: 5999;
4277
5014
  display: none;
5015
+ -webkit-transform: translate3d(0, 0, 0);
5016
+ transform: translate3d(0, 0, 0);
5017
+ -webkit-transition-duration: 400ms;
5018
+ transition-duration: 400ms;
5019
+ }
5020
+ .panel-overlay.not-animated {
5021
+ -webkit-transition-duration: 0ms;
5022
+ transition-duration: 0ms;
4278
5023
  }
4279
5024
  .panel {
4280
5025
  z-index: 1000;
@@ -4292,19 +5037,33 @@ html.pixel-ratio-3 .picker-modal.smart-select-picker .toolbar:after {
4292
5037
  -webkit-transition-duration: 400ms;
4293
5038
  transition-duration: 400ms;
4294
5039
  }
5040
+ .panel.not-animated {
5041
+ -webkit-transition-duration: 0ms;
5042
+ transition-duration: 0ms;
5043
+ }
5044
+ .panel.panel-left {
5045
+ left: 0;
5046
+ }
4295
5047
  .panel.panel-left.panel-cover {
4296
5048
  z-index: 6000;
4297
- left: -260px;
5049
+ -webkit-transform: translate3d(-100%, 0, 0);
5050
+ transform: translate3d(-100%, 0, 0);
4298
5051
  }
4299
- .panel.panel-left.panel-reveal {
4300
- left: 0;
5052
+ .panel.panel-right {
5053
+ right: 0;
4301
5054
  }
4302
5055
  .panel.panel-right.panel-cover {
4303
5056
  z-index: 6000;
4304
- right: -260px;
5057
+ -webkit-transform: translate3d(100%, 0, 0);
5058
+ transform: translate3d(100%, 0, 0);
4305
5059
  }
4306
- .panel.panel-right.panel-reveal {
4307
- right: 0;
5060
+ .panel.panel-visible-by-breakpoint {
5061
+ display: block;
5062
+ -webkit-transform: translate3d(0, 0, 0) !important;
5063
+ transform: translate3d(0, 0, 0) !important;
5064
+ }
5065
+ .panel.panel-visible-by-breakpoint.panel-cover {
5066
+ z-index: 5900;
4308
5067
  }
4309
5068
  body.with-panel-left-cover .views,
4310
5069
  body.with-panel-right-cover .views {
@@ -4314,6 +5073,7 @@ body.with-panel-right-cover .views {
4314
5073
  body.with-panel-left-cover .panel-overlay,
4315
5074
  body.with-panel-right-cover .panel-overlay {
4316
5075
  display: block;
5076
+ opacity: 1;
4317
5077
  }
4318
5078
  body.with-panel-left-reveal .views,
4319
5079
  body.with-panel-right-reveal .views {
@@ -4323,32 +5083,44 @@ body.with-panel-right-reveal .views {
4323
5083
  -moz-transition-property: -moz-transform;
4324
5084
  transition-property: transform;
4325
5085
  }
5086
+ body.with-panel-left-reveal .panel.not-animated ~ .views,
5087
+ body.with-panel-right-reveal .panel.not-animated ~ .views {
5088
+ -webkit-transition-duration: 0ms;
5089
+ transition-duration: 0ms;
5090
+ }
4326
5091
  body.with-panel-left-reveal .panel-overlay,
4327
5092
  body.with-panel-right-reveal .panel-overlay {
5093
+ background: rgba(0, 0, 0, 0);
4328
5094
  display: block;
5095
+ opacity: 0;
4329
5096
  }
4330
5097
  body.with-panel-left-reveal .views {
4331
5098
  -webkit-transform: translate3d(260px, 0, 0);
4332
5099
  transform: translate3d(260px, 0, 0);
4333
5100
  }
4334
5101
  body.with-panel-left-reveal .panel-overlay {
4335
- margin-left: 260px;
4336
- }
4337
- body.with-panel-left-cover .panel-left {
4338
5102
  -webkit-transform: translate3d(260px, 0, 0);
4339
5103
  transform: translate3d(260px, 0, 0);
4340
5104
  }
5105
+ body.with-panel-left-cover .panel.panel-left {
5106
+ -webkit-transform: translate3d(0, 0, 0);
5107
+ transform: translate3d(0, 0, 0);
5108
+ }
4341
5109
  body.with-panel-right-reveal .views {
4342
5110
  -webkit-transform: translate3d(-260px, 0, 0);
4343
5111
  transform: translate3d(-260px, 0, 0);
4344
5112
  }
4345
5113
  body.with-panel-right-reveal .panel-overlay {
4346
- margin-left: -260px;
4347
- }
4348
- body.with-panel-right-cover .panel-right {
4349
5114
  -webkit-transform: translate3d(-260px, 0, 0);
4350
5115
  transform: translate3d(-260px, 0, 0);
4351
5116
  }
5117
+ body.with-panel-right-cover .panel.panel-right {
5118
+ -webkit-transform: translate3d(0, 0, 0);
5119
+ transform: translate3d(0, 0, 0);
5120
+ }
5121
+ body.panel-closing .panel-overlay {
5122
+ display: block;
5123
+ }
4352
5124
  body.panel-closing .views {
4353
5125
  -webkit-transition-duration: 400ms;
4354
5126
  transition-duration: 400ms;
@@ -4356,6 +5128,10 @@ body.panel-closing .views {
4356
5128
  -moz-transition-property: -moz-transform;
4357
5129
  transition-property: transform;
4358
5130
  }
5131
+ body.panel-closing .panel.not-animated ~ .views {
5132
+ -webkit-transition-duration: 0ms;
5133
+ transition-duration: 0ms;
5134
+ }
4359
5135
  /* === Images Lazy Loading === */
4360
5136
  .lazy-loaded.lazy-fadeIn {
4361
5137
  -webkit-animation: lazyFadeIn 600ms;
@@ -4406,6 +5182,10 @@ body.panel-closing .views {
4406
5182
  -ms-flex: 0 0 auto;
4407
5183
  flex-shrink: 0;
4408
5184
  }
5185
+ .tabs-animated-wrap.not-animated > .tabs {
5186
+ -webkit-transition-duration: 0ms;
5187
+ transition-duration: 0ms;
5188
+ }
4409
5189
  .tabs-swipeable-wrap {
4410
5190
  height: 100%;
4411
5191
  }
@@ -4468,14 +5248,16 @@ html.ios-gt-8 .messages-date {
4468
5248
  line-height: 1.2;
4469
5249
  word-break: break-word;
4470
5250
  }
5251
+ .message .message-text img {
5252
+ max-width: 100%;
5253
+ height: auto;
5254
+ }
4471
5255
  .message.message-pic .message-text {
4472
5256
  padding: 0;
4473
5257
  background: none;
4474
5258
  }
4475
- .message.message-pic assets {
5259
+ .message.message-pic img {
4476
5260
  display: block;
4477
- height: auto;
4478
- max-width: 100%;
4479
5261
  border-radius: 16px;
4480
5262
  }
4481
5263
  .message-name {
@@ -4512,6 +5294,17 @@ html.ios-gt-8 .messages-date {
4512
5294
  .message-hide-avatar .message-avatar {
4513
5295
  opacity: 0;
4514
5296
  }
5297
+ .message-date {
5298
+ font-size: 12px;
5299
+ margin-top: 4px;
5300
+ opacity: 0.8;
5301
+ }
5302
+ .message-pic img + .message-date {
5303
+ margin-top: 8px;
5304
+ }
5305
+ .message-sent .message-date {
5306
+ text-align: right;
5307
+ }
4515
5308
  .message-sent {
4516
5309
  -ms-flex-item-align: end;
4517
5310
  -webkit-align-self: flex-end;
@@ -4548,8 +5341,8 @@ html.ios-gt-8 .messages-date {
4548
5341
  border-radius: 16px 16px 0 16px;
4549
5342
  -webkit-mask-box-image: url("data:image/svg+xml;charset=utf-8,<svg height='35' viewBox='0 0 96 70' width='48' xmlns='http://www.w3.org/2000/svg'><path d='m84 35c1 7-5 37-42 35-37 2-43-28-42-35-1-7 5-37 42-35 37-2 43 28 42 35z'/><path d='m96 70c-6-2-12-10-12-19v-16l-14 27s8 8 26 8z'/></svg>") 50% 56% 46% 42%;
4550
5343
  }
4551
- .message-sent.message-last.message-pic assets,
4552
- .message-sent.message-with-tail.message-pic assets {
5344
+ .message-sent.message-last.message-pic img,
5345
+ .message-sent.message-with-tail.message-pic img {
4553
5346
  border-radius: 16px 16px 0 16px;
4554
5347
  }
4555
5348
  .message-received {
@@ -4587,8 +5380,8 @@ html.ios-gt-8 .messages-date {
4587
5380
  border-radius: 16px 16px 16px 0;
4588
5381
  -webkit-mask-box-image: url("data:image/svg+xml;charset=utf-8,<svg height='35' viewBox='0 0 96 70' width='48' xmlns='http://www.w3.org/2000/svg'><path d='m96 35c1 7-5 37-42 35-37 2-43-28-42-35-1-7 5-37 42-35 37-2 43 28 42 35z'/><path d='m0 70c6-2 12-10 12-19v-16l14 27s-8 8-26 8z'/></svg>") 50% 42% 46% 56%;
4589
5382
  }
4590
- .message-received.message-last.message-pic assets,
4591
- .message-received.message-with-tail.message-pic assets {
5383
+ .message-received.message-last.message-pic img,
5384
+ .message-received.message-with-tail.message-pic img {
4592
5385
  border-radius: 16px 16px 16px 0;
4593
5386
  }
4594
5387
  .message-last {
@@ -4619,7 +5412,7 @@ html.ios-gt-8 .messages-date {
4619
5412
  display: block;
4620
5413
  }
4621
5414
  html.retina.ios-6 .message,
4622
- html.retina.ios-6 .message.message-pic assets {
5415
+ html.retina.ios-6 .message.message-pic img {
4623
5416
  -webkit-mask-box-image: none;
4624
5417
  border-radius: 16px;
4625
5418
  }
@@ -4656,14 +5449,14 @@ html.retina.ios-6 .message.message-pic assets {
4656
5449
  }
4657
5450
  }
4658
5451
  /* === Statusbar overlay === */
4659
- html.with-statusbar-overlay body {
5452
+ html.with-statusbar-overlay .framework7-root {
4660
5453
  padding-top: 20px;
4661
5454
  box-sizing: border-box;
4662
5455
  }
4663
- html.with-statusbar-overlay body .statusbar-overlay {
5456
+ html.with-statusbar-overlay .framework7-root .statusbar-overlay {
4664
5457
  display: block;
4665
5458
  }
4666
- html.with-statusbar-overlay body .panel {
5459
+ html.with-statusbar-overlay .framework7-root .panel {
4667
5460
  padding-top: 20px;
4668
5461
  }
4669
5462
  .statusbar-overlay {
@@ -4690,9 +5483,6 @@ html.with-statusbar-overlay body .panel {
4690
5483
  -webkit-animation: preloader-spin 1s steps(12, end) infinite;
4691
5484
  animation: preloader-spin 1s steps(12, end) infinite;
4692
5485
  }
4693
- .preloader-white {
4694
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
4695
- }
4696
5486
  @-webkit-keyframes preloader-spin {
4697
5487
  100% {
4698
5488
  -webkit-transform: rotate(360deg);
@@ -4748,7 +5538,8 @@ html.with-statusbar-overlay body .panel {
4748
5538
  -webkit-animation: progressbar-infinite 1s linear infinite;
4749
5539
  animation: progressbar-infinite 1s linear infinite;
4750
5540
  }
4751
- html.with-statusbar-overlay body > .progressbar-infinite {
5541
+ html.with-statusbar-overlay body > .progressbar-infinite,
5542
+ html.with-statusbar-overlay .framework7-root > .progressbar-infinite {
4752
5543
  top: 20px;
4753
5544
  }
4754
5545
  .progressbar-infinite.color-multi {
@@ -4770,7 +5561,8 @@ html.with-statusbar-overlay body > .progressbar-infinite {
4770
5561
  -webkit-animation: progressbar-infinite-multicolor 3s linear infinite;
4771
5562
  animation: progressbar-infinite-multicolor 3s linear infinite;
4772
5563
  }
4773
- html.with-statusbar-overlay body > .progressbar-infinite.color-multi {
5564
+ html.with-statusbar-overlay body > .progressbar-infinite.color-multi,
5565
+ html.with-statusbar-overlay .framework7-root > .progressbar-infinite.color-multi {
4774
5566
  top: 20px;
4775
5567
  }
4776
5568
  body > .progressbar,
@@ -4779,12 +5571,14 @@ body > .progressbar,
4779
5571
  .page > .progressbar,
4780
5572
  .panel > .progressbar,
4781
5573
  .popup > .progressbar,
5574
+ .framework7-root > .progressbar,
4782
5575
  body > .progressbar-infinite,
4783
5576
  .view > .progressbar-infinite,
4784
5577
  .views > .progressbar-infinite,
4785
5578
  .page > .progressbar-infinite,
4786
5579
  .panel > .progressbar-infinite,
4787
- .popup > .progressbar-infinite {
5580
+ .popup > .progressbar-infinite,
5581
+ .framework7-root > .progressbar-infinite {
4788
5582
  position: absolute;
4789
5583
  left: 0;
4790
5584
  top: 0;
@@ -4799,6 +5593,7 @@ body > .progressbar-infinite,
4799
5593
  -webkit-animation: progressbar-out 300ms forwards;
4800
5594
  animation: progressbar-out 300ms forwards;
4801
5595
  }
5596
+ html.with-statusbar-overlay .framework7-root > .progressbar,
4802
5597
  html.with-statusbar-overlay body > .progressbar {
4803
5598
  top: 20px;
4804
5599
  }
@@ -4943,6 +5738,11 @@ html.with-statusbar-overlay body > .progressbar {
4943
5738
  -webkit-transform: rotate(180deg) translate3d(0, 0, 0);
4944
5739
  transform: rotate(180deg) translate3d(0, 0, 0);
4945
5740
  }
5741
+ /* === Infinite Scroll Preloader === */
5742
+ .infinite-scroll-preloader {
5743
+ text-align: center;
5744
+ padding: 5px 0;
5745
+ }
4946
5746
  /* === Autocomplete === */
4947
5747
  .autocomplete-page .autocomplete-found {
4948
5748
  display: block;
@@ -5022,13 +5822,605 @@ html.ios-gt-8 .autocomplete-dropdown .list-block b {
5022
5822
  .list-block .item-content-dropdown-expand .item-input {
5023
5823
  width: 100%;
5024
5824
  }
5025
- /* === Swiper === */
5026
- .swiper-container {
5027
- margin: 0 auto;
5028
- position: relative;
5029
- overflow: hidden;
5030
- /* Fix of Webkit flickering */
5031
- z-index: 1;
5825
+ /* === Timeline === */
5826
+ .timeline {
5827
+ margin: 35px 0;
5828
+ padding: 0 15px;
5829
+ box-sizing: border-box;
5830
+ }
5831
+ .content-block-inner .timeline {
5832
+ padding: 0;
5833
+ margin: 0;
5834
+ }
5835
+ .timeline-item {
5836
+ display: -webkit-box;
5837
+ display: -ms-flexbox;
5838
+ display: -webkit-flex;
5839
+ display: flex;
5840
+ -webkit-box-pack: start;
5841
+ -ms-flex-pack: start;
5842
+ -webkit-justify-content: flex-start;
5843
+ justify-content: flex-start;
5844
+ overflow: hidden;
5845
+ padding: 2px 0px 15px;
5846
+ box-sizing: border-box;
5847
+ position: relative;
5848
+ }
5849
+ .timeline-item:last-child {
5850
+ padding-bottom: 2px;
5851
+ }
5852
+ .timeline-item-date {
5853
+ -webkit-flex-shrink: 0;
5854
+ -ms-flex: 0 0 auto;
5855
+ flex-shrink: 0;
5856
+ width: 50px;
5857
+ text-align: right;
5858
+ box-sizing: border-box;
5859
+ }
5860
+ .timeline-item-date small {
5861
+ font-size: 10px;
5862
+ }
5863
+ .timeline-item-content {
5864
+ margin: 2px;
5865
+ min-width: 0;
5866
+ position: relative;
5867
+ -webkit-flex-shrink: 10;
5868
+ -ms-flex: 0 10 auto;
5869
+ flex-shrink: 10;
5870
+ }
5871
+ .timeline-item-content p:first-child,
5872
+ .timeline-item-content ul:first-child,
5873
+ .timeline-item-content ol:first-child,
5874
+ .timeline-item-content h1:first-child,
5875
+ .timeline-item-content h2:first-child,
5876
+ .timeline-item-content h3:first-child,
5877
+ .timeline-item-content h4:first-child {
5878
+ margin-top: 0;
5879
+ }
5880
+ .timeline-item-content p:last-child,
5881
+ .timeline-item-content ul:last-child,
5882
+ .timeline-item-content ol:last-child,
5883
+ .timeline-item-content h1:last-child,
5884
+ .timeline-item-content h2:last-child,
5885
+ .timeline-item-content h3:last-child,
5886
+ .timeline-item-content h4:last-child {
5887
+ margin-bottom: 0;
5888
+ }
5889
+ .timeline-item-content .card,
5890
+ .timeline-item-content.card,
5891
+ .timeline-item-content .list-block,
5892
+ .timeline-item-content.list-block,
5893
+ .timeline-item-content .content-block,
5894
+ .timeline-item-content.content-block {
5895
+ margin: 0;
5896
+ width: 100%;
5897
+ }
5898
+ .timeline-item-content .card + .card,
5899
+ .timeline-item-content .list-block + .card,
5900
+ .timeline-item-content .content-block + .card,
5901
+ .timeline-item-content .card + .list-block,
5902
+ .timeline-item-content .list-block + .list-block,
5903
+ .timeline-item-content .content-block + .list-block,
5904
+ .timeline-item-content .card + .content-block,
5905
+ .timeline-item-content .list-block + .content-block,
5906
+ .timeline-item-content .content-block + .content-block {
5907
+ margin: 15px 0 0;
5908
+ }
5909
+ .timeline-item-inner {
5910
+ border-radius: 7px;
5911
+ padding: 8px 15px;
5912
+ background: #fff;
5913
+ box-sizing: border-box;
5914
+ }
5915
+ .timeline-item-inner .content-block {
5916
+ padding: 0;
5917
+ color: inherit;
5918
+ }
5919
+ .timeline-item-inner .content-block-inner {
5920
+ padding-left: 0;
5921
+ padding-right: 0;
5922
+ margin: 0;
5923
+ }
5924
+ .timeline-item-inner .content-block-inner:before {
5925
+ display: none;
5926
+ }
5927
+ .timeline-item-inner .content-block-inner:after {
5928
+ display: none;
5929
+ }
5930
+ .timeline-item-inner .list-block ul:before {
5931
+ display: none;
5932
+ }
5933
+ .timeline-item-inner .list-block ul:after {
5934
+ display: none;
5935
+ }
5936
+ .content-block-inner .timeline-item-inner {
5937
+ border-radius: 3px;
5938
+ border: 1px solid rgba(0, 0, 0, 0.1);
5939
+ }
5940
+ .timeline-item-inner + .timeline-item-inner {
5941
+ margin-top: 15px;
5942
+ }
5943
+ .timeline-item-divider {
5944
+ width: 1px;
5945
+ margin: 0 15px;
5946
+ position: relative;
5947
+ width: 10px;
5948
+ height: 10px;
5949
+ background: #bbb;
5950
+ border-radius: 50%;
5951
+ margin-top: 3px;
5952
+ -webkit-flex-shrink: 0;
5953
+ -ms-flex: 0 0 auto;
5954
+ flex-shrink: 0;
5955
+ }
5956
+ .timeline-item-divider:after,
5957
+ .timeline-item-divider:before {
5958
+ content: ' ';
5959
+ width: 1px;
5960
+ height: 100vh;
5961
+ position: absolute;
5962
+ left: 50%;
5963
+ background: inherit;
5964
+ -webkit-transform: translate3d(-50%, 0, 0);
5965
+ transform: translate3d(-50%, 0, 0);
5966
+ }
5967
+ .timeline-item-divider:after {
5968
+ top: 100%;
5969
+ }
5970
+ .timeline-item-divider:before {
5971
+ bottom: 100%;
5972
+ }
5973
+ .timeline-item:last-child .timeline-item-divider:after {
5974
+ display: none;
5975
+ }
5976
+ .timeline-item:first-child .timeline-item-divider:before {
5977
+ display: none;
5978
+ }
5979
+ .timeline-item-time {
5980
+ margin-top: 15px;
5981
+ font-size: 13px;
5982
+ color: #6d6d72;
5983
+ }
5984
+ .timeline-item-time:first-child,
5985
+ .timeline-item-time:last-child {
5986
+ margin-top: 0;
5987
+ }
5988
+ .timeline-item-title + .timeline-item-time {
5989
+ margin-top: 0;
5990
+ }
5991
+ .timeline-item-title {
5992
+ font-size: 17px;
5993
+ font-weight: 500;
5994
+ }
5995
+ html.ios-gt-8 .timeline-item-title {
5996
+ font-weight: 600;
5997
+ }
5998
+ .timeline-item-subtitle {
5999
+ font-size: 15px;
6000
+ }
6001
+ .timeline-sides .timeline-item {
6002
+ margin-left: -moz-calc(50% - (30px + 10px) / 2 - 50px);
6003
+ margin-left: -webkit-calc(50% - (30px + 10px) / 2 - 50px);
6004
+ margin-left: calc(50% - (30px + 10px) / 2 - 50px);
6005
+ margin-right: 0;
6006
+ }
6007
+ .timeline-sides .timeline-item .timeline-item-date {
6008
+ text-align: right;
6009
+ }
6010
+ .timeline-sides .timeline-item:not(.timeline-item-right):nth-child(2n) {
6011
+ -webkit-box-direction: reverse;
6012
+ -moz-box-direction: reverse;
6013
+ -ms-flex-direction: row-reverse;
6014
+ -webkit-flex-direction: row-reverse;
6015
+ flex-direction: row-reverse;
6016
+ margin-right: -moz-calc(50% - (30px + 10px) / 2 - 50px);
6017
+ margin-right: -webkit-calc(50% - (30px + 10px) / 2 - 50px);
6018
+ margin-right: calc(50% - (30px + 10px) / 2 - 50px);
6019
+ margin-left: 0;
6020
+ }
6021
+ .timeline-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date {
6022
+ text-align: left;
6023
+ }
6024
+ .timeline-sides .timeline-item-left {
6025
+ -webkit-box-direction: reverse;
6026
+ -moz-box-direction: reverse;
6027
+ -ms-flex-direction: row-reverse;
6028
+ -webkit-flex-direction: row-reverse;
6029
+ flex-direction: row-reverse;
6030
+ margin-right: -moz-calc(50% - (30px + 10px) / 2 - 50px);
6031
+ margin-right: -webkit-calc(50% - (30px + 10px) / 2 - 50px);
6032
+ margin-right: calc(50% - (30px + 10px) / 2 - 50px);
6033
+ margin-left: 0;
6034
+ }
6035
+ .timeline-sides .timeline-item-left .timeline-item-date {
6036
+ text-align: left;
6037
+ }
6038
+ .timeline-sides .timeline-item-right {
6039
+ margin-left: -moz-calc(50% - (30px + 10px) / 2 - 50px);
6040
+ margin-left: -webkit-calc(50% - (30px + 10px) / 2 - 50px);
6041
+ margin-left: calc(50% - (30px + 10px) / 2 - 50px);
6042
+ margin-right: 0;
6043
+ }
6044
+ .timeline-sides .timeline-item-right .timeline-item-date {
6045
+ text-align: right;
6046
+ }
6047
+ @media (min-width: 768px) {
6048
+ .tablet-sides .timeline-item {
6049
+ margin-left: -moz-calc(50% - (30px + 10px) / 2 - 50px);
6050
+ margin-left: -webkit-calc(50% - (30px + 10px) / 2 - 50px);
6051
+ margin-left: calc(50% - (30px + 10px) / 2 - 50px);
6052
+ margin-right: 0;
6053
+ }
6054
+ .tablet-sides .timeline-item .timeline-item-date {
6055
+ text-align: right;
6056
+ }
6057
+ .tablet-sides .timeline-item:not(.timeline-item-right):nth-child(2n) {
6058
+ -webkit-box-direction: reverse;
6059
+ -moz-box-direction: reverse;
6060
+ -ms-flex-direction: row-reverse;
6061
+ -webkit-flex-direction: row-reverse;
6062
+ flex-direction: row-reverse;
6063
+ margin-right: -moz-calc(50% - (30px + 10px) / 2 - 50px);
6064
+ margin-right: -webkit-calc(50% - (30px + 10px) / 2 - 50px);
6065
+ margin-right: calc(50% - (30px + 10px) / 2 - 50px);
6066
+ margin-left: 0;
6067
+ }
6068
+ .tablet-sides .timeline-item:not(.timeline-item-right):nth-child(2n) .timeline-item-date {
6069
+ text-align: left;
6070
+ }
6071
+ .tablet-sides .timeline-item-left {
6072
+ -webkit-box-direction: reverse;
6073
+ -moz-box-direction: reverse;
6074
+ -ms-flex-direction: row-reverse;
6075
+ -webkit-flex-direction: row-reverse;
6076
+ flex-direction: row-reverse;
6077
+ margin-right: -moz-calc(50% - (30px + 10px) / 2 - 50px);
6078
+ margin-right: -webkit-calc(50% - (30px + 10px) / 2 - 50px);
6079
+ margin-right: calc(50% - (30px + 10px) / 2 - 50px);
6080
+ margin-left: 0;
6081
+ }
6082
+ .tablet-sides .timeline-item-left .timeline-item-date {
6083
+ text-align: left;
6084
+ }
6085
+ .tablet-sides .timeline-item-right {
6086
+ margin-left: -moz-calc(50% - (30px + 10px) / 2 - 50px);
6087
+ margin-left: -webkit-calc(50% - (30px + 10px) / 2 - 50px);
6088
+ margin-left: calc(50% - (30px + 10px) / 2 - 50px);
6089
+ margin-right: 0;
6090
+ }
6091
+ .tablet-sides .timeline-item-right .timeline-item-date {
6092
+ text-align: right;
6093
+ }
6094
+ }
6095
+ .timeline-horizontal {
6096
+ padding: 0;
6097
+ margin: 0;
6098
+ height: 100%;
6099
+ display: -webkit-box;
6100
+ display: -ms-flexbox;
6101
+ display: -webkit-flex;
6102
+ display: flex;
6103
+ }
6104
+ .timeline-horizontal .timeline-item {
6105
+ display: block;
6106
+ width: 33.33333333vw;
6107
+ margin: 0;
6108
+ padding: 0;
6109
+ -webkit-flex-shrink: 0;
6110
+ -ms-flex: 0 0 auto;
6111
+ flex-shrink: 0;
6112
+ padding-top: 34px;
6113
+ padding-bottom: 10px;
6114
+ position: relative;
6115
+ height: 100%;
6116
+ }
6117
+ .timeline-horizontal .timeline-item:after {
6118
+ content: '';
6119
+ position: absolute;
6120
+ right: 0;
6121
+ top: 0;
6122
+ left: auto;
6123
+ bottom: auto;
6124
+ width: 1px;
6125
+ height: 100%;
6126
+ background-color: #c4c4c4;
6127
+ display: block;
6128
+ z-index: 15;
6129
+ -webkit-transform-origin: 100% 50%;
6130
+ transform-origin: 100% 50%;
6131
+ }
6132
+ html.pixel-ratio-2 .timeline-horizontal .timeline-item:after {
6133
+ -webkit-transform: scaleX(0.5);
6134
+ transform: scaleX(0.5);
6135
+ }
6136
+ html.pixel-ratio-3 .timeline-horizontal .timeline-item:after {
6137
+ -webkit-transform: scaleX(0.33);
6138
+ transform: scaleX(0.33);
6139
+ }
6140
+ .timeline-horizontal .timeline-month:last-child .timeline-item:last-child:after {
6141
+ display: none;
6142
+ }
6143
+ .timeline-horizontal .timeline-item-date {
6144
+ background: #f7f7f8;
6145
+ width: auto;
6146
+ text-align: left;
6147
+ padding: 0px 10px;
6148
+ line-height: 34px;
6149
+ position: absolute;
6150
+ left: 0;
6151
+ top: 0;
6152
+ width: 100%;
6153
+ height: 34px;
6154
+ }
6155
+ .timeline-horizontal .timeline-item-date:after {
6156
+ content: '';
6157
+ position: absolute;
6158
+ left: 0;
6159
+ bottom: 0;
6160
+ right: auto;
6161
+ top: auto;
6162
+ height: 1px;
6163
+ width: 100%;
6164
+ background-color: #c4c4c4;
6165
+ display: block;
6166
+ z-index: 15;
6167
+ -webkit-transform-origin: 50% 100%;
6168
+ transform-origin: 50% 100%;
6169
+ }
6170
+ html.pixel-ratio-2 .timeline-horizontal .timeline-item-date:after {
6171
+ -webkit-transform: scaleY(0.5);
6172
+ transform: scaleY(0.5);
6173
+ }
6174
+ html.pixel-ratio-3 .timeline-horizontal .timeline-item-date:after {
6175
+ -webkit-transform: scaleY(0.33);
6176
+ transform: scaleY(0.33);
6177
+ }
6178
+ .timeline-horizontal .timeline-item-content {
6179
+ padding: 10px;
6180
+ overflow: auto;
6181
+ -webkit-overflow-scrolling: touch;
6182
+ margin: 0;
6183
+ height: -webkit-calc(100% - 10px);
6184
+ height: -moz-calc(100% - 10px);
6185
+ height: calc(100% - 10px);
6186
+ }
6187
+ .timeline-horizontal .timeline-item-divider {
6188
+ display: none;
6189
+ }
6190
+ .timeline-horizontal.col-100 .timeline-item {
6191
+ width: 100vw;
6192
+ }
6193
+ .timeline-horizontal.col-95 .timeline-item {
6194
+ width: 95vw;
6195
+ }
6196
+ .timeline-horizontal.col-90 .timeline-item {
6197
+ width: 90vw;
6198
+ }
6199
+ .timeline-horizontal.col-85 .timeline-item {
6200
+ width: 85vw;
6201
+ }
6202
+ .timeline-horizontal.col-80 .timeline-item {
6203
+ width: 80vw;
6204
+ }
6205
+ .timeline-horizontal.col-75 .timeline-item {
6206
+ width: 75vw;
6207
+ }
6208
+ .timeline-horizontal.col-70 .timeline-item {
6209
+ width: 70vw;
6210
+ }
6211
+ .timeline-horizontal.col-66 .timeline-item {
6212
+ width: 66.66666666666666vw;
6213
+ }
6214
+ .timeline-horizontal.col-65 .timeline-item {
6215
+ width: 65vw;
6216
+ }
6217
+ .timeline-horizontal.col-60 .timeline-item {
6218
+ width: 60vw;
6219
+ }
6220
+ .timeline-horizontal.col-55 .timeline-item {
6221
+ width: 55vw;
6222
+ }
6223
+ .timeline-horizontal.col-50 .timeline-item {
6224
+ width: 50vw;
6225
+ }
6226
+ .timeline-horizontal.col-45 .timeline-item {
6227
+ width: 45vw;
6228
+ }
6229
+ .timeline-horizontal.col-40 .timeline-item {
6230
+ width: 40vw;
6231
+ }
6232
+ .timeline-horizontal.col-35 .timeline-item {
6233
+ width: 35vw;
6234
+ }
6235
+ .timeline-horizontal.col-33 .timeline-item {
6236
+ width: 33.333333333333336vw;
6237
+ }
6238
+ .timeline-horizontal.col-30 .timeline-item {
6239
+ width: 30vw;
6240
+ }
6241
+ .timeline-horizontal.col-25 .timeline-item {
6242
+ width: 25vw;
6243
+ }
6244
+ .timeline-horizontal.col-20 .timeline-item {
6245
+ width: 20vw;
6246
+ }
6247
+ .timeline-horizontal.col-15 .timeline-item {
6248
+ width: 15vw;
6249
+ }
6250
+ .timeline-horizontal.col-10 .timeline-item {
6251
+ width: 10vw;
6252
+ }
6253
+ .timeline-horizontal.col-5 .timeline-item {
6254
+ width: 5vw;
6255
+ }
6256
+ @media all and (min-width: 768px) {
6257
+ .timeline-horizontal.tablet-100 .timeline-item {
6258
+ width: 100vw;
6259
+ }
6260
+ .timeline-horizontal.tablet-95 .timeline-item {
6261
+ width: 95vw;
6262
+ }
6263
+ .timeline-horizontal.tablet-90 .timeline-item {
6264
+ width: 90vw;
6265
+ }
6266
+ .timeline-horizontal.tablet-85 .timeline-item {
6267
+ width: 85vw;
6268
+ }
6269
+ .timeline-horizontal.tablet-80 .timeline-item {
6270
+ width: 80vw;
6271
+ }
6272
+ .timeline-horizontal.tablet-75 .timeline-item {
6273
+ width: 75vw;
6274
+ }
6275
+ .timeline-horizontal.tablet-70 .timeline-item {
6276
+ width: 70vw;
6277
+ }
6278
+ .timeline-horizontal.tablet-66 .timeline-item {
6279
+ width: 66.66666666666666vw;
6280
+ }
6281
+ .timeline-horizontal.tablet-65 .timeline-item {
6282
+ width: 65vw;
6283
+ }
6284
+ .timeline-horizontal.tablet-60 .timeline-item {
6285
+ width: 60vw;
6286
+ }
6287
+ .timeline-horizontal.tablet-55 .timeline-item {
6288
+ width: 55vw;
6289
+ }
6290
+ .timeline-horizontal.tablet-50 .timeline-item {
6291
+ width: 50vw;
6292
+ }
6293
+ .timeline-horizontal.tablet-45 .timeline-item {
6294
+ width: 45vw;
6295
+ }
6296
+ .timeline-horizontal.tablet-40 .timeline-item {
6297
+ width: 40vw;
6298
+ }
6299
+ .timeline-horizontal.tablet-35 .timeline-item {
6300
+ width: 35vw;
6301
+ }
6302
+ .timeline-horizontal.tablet-33 .timeline-item {
6303
+ width: 33.333333333333336vw;
6304
+ }
6305
+ .timeline-horizontal.tablet-30 .timeline-item {
6306
+ width: 30vw;
6307
+ }
6308
+ .timeline-horizontal.tablet-25 .timeline-item {
6309
+ width: 25vw;
6310
+ }
6311
+ .timeline-horizontal.tablet-20 .timeline-item {
6312
+ width: 20vw;
6313
+ }
6314
+ .timeline-horizontal.tablet-15 .timeline-item {
6315
+ width: 15vw;
6316
+ }
6317
+ .timeline-horizontal.tablet-10 .timeline-item {
6318
+ width: 10vw;
6319
+ }
6320
+ .timeline-horizontal.tablet-5 .timeline-item {
6321
+ width: 5vw;
6322
+ }
6323
+ }
6324
+ .timeline-year,
6325
+ .timeline-month {
6326
+ display: -webkit-box;
6327
+ display: -ms-flexbox;
6328
+ display: -webkit-flex;
6329
+ display: flex;
6330
+ -webkit-flex-shrink: 0;
6331
+ -ms-flex: 0 0 auto;
6332
+ flex-shrink: 0;
6333
+ padding-top: 24px;
6334
+ position: relative;
6335
+ box-sizing: border-box;
6336
+ height: 100%;
6337
+ }
6338
+ .timeline-year:after {
6339
+ content: '';
6340
+ position: absolute;
6341
+ right: 0;
6342
+ top: 0;
6343
+ left: auto;
6344
+ bottom: auto;
6345
+ width: 1px;
6346
+ height: 100%;
6347
+ background-color: #c4c4c4;
6348
+ display: block;
6349
+ z-index: 15;
6350
+ -webkit-transform-origin: 100% 50%;
6351
+ transform-origin: 100% 50%;
6352
+ }
6353
+ html.pixel-ratio-2 .timeline-year:after {
6354
+ -webkit-transform: scaleX(0.5);
6355
+ transform: scaleX(0.5);
6356
+ }
6357
+ html.pixel-ratio-3 .timeline-year:after {
6358
+ -webkit-transform: scaleX(0.33);
6359
+ transform: scaleX(0.33);
6360
+ }
6361
+ .timeline-year:last-child:after {
6362
+ display: none;
6363
+ }
6364
+ .timeline-month .timeline-item:before {
6365
+ content: '';
6366
+ position: absolute;
6367
+ left: 0;
6368
+ top: 0;
6369
+ bottom: auto;
6370
+ right: auto;
6371
+ height: 1px;
6372
+ width: 100%;
6373
+ background-color: #c4c4c4;
6374
+ display: block;
6375
+ z-index: 15;
6376
+ -webkit-transform-origin: 50% 0%;
6377
+ transform-origin: 50% 0%;
6378
+ }
6379
+ html.pixel-ratio-2 .timeline-month .timeline-item:before {
6380
+ -webkit-transform: scaleY(0.5);
6381
+ transform: scaleY(0.5);
6382
+ }
6383
+ html.pixel-ratio-3 .timeline-month .timeline-item:before {
6384
+ -webkit-transform: scaleY(0.33);
6385
+ transform: scaleY(0.33);
6386
+ }
6387
+ .timeline-year-title,
6388
+ .timeline-month-title {
6389
+ position: absolute;
6390
+ left: 0;
6391
+ top: 0;
6392
+ width: 100%;
6393
+ line-height: 24px;
6394
+ height: 24px;
6395
+ padding: 0 10px;
6396
+ box-sizing: border-box;
6397
+ background: #f7f7f8;
6398
+ }
6399
+ .timeline-year-title span,
6400
+ .timeline-month-title span {
6401
+ display: inline-block;
6402
+ position: -webkit-sticky;
6403
+ position: -moz-sticky;
6404
+ position: sticky;
6405
+ left: 10px;
6406
+ }
6407
+ .timeline-year-title {
6408
+ font-size: 16px;
6409
+ }
6410
+ .timeline-year-title span {
6411
+ margin-top: 3px;
6412
+ }
6413
+ .timeline-month-title span {
6414
+ margin-top: -2px;
6415
+ }
6416
+ /* === Swiper === */
6417
+ .swiper-container {
6418
+ margin-left: auto;
6419
+ margin-right: auto;
6420
+ position: relative;
6421
+ overflow: hidden;
6422
+ /* Fix of Webkit flickering */
6423
+ z-index: 1;
5032
6424
  }
5033
6425
  .swiper-container-no-flexbox .swiper-slide {
5034
6426
  float: left;
@@ -5175,6 +6567,15 @@ html.ios-gt-8 .autocomplete-dropdown .list-block b {
5175
6567
  .swiper-pagination.swiper-pagination-hidden {
5176
6568
  opacity: 0;
5177
6569
  }
6570
+ /* Common Styles */
6571
+ .swiper-pagination-fraction,
6572
+ .swiper-pagination-custom,
6573
+ .swiper-container-horizontal > .swiper-pagination-bullets {
6574
+ bottom: 10px;
6575
+ left: 0;
6576
+ width: 100%;
6577
+ }
6578
+ /* Bullets */
5178
6579
  .swiper-pagination-bullet {
5179
6580
  width: 8px;
5180
6581
  height: 8px;
@@ -5183,11 +6584,24 @@ html.ios-gt-8 .autocomplete-dropdown .list-block b {
5183
6584
  background: #000;
5184
6585
  opacity: 0.2;
5185
6586
  }
6587
+ button.swiper-pagination-bullet {
6588
+ border: none;
6589
+ margin: 0;
6590
+ padding: 0;
6591
+ box-shadow: none;
6592
+ -moz-appearance: none;
6593
+ -ms-appearance: none;
6594
+ -webkit-appearance: none;
6595
+ appearance: none;
6596
+ }
6597
+ .swiper-pagination-clickable .swiper-pagination-bullet {
6598
+ cursor: pointer;
6599
+ }
5186
6600
  .swiper-pagination-bullet-active {
5187
6601
  opacity: 1;
5188
6602
  background: #007aff;
5189
6603
  }
5190
- .swiper-container-vertical > .swiper-pagination {
6604
+ .swiper-container-vertical > .swiper-pagination-bullets {
5191
6605
  right: 10px;
5192
6606
  top: 50%;
5193
6607
  -webkit-transform: translate3d(0px, -50%, 0);
@@ -5196,17 +6610,53 @@ html.ios-gt-8 .autocomplete-dropdown .list-block b {
5196
6610
  -ms-transform: translate3d(0px, -50%, 0);
5197
6611
  transform: translate3d(0px, -50%, 0);
5198
6612
  }
5199
- .swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
6613
+ .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
5200
6614
  margin: 5px 0;
5201
6615
  display: block;
5202
6616
  }
5203
- .swiper-container-horizontal > .swiper-pagination {
5204
- bottom: 10px;
6617
+ .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
6618
+ margin: 0 5px;
6619
+ }
6620
+ /* Progress */
6621
+ .swiper-pagination-progress {
6622
+ background: rgba(0, 0, 0, 0.25);
6623
+ position: absolute;
6624
+ }
6625
+ .swiper-pagination-progress .swiper-pagination-progressbar {
6626
+ background: #007aff;
6627
+ position: absolute;
5205
6628
  left: 0;
6629
+ top: 0;
5206
6630
  width: 100%;
6631
+ height: 100%;
6632
+ -webkit-transform: scale(0);
6633
+ -ms-transform: scale(0);
6634
+ -o-transform: scale(0);
6635
+ transform: scale(0);
6636
+ -webkit-transform-origin: left top;
6637
+ -moz-transform-origin: left top;
6638
+ -ms-transform-origin: left top;
6639
+ -o-transform-origin: left top;
6640
+ transform-origin: left top;
6641
+ }
6642
+ .swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
6643
+ -webkit-transform-origin: right top;
6644
+ -moz-transform-origin: right top;
6645
+ -ms-transform-origin: right top;
6646
+ -o-transform-origin: right top;
6647
+ transform-origin: right top;
6648
+ }
6649
+ .swiper-container-horizontal > .swiper-pagination-progress {
6650
+ width: 100%;
6651
+ height: 4px;
6652
+ left: 0;
6653
+ top: 0;
5207
6654
  }
5208
- .swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
5209
- margin: 0 5px;
6655
+ .swiper-container-vertical > .swiper-pagination-progress {
6656
+ width: 4px;
6657
+ height: 100%;
6658
+ left: 0;
6659
+ top: 0;
5210
6660
  }
5211
6661
  /* 3D Container */
5212
6662
  .swiper-container-3d {
@@ -5288,46 +6738,58 @@ html.ios-gt-8 .autocomplete-dropdown .list-block b {
5288
6738
  /* Firefox 16+, IE10, Opera 12.50+ */
5289
6739
  }
5290
6740
  /* Coverflow */
5291
- .swiper-container-coverflow .swiper-wrapper {
6741
+ .swiper-container-coverflow .swiper-wrapper,
6742
+ .swiper-container-flip .swiper-wrapper {
5292
6743
  /* Windows 8 IE 10 fix */
5293
6744
  -ms-perspective: 1200px;
5294
6745
  }
5295
- /* Fade */
5296
- .swiper-container-fade.swiper-container-free-mode .swiper-slide {
5297
- -webkit-transition-timing-function: ease-out;
5298
- -moz-transition-timing-function: ease-out;
5299
- -ms-transition-timing-function: ease-out;
5300
- -o-transition-timing-function: ease-out;
5301
- transition-timing-function: ease-out;
6746
+ /* Cube + Flip */
6747
+ .swiper-container-cube,
6748
+ .swiper-container-flip {
6749
+ overflow: visible;
5302
6750
  }
5303
- .swiper-container-fade .swiper-slide {
6751
+ .swiper-container-cube .swiper-slide,
6752
+ .swiper-container-flip .swiper-slide {
5304
6753
  pointer-events: none;
6754
+ -webkit-backface-visibility: hidden;
6755
+ -moz-backface-visibility: hidden;
6756
+ -ms-backface-visibility: hidden;
6757
+ backface-visibility: hidden;
6758
+ z-index: 1;
5305
6759
  }
5306
- .swiper-container-fade .swiper-slide .swiper-slide {
6760
+ .swiper-container-cube .swiper-slide .swiper-slide,
6761
+ .swiper-container-flip .swiper-slide .swiper-slide {
5307
6762
  pointer-events: none;
5308
6763
  }
5309
- .swiper-container-fade .swiper-slide-active,
5310
- .swiper-container-fade .swiper-slide-active .swiper-slide-active {
6764
+ .swiper-container-cube .swiper-slide-active,
6765
+ .swiper-container-flip .swiper-slide-active,
6766
+ .swiper-container-cube .swiper-slide-active .swiper-slide-active,
6767
+ .swiper-container-flip .swiper-slide-active .swiper-slide-active {
5311
6768
  pointer-events: auto;
5312
6769
  }
5313
- /* Cube */
5314
- .swiper-container-cube {
5315
- overflow: visible;
6770
+ .swiper-container-cube .swiper-slide-shadow-top,
6771
+ .swiper-container-flip .swiper-slide-shadow-top,
6772
+ .swiper-container-cube .swiper-slide-shadow-bottom,
6773
+ .swiper-container-flip .swiper-slide-shadow-bottom,
6774
+ .swiper-container-cube .swiper-slide-shadow-left,
6775
+ .swiper-container-flip .swiper-slide-shadow-left,
6776
+ .swiper-container-cube .swiper-slide-shadow-right,
6777
+ .swiper-container-flip .swiper-slide-shadow-right {
6778
+ z-index: 0;
6779
+ -webkit-backface-visibility: hidden;
6780
+ -moz-backface-visibility: hidden;
6781
+ -ms-backface-visibility: hidden;
6782
+ backface-visibility: hidden;
5316
6783
  }
6784
+ /* Cube */
5317
6785
  .swiper-container-cube .swiper-slide {
5318
- pointer-events: none;
5319
6786
  visibility: hidden;
5320
6787
  -webkit-transform-origin: 0 0;
5321
6788
  -moz-transform-origin: 0 0;
5322
6789
  -ms-transform-origin: 0 0;
5323
6790
  transform-origin: 0 0;
5324
- -webkit-backface-visibility: hidden;
5325
- -moz-backface-visibility: hidden;
5326
- -ms-backface-visibility: hidden;
5327
- backface-visibility: hidden;
5328
6791
  width: 100%;
5329
6792
  height: 100%;
5330
- z-index: 1;
5331
6793
  }
5332
6794
  .swiper-container-cube.swiper-container-rtl .swiper-slide {
5333
6795
  -webkit-transform-origin: 100% 0;
@@ -5342,27 +6804,66 @@ html.ios-gt-8 .autocomplete-dropdown .list-block b {
5342
6804
  pointer-events: auto;
5343
6805
  visibility: visible;
5344
6806
  }
5345
- .swiper-container-cube .swiper-slide-shadow-top,
5346
- .swiper-container-cube .swiper-slide-shadow-bottom,
5347
- .swiper-container-cube .swiper-slide-shadow-left,
5348
- .swiper-container-cube .swiper-slide-shadow-right {
6807
+ .swiper-container-cube .swiper-cube-shadow {
6808
+ position: absolute;
6809
+ left: 0;
6810
+ bottom: 0px;
6811
+ width: 100%;
6812
+ height: 100%;
6813
+ background: #000;
6814
+ opacity: 0.6;
6815
+ -webkit-filter: blur(50px);
6816
+ filter: blur(50px);
5349
6817
  z-index: 0;
5350
- -webkit-backface-visibility: hidden;
5351
- -moz-backface-visibility: hidden;
5352
- -ms-backface-visibility: hidden;
5353
- backface-visibility: hidden;
5354
6818
  }
5355
- .swiper-container-cube .swiper-cube-shadow {
5356
- position: absolute;
5357
- left: 0;
5358
- bottom: 0px;
5359
- width: 100%;
5360
- height: 100%;
5361
- background: #000;
5362
- opacity: 0.6;
5363
- -webkit-filter: blur(50px);
5364
- filter: blur(50px);
5365
- z-index: 0;
6819
+ /* Fade */
6820
+ .swiper-container-fade.swiper-container-free-mode .swiper-slide {
6821
+ -webkit-transition-timing-function: ease-out;
6822
+ -moz-transition-timing-function: ease-out;
6823
+ -ms-transition-timing-function: ease-out;
6824
+ -o-transition-timing-function: ease-out;
6825
+ transition-timing-function: ease-out;
6826
+ }
6827
+ .swiper-container-fade .swiper-slide {
6828
+ pointer-events: none;
6829
+ -webkit-transition-property: opacity;
6830
+ -moz-transition-property: opacity;
6831
+ -o-transition-property: opacity;
6832
+ transition-property: opacity;
6833
+ }
6834
+ .swiper-container-fade .swiper-slide .swiper-slide {
6835
+ pointer-events: none;
6836
+ }
6837
+ .swiper-container-fade .swiper-slide-active,
6838
+ .swiper-container-fade .swiper-slide-active .swiper-slide-active {
6839
+ pointer-events: auto;
6840
+ }
6841
+ .swiper-zoom-container {
6842
+ width: 100%;
6843
+ height: 100%;
6844
+ display: -webkit-box;
6845
+ display: -moz-box;
6846
+ display: -ms-flexbox;
6847
+ display: -webkit-flex;
6848
+ display: flex;
6849
+ -webkit-box-pack: center;
6850
+ -moz-box-pack: center;
6851
+ -ms-flex-pack: center;
6852
+ -webkit-justify-content: center;
6853
+ justify-content: center;
6854
+ -webkit-box-align: center;
6855
+ -moz-box-align: center;
6856
+ -ms-flex-align: center;
6857
+ -webkit-align-items: center;
6858
+ align-items: center;
6859
+ text-align: center;
6860
+ }
6861
+ .swiper-zoom-container > img,
6862
+ .swiper-zoom-container > svg,
6863
+ .swiper-zoom-container > canvas {
6864
+ max-width: 100%;
6865
+ max-height: 100%;
6866
+ object-fit: contain;
5366
6867
  }
5367
6868
  /* Scrollbar */
5368
6869
  .swiper-scrollbar {
@@ -5419,31 +6920,37 @@ html.ios-gt-8 .autocomplete-dropdown .list-block b {
5419
6920
  height: 100%;
5420
6921
  z-index: 11500;
5421
6922
  }
5422
- body > .photo-browser {
6923
+ body > .photo-browser,
6924
+ .framework7-root > .photo-browser {
5423
6925
  opacity: 0;
5424
6926
  display: none;
5425
6927
  -webkit-transform: translate3d(0, 0, 0);
5426
6928
  transform: translate3d(0, 0, 0);
5427
6929
  }
5428
- body > .photo-browser.photo-browser-in {
6930
+ body > .photo-browser.photo-browser-in,
6931
+ .framework7-root > .photo-browser.photo-browser-in {
5429
6932
  display: block;
5430
6933
  -webkit-animation: photoBrowserIn 400ms forwards;
5431
6934
  animation: photoBrowserIn 400ms forwards;
5432
6935
  }
5433
- body > .photo-browser.photo-browser-out {
6936
+ body > .photo-browser.photo-browser-out,
6937
+ .framework7-root > .photo-browser.photo-browser-out {
5434
6938
  display: block;
5435
6939
  -webkit-animation: photoBrowserOut 400ms forwards;
5436
6940
  animation: photoBrowserOut 400ms forwards;
5437
6941
  }
5438
- html.with-statusbar-overlay body > .photo-browser {
6942
+ html.with-statusbar-overlay body > .photo-browser,
6943
+ html.with-statusbar-overlay .framework7-root > .photo-browser {
5439
6944
  height: -webkit-calc(100% - 20px);
5440
6945
  height: calc(100% - 20px);
5441
6946
  top: 20px;
5442
6947
  }
5443
6948
  .popup > .photo-browser .navbar,
5444
6949
  body > .photo-browser .navbar,
6950
+ .framework7-root > .photo-browser .navbar,
5445
6951
  .popup > .photo-browser .toolbar,
5446
- body > .photo-browser .toolbar {
6952
+ body > .photo-browser .toolbar,
6953
+ .framework7-root > .photo-browser .toolbar {
5447
6954
  -webkit-transform: translate3d(0, 0, 0);
5448
6955
  transform: translate3d(0, 0, 0);
5449
6956
  }
@@ -5585,26 +7092,27 @@ body > .photo-browser .toolbar {
5585
7092
  -webkit-transition-duration: 400ms;
5586
7093
  transition-duration: 400ms;
5587
7094
  }
5588
- .photo-browser-slide span.photo-browser-zoom-container {
5589
- width: 100%;
5590
- text-align: center;
7095
+ .photo-browser-slide span.swiper-zoom-container {
5591
7096
  display: none;
5592
7097
  }
5593
- .photo-browser-slide assets {
7098
+ .photo-browser-slide img {
5594
7099
  width: auto;
5595
7100
  height: auto;
5596
7101
  max-width: 100%;
5597
7102
  max-height: 100%;
5598
7103
  display: none;
5599
7104
  }
5600
- .photo-browser-slide.swiper-slide-active span.photo-browser-zoom-container,
5601
- .photo-browser-slide.swiper-slide-next span.photo-browser-zoom-container,
5602
- .photo-browser-slide.swiper-slide-prev span.photo-browser-zoom-container {
5603
- display: block;
7105
+ .photo-browser-slide.swiper-slide-active span.swiper-zoom-container,
7106
+ .photo-browser-slide.swiper-slide-next span.swiper-zoom-container,
7107
+ .photo-browser-slide.swiper-slide-prev span.swiper-zoom-container {
7108
+ display: -webkit-box;
7109
+ display: -ms-flexbox;
7110
+ display: -webkit-flex;
7111
+ display: flex;
5604
7112
  }
5605
- .photo-browser-slide.swiper-slide-active assets,
5606
- .photo-browser-slide.swiper-slide-next assets,
5607
- .photo-browser-slide.swiper-slide-prev assets {
7113
+ .photo-browser-slide.swiper-slide-active img,
7114
+ .photo-browser-slide.swiper-slide-next img,
7115
+ .photo-browser-slide.swiper-slide-prev img {
5608
7116
  display: inline;
5609
7117
  }
5610
7118
  .photo-browser-slide.swiper-slide-active.photo-browser-slide-lazy .preloader,
@@ -5753,7 +7261,6 @@ body > .photo-browser .toolbar {
5753
7261
  .picker-item {
5754
7262
  height: 36px;
5755
7263
  line-height: 36px;
5756
- padding: 0 10px;
5757
7264
  white-space: nowrap;
5758
7265
  position: relative;
5759
7266
  overflow: hidden;
@@ -5766,6 +7273,9 @@ body > .photo-browser .toolbar {
5766
7273
  -webkit-transition-duration: 300ms;
5767
7274
  transition-duration: 300ms;
5768
7275
  }
7276
+ .picker-item span {
7277
+ padding: 0 10px;
7278
+ }
5769
7279
  .picker-items-col-absolute .picker-item {
5770
7280
  position: absolute;
5771
7281
  }
@@ -6176,24 +7686,23 @@ html.pixel-ratio-3 .picker-calendar.picker-modal-inline .picker-calendar-week-da
6176
7686
  top: 0;
6177
7687
  width: 100%;
6178
7688
  z-index: 20000;
6179
- color: #fff;
6180
7689
  font-size: 14px;
6181
7690
  margin: 0;
6182
7691
  border: none;
6183
7692
  display: none;
6184
7693
  box-sizing: border-box;
6185
7694
  max-height: 100%;
6186
- overflow: auto;
6187
- -webkit-overflow-scrolling: touch;
6188
7695
  -webkit-transition-duration: 450ms;
6189
7696
  transition-duration: 450ms;
6190
- background: rgba(0, 0, 0, 0.85);
6191
7697
  -webkit-perspective: 1200px;
6192
7698
  perspective: 1200px;
7699
+ padding-top: 8px;
7700
+ padding-bottom: 8px;
6193
7701
  }
6194
7702
  .notifications.list-block > ul {
6195
7703
  background: none;
6196
- margin: 0;
7704
+ margin: 0 auto;
7705
+ max-width: 584px;
6197
7706
  }
6198
7707
  .notifications.list-block > ul:before {
6199
7708
  display: none;
@@ -6207,33 +7716,69 @@ html.pixel-ratio-3 .picker-calendar.picker-modal-inline .picker-calendar-week-da
6207
7716
  transform: translate3d(0, -20px, 0);
6208
7717
  }
6209
7718
  .notifications .item-content {
7719
+ padding-left: 8px;
6210
7720
  -webkit-box-align: start;
6211
7721
  -ms-flex-align: start;
6212
7722
  -webkit-align-items: flex-start;
6213
7723
  align-items: flex-start;
6214
7724
  }
6215
- .notifications .item-text,
6216
- .notifications .item-subtitle,
6217
- .notifications .item-title {
6218
- font-size: 14px;
7725
+ .notifications .item-title-row {
7726
+ margin-bottom: 8px;
7727
+ }
7728
+ .notifications .item-title-row:before {
7729
+ position: absolute;
7730
+ left: 0;
7731
+ top: 0;
7732
+ height: 36px;
7733
+ border-radius: 12px 12px 0 0;
7734
+ z-index: -1;
7735
+ background: #fff;
7736
+ content: '';
7737
+ width: 100%;
6219
7738
  }
6220
7739
  .notifications .item-title {
6221
- font-weight: 500;
7740
+ font-weight: 400 !important;
7741
+ height: 36px;
7742
+ text-transform: uppercase;
7743
+ line-height: 35px;
7744
+ font-size: 13px;
6222
7745
  }
6223
7746
  html.ios-gt-8 .notifications .item-title {
7747
+ font-weight: 400 !important;
7748
+ }
7749
+ .notifications .item-subtitle {
7750
+ font-size: 15px;
7751
+ font-weight: 500;
7752
+ }
7753
+ html.ios-gt-8 .notifications .item-subtitle {
6224
7754
  font-weight: 600;
6225
7755
  }
6226
7756
  .notifications .item-text {
7757
+ font-size: 14px;
7758
+ color: inherit;
6227
7759
  height: auto;
6228
- color: #d2d2d2;
6229
7760
  line-height: inherit;
6230
7761
  }
6231
- .notifications .item-text,
6232
- .notifications .item-subtitle {
6233
- font-weight: 300;
7762
+ .notifications .item-subtitle:first-child,
7763
+ .notifications .item-text:first-child {
7764
+ margin-top: 8px;
7765
+ }
7766
+ .notifications .item-content,
7767
+ .notifications .item-inner {
7768
+ min-height: 0;
7769
+ }
7770
+ .notifications .item-inner {
7771
+ position: static;
6234
7772
  }
6235
7773
  .notifications .item-inner:after {
6236
- background-color: rgba(255, 255, 255, 0.2);
7774
+ display: none;
7775
+ }
7776
+ .notifications .item-media {
7777
+ width: 20px;
7778
+ }
7779
+ .notifications .item-media img {
7780
+ max-width: 20px;
7781
+ max-height: 20px;
6237
7782
  }
6238
7783
  .notifications .item-media i.icon {
6239
7784
  width: 20px;
@@ -6243,18 +7788,33 @@ html.ios-gt-8 .notifications .item-title {
6243
7788
  background-position: center;
6244
7789
  background-repeat: no-repeat;
6245
7790
  }
7791
+ .notifications .item-media + .item-inner {
7792
+ margin-left: 8px;
7793
+ overflow: visible;
7794
+ }
7795
+ .notifications li.notification-item {
7796
+ box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
7797
+ }
7798
+ .notifications li.notification-item .item-inner {
7799
+ padding-top: 0;
7800
+ }
6246
7801
  .notifications li.notification-item .item-media {
6247
- padding-top: 13px;
7802
+ padding-top: 8px;
7803
+ }
7804
+ .notifications .item-after {
7805
+ margin-top: auto;
7806
+ margin-bottom: auto;
6248
7807
  }
6249
7808
  .notifications .close-notification {
6250
- width: 19px;
6251
- height: 19px;
6252
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2019%2019'%3E%3Cg%3E%3Cpath%20fill%3D'%23bcbfc4'%20d%3D'M9.5%2C1C14.2%2C1%2C18%2C4.8%2C18%2C9.5S14.2%2C18%2C9.5%2C18S1%2C14.2%2C1%2C9.5S4.8%2C1%2C9.5%2C1%20M9.5%2C0C4.3%2C0%2C0%2C4.3%2C0%2C9.5%20S4.3%2C19%2C9.5%2C19S19%2C14.7%2C19%2C9.5S14.7%2C0%2C9.5%2C0L9.5%2C0z'%2F%3E%3C%2Fg%3E%3Cline%20stroke%3D'%23bcbfc4'%20stroke-miterlimit%3D'10'%20x1%3D'5.2'%20y1%3D'5.2'%20x2%3D'13.8'%20y2%3D'13.8'%2F%3E%3Cline%20stroke%3D'%23bcbfc4'%20stroke-miterlimit%3D'10'%20x1%3D'14.1'%20y1%3D'4.9'%20x2%3D'4.9'%20y2%3D'14.1'%2F%3E%3C%2Fsvg%3E");
7809
+ width: 22px;
7810
+ height: 22px;
7811
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%2044%2044'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cg%20stroke%3D'none'%20stroke-width%3D'1'%20fill%3D'none'%20fill-rule%3D'evenodd'%3E%3Cpath%20d%3D'M22.5%2C20.3786797%20L14.7218254%2C12.6005051%20L12.6005051%2C14.7218254%20L20.3786797%2C22.5%20L12.6005051%2C30.2781746%20L14.7218254%2C32.3994949%20L22.5%2C24.6213203%20L30.2781746%2C32.3994949%20L32.3994949%2C30.2781746%20L24.6213203%2C22.5%20L32.3994949%2C14.7218254%20L30.2781746%2C12.6005051%20L22.5%2C20.3786797%20Z%20M22%2C44%20C34.1502645%2C44%2044%2C34.1502645%2044%2C22%20C44%2C9.8497355%2034.1502645%2C0%2022%2C0%20C9.8497355%2C0%200%2C9.8497355%200%2C22%20C0%2C34.1502645%209.8497355%2C44%2022%2C44%20Z'%20fill%3D'%23000000'%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");
6253
7812
  background-position: center top;
6254
7813
  background-repeat: no-repeat;
6255
7814
  -webkit-background-size: 100% auto;
6256
7815
  background-size: 100% auto;
6257
7816
  position: relative;
7817
+ opacity: 0.2;
6258
7818
  }
6259
7819
  .notifications .close-notification span {
6260
7820
  position: absolute;
@@ -6267,12 +7827,23 @@ html.ios-gt-8 .notifications .item-title {
6267
7827
  }
6268
7828
  .notifications .notification-item {
6269
7829
  max-width: 568px;
6270
- margin: 0 auto;
7830
+ margin: 0 auto 8px;
6271
7831
  -webkit-transition-duration: 450ms;
6272
7832
  transition-duration: 450ms;
6273
7833
  -webkit-transform: translate3d(0, 0, 0);
6274
7834
  transform: translate3d(0, 0, 0);
6275
7835
  opacity: 1;
7836
+ background: rgba(250, 250, 250, 0.95);
7837
+ border-radius: 12px;
7838
+ width: -webkit-calc(100% - 16px);
7839
+ width: -moz-calc(100% - 16px);
7840
+ width: calc(100% - 16px);
7841
+ position: absolute;
7842
+ left: 8px;
7843
+ top: 0;
7844
+ }
7845
+ .notifications .notification-item:last-child {
7846
+ margin-bottom: 0;
6276
7847
  }
6277
7848
  .notifications .notification-hidden {
6278
7849
  opacity: 0;
@@ -6318,3 +7889,378 @@ html.ios-gt-8 .notifications .item-title {
6318
7889
  [disabled] [disabled] {
6319
7890
  opacity: 1;
6320
7891
  }
7892
+ .data-table {
7893
+ overflow-x: auto;
7894
+ }
7895
+ .data-table table {
7896
+ width: 100%;
7897
+ border: none;
7898
+ padding: 0;
7899
+ margin: 0;
7900
+ border-collapse: collapse;
7901
+ text-align: left;
7902
+ }
7903
+ .data-table thead {
7904
+ font-size: 12px;
7905
+ }
7906
+ .data-table thead th,
7907
+ .data-table thead td {
7908
+ font-weight: 500;
7909
+ overflow: hidden;
7910
+ white-space: nowrap;
7911
+ text-overflow: ellipsis;
7912
+ line-height: 16px;
7913
+ }
7914
+ html.ios-gt-8 .data-table thead th,
7915
+ html.ios-gt-8 .data-table thead td {
7916
+ font-weight: 600;
7917
+ }
7918
+ .data-table thead th:not(.sortable-active),
7919
+ .data-table thead td:not(.sortable-active) {
7920
+ color: #8e8e93;
7921
+ }
7922
+ .data-table thead i.icon,
7923
+ .data-table thead i.f7-icons {
7924
+ font-size: 18px;
7925
+ width: 18px;
7926
+ height: 18px;
7927
+ vertical-align: top;
7928
+ }
7929
+ .data-table tbody tr.data-table-row-selected {
7930
+ background: #f7f7f8;
7931
+ }
7932
+ .data-table tbody td:before {
7933
+ content: '';
7934
+ position: absolute;
7935
+ left: 0;
7936
+ top: 0;
7937
+ bottom: auto;
7938
+ right: auto;
7939
+ height: 1px;
7940
+ width: 100%;
7941
+ background-color: #c8c7cc;
7942
+ display: block;
7943
+ z-index: 15;
7944
+ -webkit-transform-origin: 50% 0%;
7945
+ transform-origin: 50% 0%;
7946
+ }
7947
+ html.pixel-ratio-2 .data-table tbody td:before {
7948
+ -webkit-transform: scaleY(0.5);
7949
+ transform: scaleY(0.5);
7950
+ }
7951
+ html.pixel-ratio-3 .data-table tbody td:before {
7952
+ -webkit-transform: scaleY(0.33);
7953
+ transform: scaleY(0.33);
7954
+ }
7955
+ html:not(.ios):not(.android) .data-table tbody tr:hover {
7956
+ background: #f7f7f8;
7957
+ }
7958
+ .data-table th,
7959
+ .data-table td {
7960
+ padding: 0;
7961
+ position: relative;
7962
+ padding-left: 15px;
7963
+ padding-right: 15px;
7964
+ height: 44px;
7965
+ }
7966
+ .data-table th.numeric-cell,
7967
+ .data-table td.numeric-cell {
7968
+ text-align: right;
7969
+ }
7970
+ .data-table th.checkbox-cell,
7971
+ .data-table td.checkbox-cell {
7972
+ padding-right: 7px;
7973
+ width: 22px;
7974
+ overflow: visible;
7975
+ }
7976
+ .data-table th.checkbox-cell + td,
7977
+ .data-table td.checkbox-cell + td,
7978
+ .data-table th.checkbox-cell + th,
7979
+ .data-table td.checkbox-cell + th {
7980
+ padding-left: 8px;
7981
+ }
7982
+ .data-table th.actions-cell,
7983
+ .data-table td.actions-cell {
7984
+ text-align: right;
7985
+ white-space: nowrap;
7986
+ }
7987
+ .data-table th.actions-cell a.link,
7988
+ .data-table td.actions-cell a.link {
7989
+ position: relative;
7990
+ z-index: 1;
7991
+ cursor: pointer;
7992
+ }
7993
+ .data-table th.actions-cell a.link + a.link,
7994
+ .data-table td.actions-cell a.link + a.link {
7995
+ margin-left: 15px;
7996
+ }
7997
+ .data-table th.actions-cell a.icon-only,
7998
+ .data-table td.actions-cell a.icon-only {
7999
+ width: 18px;
8000
+ height: 18px;
8001
+ display: inline-block;
8002
+ vertical-align: middle;
8003
+ font-size: 18px;
8004
+ line-height: 18px;
8005
+ text-align: center;
8006
+ font-size: 0;
8007
+ }
8008
+ .data-table th.actions-cell a.icon-only i,
8009
+ .data-table td.actions-cell a.icon-only i {
8010
+ font-size: 18px;
8011
+ vertical-align: middle;
8012
+ }
8013
+ .data-table .sortable-cell {
8014
+ cursor: pointer;
8015
+ position: relative;
8016
+ }
8017
+ .data-table .sortable-cell:not(.numeric-cell):after,
8018
+ .data-table .sortable-cell.numeric-cell:before {
8019
+ content: '';
8020
+ display: inline-block;
8021
+ vertical-align: top;
8022
+ width: 16px;
8023
+ height: 16px;
8024
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20fill%3D'%23000000'%20height%3D'24'%20viewBox%3D'0%200%2024%2024'%20width%3D'24'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M0%200h24v24H0V0z'%20fill%3D'none'%2F%3E%3Cpath%20d%3D'M20%2012l-1.41-1.41L13%2016.17V4h-2v12.17l-5.58-5.59L4%2012l8%208%208-8z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
8025
+ background-size: 100% auto;
8026
+ background-position: center;
8027
+ background-repeat: no-repeat;
8028
+ font-size: 0;
8029
+ -webkit-transition-duration: 300ms;
8030
+ transition-duration: 300ms;
8031
+ -webkit-transform: rotate(0);
8032
+ transform: rotate(0);
8033
+ opacity: 0;
8034
+ }
8035
+ html:not(.ios):not(.android) .data-table .sortable-cell:not(.sortable-active):hover:after,
8036
+ html:not(.ios):not(.android) .data-table .sortable-cell:not(.sortable-active):hover:before {
8037
+ opacity: 0.54;
8038
+ }
8039
+ .data-table .sortable-cell.sortable-active:after,
8040
+ .data-table .sortable-cell.sortable-active:before {
8041
+ opacity: 0.87;
8042
+ }
8043
+ .data-table .sortable-cell.sortable-desc:after,
8044
+ .data-table .sortable-cell.sortable-desc:before {
8045
+ -webkit-transform: rotate(180deg);
8046
+ transform: rotate(180deg);
8047
+ }
8048
+ .data-table .sortable-cell:not(.numeric-cell):after {
8049
+ margin-left: 5px;
8050
+ }
8051
+ .data-table .sortable-cell.numeric-cell:before {
8052
+ margin-right: 5px;
8053
+ }
8054
+ .data-table.card .card-header,
8055
+ .card .data-table .card-header,
8056
+ .data-table.card .card-footer,
8057
+ .card .data-table .card-footer {
8058
+ padding-left: 15px;
8059
+ padding-right: 8px;
8060
+ }
8061
+ .data-table.card .card-header,
8062
+ .card .data-table .card-header {
8063
+ height: 64px;
8064
+ }
8065
+ .data-table.card .card-content,
8066
+ .card .data-table .card-content {
8067
+ overflow-x: auto;
8068
+ }
8069
+ .data-table .data-table-title {
8070
+ font-size: 17px;
8071
+ font-weight: 500;
8072
+ }
8073
+ html.ios-gt-8 .data-table .data-table-title {
8074
+ font-weight: 600;
8075
+ }
8076
+ .data-table .data-table-links,
8077
+ .data-table .data-table-actions {
8078
+ display: -webkit-box;
8079
+ display: -ms-flexbox;
8080
+ display: -webkit-flex;
8081
+ display: flex;
8082
+ -webkit-box-pack: justify;
8083
+ -ms-flex-pack: justify;
8084
+ -webkit-justify-content: space-between;
8085
+ justify-content: space-between;
8086
+ }
8087
+ .data-table .data-table-links a.link,
8088
+ .data-table .data-table-actions a.link {
8089
+ cursor: pointer;
8090
+ }
8091
+ .data-table .data-table-links a.link + a.link,
8092
+ .data-table .data-table-actions a.link + a.link {
8093
+ margin-left: 15px;
8094
+ }
8095
+ .data-table .data-table-actions {
8096
+ margin-left: auto;
8097
+ -webkit-box-align: center;
8098
+ -ms-flex-align: center;
8099
+ -webkit-align-items: center;
8100
+ align-items: center;
8101
+ }
8102
+ .data-table .data-table-actions a.link {
8103
+ min-width: 0;
8104
+ cursor: pointer;
8105
+ }
8106
+ .data-table .data-table-actions a.link.icon-only {
8107
+ width: 44px;
8108
+ height: 44px;
8109
+ line-height: 1;
8110
+ }
8111
+ .data-table .data-table-actions i.icon,
8112
+ .data-table .data-table-actions i.f7-icons {
8113
+ font-size: 22px;
8114
+ }
8115
+ .data-table .data-table-header,
8116
+ .data-table .data-table-header-selected {
8117
+ display: -webkit-box;
8118
+ display: -ms-flexbox;
8119
+ display: -webkit-flex;
8120
+ display: flex;
8121
+ -webkit-box-pack: justify;
8122
+ -ms-flex-pack: justify;
8123
+ -webkit-justify-content: space-between;
8124
+ justify-content: space-between;
8125
+ -webkit-box-align: center;
8126
+ -ms-flex-align: center;
8127
+ -webkit-align-items: center;
8128
+ align-items: center;
8129
+ width: 100%;
8130
+ }
8131
+ .data-table .card-header > .data-table-header,
8132
+ .data-table .card-header > .data-table-header-selected {
8133
+ padding-left: 15px;
8134
+ padding-right: 8px;
8135
+ margin-left: -15px;
8136
+ margin-right: -8px;
8137
+ height: 100%;
8138
+ padding-top: 10px;
8139
+ padding-bottom: 10px;
8140
+ }
8141
+ .data-table .data-table-header-selected {
8142
+ display: none;
8143
+ background: rgba(0, 122, 255, 0.1);
8144
+ }
8145
+ .data-table.data-table-has-checked .data-table-header {
8146
+ display: none;
8147
+ }
8148
+ .data-table.data-table-has-checked .data-table-header-selected {
8149
+ display: -webkit-box;
8150
+ display: -ms-flexbox;
8151
+ display: -webkit-flex;
8152
+ display: flex;
8153
+ }
8154
+ .data-table .data-table-title-selected {
8155
+ color: #007aff;
8156
+ font-size: 14px;
8157
+ }
8158
+ @media (max-width: 480px) and (orientation: portrait) {
8159
+ .data-table.data-table-collapsible thead {
8160
+ display: none;
8161
+ }
8162
+ .data-table.data-table-collapsible tbody,
8163
+ .data-table.data-table-collapsible tr,
8164
+ .data-table.data-table-collapsible td {
8165
+ display: block;
8166
+ }
8167
+ .data-table.data-table-collapsible tr {
8168
+ position: relative;
8169
+ }
8170
+ .data-table.data-table-collapsible tr:before {
8171
+ content: '';
8172
+ position: absolute;
8173
+ left: 0;
8174
+ top: 0;
8175
+ bottom: auto;
8176
+ right: auto;
8177
+ height: 1px;
8178
+ width: 100%;
8179
+ background-color: #c8c7cc;
8180
+ display: block;
8181
+ z-index: 15;
8182
+ -webkit-transform-origin: 50% 0%;
8183
+ transform-origin: 50% 0%;
8184
+ }
8185
+ html.pixel-ratio-2 .data-table.data-table-collapsible tr:before {
8186
+ -webkit-transform: scaleY(0.5);
8187
+ transform: scaleY(0.5);
8188
+ }
8189
+ html.pixel-ratio-3 .data-table.data-table-collapsible tr:before {
8190
+ -webkit-transform: scaleY(0.33);
8191
+ transform: scaleY(0.33);
8192
+ }
8193
+ .data-table.data-table-collapsible tr:hover {
8194
+ background-color: inherit;
8195
+ }
8196
+ .data-table.data-table-collapsible td {
8197
+ text-align: left;
8198
+ display: -webkit-box;
8199
+ display: -ms-flexbox;
8200
+ display: -webkit-flex;
8201
+ display: flex;
8202
+ -ms-flex-line-pack: center;
8203
+ -webkit-align-content: center;
8204
+ align-content: center;
8205
+ -webkit-box-align: center;
8206
+ -ms-flex-align: center;
8207
+ -webkit-align-items: center;
8208
+ align-items: center;
8209
+ -webkit-box-pack: start;
8210
+ -ms-flex-pack: start;
8211
+ -webkit-justify-content: flex-start;
8212
+ justify-content: flex-start;
8213
+ }
8214
+ .data-table.data-table-collapsible td:before {
8215
+ display: none;
8216
+ }
8217
+ .data-table.data-table-collapsible td:not(.checkbox-cell) {
8218
+ font-size: 17px;
8219
+ line-height: 17px;
8220
+ }
8221
+ .data-table.data-table-collapsible td:not(.checkbox-cell):before {
8222
+ width: 40%;
8223
+ display: block;
8224
+ content: attr(data-collapsible-title);
8225
+ position: relative;
8226
+ height: auto;
8227
+ background: none;
8228
+ -webkit-transform: none !important;
8229
+ transform: none !important;
8230
+ color: #8e8e93;
8231
+ font-weight: 500;
8232
+ font-size: 12px;
8233
+ margin-right: 16px;
8234
+ -webkit-flex-shrink: 0;
8235
+ -ms-flex: 0 0 auto;
8236
+ flex-shrink: 0;
8237
+ }
8238
+ html.ios-gt-8 .data-table.data-table-collapsible td:not(.checkbox-cell):before {
8239
+ font-weight: 600;
8240
+ }
8241
+ .data-table.data-table-collapsible td.checkbox-cell {
8242
+ position: absolute;
8243
+ left: 0;
8244
+ top: 0;
8245
+ }
8246
+ .data-table.data-table-collapsible td.checkbox-cell + td {
8247
+ padding-left: 16px;
8248
+ }
8249
+ .data-table.data-table-collapsible td.checkbox-cell ~ td {
8250
+ margin-left: 32px;
8251
+ }
8252
+ }
8253
+ .data-table .tablet-only,
8254
+ .data-table .tablet-landscape-only {
8255
+ display: none;
8256
+ }
8257
+ @media (min-width: 768px) {
8258
+ .data-table .tablet-only {
8259
+ display: table-cell;
8260
+ }
8261
+ }
8262
+ @media (min-width: 768px) and (orientation: landscape) {
8263
+ .data-table .tablet-landscape-only {
8264
+ display: table-cell;
8265
+ }
8266
+ }