@ptcwebops/ptcw-design 5.6.6 → 5.6.7
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.
- package/dist/cjs/blog-detail-content_21.cjs.entry.js +8 -8
- package/dist/cjs/ptc-card_2.cjs.entry.js +1 -1
- package/dist/cjs/ptc-filter-tag_2.cjs.entry.js +1 -1
- package/dist/cjs/ptc-form-checkbox_2.cjs.entry.js +76 -185
- package/dist/cjs/ptc-pricing-tabs.cjs.entry.js +1 -1
- package/dist/collection/components/icon-asset/icon-asset.css +2 -2
- package/dist/collection/components/organism-bundles/blog-detail-content/blog-detail-content.css +1 -1
- package/dist/collection/components/organism-bundles/blog-detail-layout/blog-detail-layout.css +1 -1
- package/dist/collection/components/ptc-card/ptc-card.css +1 -1
- package/dist/collection/components/ptc-form-checkbox/ptc-form-checkbox.css +7 -7
- package/dist/collection/components/ptc-jumbotron/ptc-jumbotron.css +2 -2
- package/dist/collection/components/ptc-pagenation/ptc-pagenation.css +1 -1
- package/dist/collection/components/ptc-preloader-section/ptc-preloader-section.css +136 -87
- package/dist/collection/components/ptc-preloader-section/ptc-preloader-section.js +3 -3
- package/dist/collection/components/ptc-pricing-tabs/ptc-pricing-tabs.css +2 -2
- package/dist/collection/components/ptc-textfield/ptc-textfield.css +34 -51
- package/dist/custom-elements/index.js +87 -196
- package/dist/esm/blog-detail-content_21.entry.js +8 -8
- package/dist/esm/ptc-card_2.entry.js +1 -1
- package/dist/esm/ptc-filter-tag_2.entry.js +1 -1
- package/dist/esm/ptc-form-checkbox_2.entry.js +76 -185
- package/dist/esm/ptc-pricing-tabs.entry.js +1 -1
- package/dist/ptcw-design/{p-00980d4d.entry.js → p-20c01caa.entry.js} +1 -1
- package/dist/ptcw-design/p-40e095bf.entry.js +68 -0
- package/dist/ptcw-design/p-57ce4197.entry.js +1 -0
- package/dist/ptcw-design/{p-fc51fc29.entry.js → p-657ecf13.entry.js} +1 -1
- package/dist/ptcw-design/p-ffcc0b55.entry.js +1 -0
- package/dist/ptcw-design/ptcw-design.css +1 -1
- package/dist/ptcw-design/ptcw-design.esm.js +1 -1
- package/package.json +1 -1
- package/readme.md +1 -1
- package/dist/ptcw-design/p-14122d3f.entry.js +0 -68
- package/dist/ptcw-design/p-4c306b68.entry.js +0 -1
- package/dist/ptcw-design/p-cf748d08.entry.js +0 -1
|
@@ -776,38 +776,93 @@ ptc-link, ptc-square-card,
|
|
|
776
776
|
}
|
|
777
777
|
.skeleton-on-demand .skeleton-block {
|
|
778
778
|
background: linear-gradient(to right, #32373B 25%, var(--color-gray-09) 50%, #32373B 75%);
|
|
779
|
-
height: 24px;
|
|
780
779
|
background-size: 200% 100%;
|
|
781
780
|
margin-bottom: 8px;
|
|
782
781
|
border-radius: 4px;
|
|
783
782
|
animation: loading 2.5s ease-in-out infinite;
|
|
784
783
|
}
|
|
784
|
+
.skeleton-on-demand .skeleton-block.short {
|
|
785
|
+
width: 80%;
|
|
786
|
+
}
|
|
787
|
+
@media only screen and (min-width: 992px) {
|
|
788
|
+
.skeleton-on-demand .skeleton-block.short {
|
|
789
|
+
width: 30%;
|
|
790
|
+
}
|
|
791
|
+
}
|
|
785
792
|
.skeleton-on-demand .skeleton-block.wide-sm-1 {
|
|
786
|
-
width:
|
|
793
|
+
width: 90%;
|
|
794
|
+
}
|
|
795
|
+
@media only screen and (min-width: 992px) {
|
|
796
|
+
.skeleton-on-demand .skeleton-block.wide-sm-1 {
|
|
797
|
+
width: 40%;
|
|
798
|
+
}
|
|
787
799
|
}
|
|
788
800
|
.skeleton-on-demand .skeleton-block.wide-md {
|
|
789
|
-
width:
|
|
801
|
+
width: 93%;
|
|
802
|
+
}
|
|
803
|
+
@media only screen and (min-width: 992px) {
|
|
804
|
+
.skeleton-on-demand .skeleton-block.wide-md {
|
|
805
|
+
width: 43%;
|
|
806
|
+
}
|
|
790
807
|
}
|
|
791
808
|
.skeleton-on-demand .skeleton-block.wide-md-1 {
|
|
792
|
-
width:
|
|
809
|
+
width: 95%;
|
|
810
|
+
}
|
|
811
|
+
@media only screen and (min-width: 992px) {
|
|
812
|
+
.skeleton-on-demand .skeleton-block.wide-md-1 {
|
|
813
|
+
width: 45%;
|
|
814
|
+
}
|
|
793
815
|
}
|
|
794
816
|
.skeleton-on-demand .skeleton-block.wide-sm-2 {
|
|
795
|
-
width:
|
|
817
|
+
width: 77%;
|
|
818
|
+
}
|
|
819
|
+
@media only screen and (min-width: 992px) {
|
|
820
|
+
.skeleton-on-demand .skeleton-block.wide-sm-2 {
|
|
821
|
+
width: 27%;
|
|
822
|
+
}
|
|
796
823
|
}
|
|
797
824
|
.skeleton-on-demand .skeleton-block.smallest {
|
|
798
|
-
width:
|
|
825
|
+
width: 60%;
|
|
826
|
+
}
|
|
827
|
+
@media only screen and (min-width: 992px) {
|
|
828
|
+
.skeleton-on-demand .skeleton-block.smallest {
|
|
829
|
+
width: 10%;
|
|
830
|
+
}
|
|
831
|
+
}
|
|
832
|
+
.skeleton-on-demand .skeleton-block.medium-1 {
|
|
833
|
+
width: 100%;
|
|
834
|
+
}
|
|
835
|
+
@media only screen and (min-width: 480px) {
|
|
836
|
+
.skeleton-on-demand .skeleton-block.medium-1 {
|
|
837
|
+
width: 90%;
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
@media only screen and (min-width: 992px) {
|
|
841
|
+
.skeleton-on-demand .skeleton-block.medium-1 {
|
|
842
|
+
width: 50%;
|
|
843
|
+
}
|
|
799
844
|
}
|
|
800
845
|
.skeleton-on-demand .on-demand-vl {
|
|
801
846
|
padding-top: 19px;
|
|
802
847
|
padding-bottom: 338px;
|
|
803
848
|
}
|
|
804
849
|
.skeleton-on-demand .on-demand-vl .grid-top {
|
|
805
|
-
padding-bottom:
|
|
850
|
+
padding-bottom: 90px;
|
|
851
|
+
}
|
|
852
|
+
@media only screen and (min-width: 1600px) {
|
|
853
|
+
.skeleton-on-demand .on-demand-vl .grid-top {
|
|
854
|
+
padding-bottom: 113px;
|
|
855
|
+
}
|
|
806
856
|
}
|
|
807
857
|
.skeleton-on-demand .on-demand-vl .grid-medium {
|
|
808
|
-
padding-top:
|
|
858
|
+
padding-top: 84px;
|
|
809
859
|
padding-bottom: 100px;
|
|
810
860
|
}
|
|
861
|
+
@media only screen and (min-width: 1600px) {
|
|
862
|
+
.skeleton-on-demand .on-demand-vl .grid-medium {
|
|
863
|
+
padding-top: 97px;
|
|
864
|
+
}
|
|
865
|
+
}
|
|
811
866
|
.skeleton-on-demand .on-demand-vl .grid-medium-2 {
|
|
812
867
|
padding-bottom: 59px;
|
|
813
868
|
}
|
|
@@ -822,6 +877,30 @@ ptc-link, ptc-square-card,
|
|
|
822
877
|
display: flex;
|
|
823
878
|
flex-direction: row;
|
|
824
879
|
justify-content: space-between;
|
|
880
|
+
column-gap: 28px;
|
|
881
|
+
}
|
|
882
|
+
.skeleton-on-demand .on-demand-vl .grid-vl .block {
|
|
883
|
+
flex-basis: 100%;
|
|
884
|
+
}
|
|
885
|
+
@media only screen and (min-width: 480px) {
|
|
886
|
+
.skeleton-on-demand .on-demand-vl .grid-vl .block {
|
|
887
|
+
flex-basis: 50%;
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
@media only screen and (min-width: 768px) {
|
|
891
|
+
.skeleton-on-demand .on-demand-vl .grid-vl .block {
|
|
892
|
+
flex-basis: 33%;
|
|
893
|
+
}
|
|
894
|
+
}
|
|
895
|
+
@media only screen and (min-width: 1200px) {
|
|
896
|
+
.skeleton-on-demand .on-demand-vl .grid-vl .block {
|
|
897
|
+
flex-basis: 25%;
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
@media only screen and (min-width: 1440px) {
|
|
901
|
+
.skeleton-on-demand .on-demand-vl .grid-vl .block {
|
|
902
|
+
flex-basis: 20%;
|
|
903
|
+
}
|
|
825
904
|
}
|
|
826
905
|
.skeleton-on-demand .jumbotron-section {
|
|
827
906
|
padding-top: 89px;
|
|
@@ -842,6 +921,49 @@ ptc-link, ptc-square-card,
|
|
|
842
921
|
padding-bottom: 117px;
|
|
843
922
|
}
|
|
844
923
|
}
|
|
924
|
+
.skeleton-on-demand .hide-bl {
|
|
925
|
+
display: block;
|
|
926
|
+
}
|
|
927
|
+
.skeleton-on-demand .hide-xs {
|
|
928
|
+
display: none;
|
|
929
|
+
}
|
|
930
|
+
@media only screen and (min-width: 480px) {
|
|
931
|
+
.skeleton-on-demand .hide-xs {
|
|
932
|
+
display: block;
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
.skeleton-on-demand .hide-sm {
|
|
936
|
+
display: none;
|
|
937
|
+
}
|
|
938
|
+
@media only screen and (min-width: 768px) {
|
|
939
|
+
.skeleton-on-demand .hide-sm {
|
|
940
|
+
display: block;
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
.skeleton-on-demand .hide-md {
|
|
944
|
+
display: none;
|
|
945
|
+
}
|
|
946
|
+
@media only screen and (min-width: 992px) {
|
|
947
|
+
.skeleton-on-demand .hide-md {
|
|
948
|
+
display: block;
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
.skeleton-on-demand .hide-lg {
|
|
952
|
+
display: none;
|
|
953
|
+
}
|
|
954
|
+
@media only screen and (min-width: 1200px) {
|
|
955
|
+
.skeleton-on-demand .hide-lg {
|
|
956
|
+
display: block;
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
.skeleton-on-demand .hide-xl {
|
|
960
|
+
display: none;
|
|
961
|
+
}
|
|
962
|
+
@media only screen and (min-width: 1440px) {
|
|
963
|
+
.skeleton-on-demand .hide-xl {
|
|
964
|
+
display: block;
|
|
965
|
+
}
|
|
966
|
+
}
|
|
845
967
|
.skeleton-on-demand .block .block-1 {
|
|
846
968
|
width: 316px;
|
|
847
969
|
height: 501px;
|
|
@@ -995,172 +1117,127 @@ ptc-link, ptc-square-card,
|
|
|
995
1117
|
}
|
|
996
1118
|
}
|
|
997
1119
|
.skeleton-on-demand .block .block-6 {
|
|
998
|
-
width:
|
|
1120
|
+
width: auto;
|
|
999
1121
|
height: 173px;
|
|
1000
1122
|
border-radius: 12px;
|
|
1001
1123
|
}
|
|
1002
1124
|
@media only screen and (min-width: 480px) {
|
|
1003
1125
|
.skeleton-on-demand .block .block-6 {
|
|
1004
|
-
width: 432px;
|
|
1005
1126
|
height: 173px;
|
|
1006
1127
|
}
|
|
1007
1128
|
}
|
|
1008
1129
|
@media only screen and (min-width: 768px) {
|
|
1009
1130
|
.skeleton-on-demand .block .block-6 {
|
|
1010
|
-
width: 704px;
|
|
1011
1131
|
height: 173px;
|
|
1012
1132
|
}
|
|
1013
1133
|
}
|
|
1014
1134
|
@media only screen and (min-width: 992px) {
|
|
1015
1135
|
.skeleton-on-demand .block .block-6 {
|
|
1016
|
-
width: 211.985px;
|
|
1017
1136
|
height: 161.633px;
|
|
1018
1137
|
}
|
|
1019
1138
|
}
|
|
1020
1139
|
@media only screen and (min-width: 1200px) {
|
|
1021
1140
|
.skeleton-on-demand .block .block-6 {
|
|
1022
|
-
width: 260.619px;
|
|
1023
1141
|
height: 187.869px;
|
|
1024
1142
|
}
|
|
1025
1143
|
}
|
|
1026
1144
|
@media only screen and (min-width: 1440px) {
|
|
1027
1145
|
.skeleton-on-demand .block .block-6 {
|
|
1028
|
-
width: 316px;
|
|
1029
1146
|
height: 220px;
|
|
1030
1147
|
}
|
|
1031
1148
|
}
|
|
1032
1149
|
@media only screen and (min-width: 1600px) {
|
|
1033
1150
|
.skeleton-on-demand .block .block-6 {
|
|
1034
|
-
width: 442.164px;
|
|
1035
1151
|
height: 291.109px;
|
|
1036
1152
|
}
|
|
1037
1153
|
}
|
|
1038
1154
|
.skeleton-on-demand .block .block-7 {
|
|
1039
|
-
width:
|
|
1155
|
+
width: auto;
|
|
1040
1156
|
height: 114px;
|
|
1041
1157
|
border-radius: 12px;
|
|
1042
1158
|
}
|
|
1043
1159
|
@media only screen and (min-width: 480px) {
|
|
1044
1160
|
.skeleton-on-demand .block .block-7 {
|
|
1045
|
-
width: 114px;
|
|
1046
1161
|
height: 114px;
|
|
1047
1162
|
}
|
|
1048
1163
|
}
|
|
1049
1164
|
@media only screen and (min-width: 768px) {
|
|
1050
1165
|
.skeleton-on-demand .block .block-7 {
|
|
1051
|
-
width: 114px;
|
|
1052
1166
|
height: 114px;
|
|
1053
1167
|
}
|
|
1054
1168
|
}
|
|
1055
1169
|
@media only screen and (min-width: 992px) {
|
|
1056
1170
|
.skeleton-on-demand .block .block-7 {
|
|
1057
|
-
width: 76.476px;
|
|
1058
1171
|
height: 83.755px;
|
|
1059
1172
|
}
|
|
1060
1173
|
}
|
|
1061
1174
|
@media only screen and (min-width: 1200px) {
|
|
1062
1175
|
.skeleton-on-demand .block .block-7 {
|
|
1063
|
-
width: 94.021px;
|
|
1064
1176
|
height: 97.35px;
|
|
1065
1177
|
}
|
|
1066
1178
|
}
|
|
1067
1179
|
@media only screen and (min-width: 1440px) {
|
|
1068
1180
|
.skeleton-on-demand .block .block-7 {
|
|
1069
|
-
width:
|
|
1181
|
+
width: auto;
|
|
1070
1182
|
height: 114px;
|
|
1071
1183
|
}
|
|
1072
1184
|
}
|
|
1073
1185
|
@media only screen and (min-width: 1600px) {
|
|
1074
1186
|
.skeleton-on-demand .block .block-7 {
|
|
1075
|
-
width:
|
|
1187
|
+
width: auto;
|
|
1076
1188
|
height: 150.848px;
|
|
1077
1189
|
}
|
|
1078
1190
|
}
|
|
1079
1191
|
.skeleton-on-demand .block .block-8 {
|
|
1080
1192
|
border-radius: 12px;
|
|
1081
|
-
width:
|
|
1193
|
+
width: auto;
|
|
1082
1194
|
height: 138px;
|
|
1083
|
-
display: none;
|
|
1084
1195
|
margin-bottom: 12px;
|
|
1085
1196
|
}
|
|
1086
1197
|
@media only screen and (min-width: 480px) {
|
|
1087
1198
|
.skeleton-on-demand .block .block-8 {
|
|
1088
|
-
width: 203.048px;
|
|
1089
1199
|
height: 138px;
|
|
1090
1200
|
}
|
|
1091
1201
|
}
|
|
1092
1202
|
@media only screen and (min-width: 768px) {
|
|
1093
1203
|
.skeleton-on-demand .block .block-8 {
|
|
1094
|
-
width: 216.524px;
|
|
1095
1204
|
height: 138px;
|
|
1096
1205
|
}
|
|
1097
1206
|
}
|
|
1098
1207
|
@media only screen and (min-width: 992px) {
|
|
1099
1208
|
.skeleton-on-demand .block .block-8 {
|
|
1100
|
-
width: 279px;
|
|
1101
1209
|
height: 138px;
|
|
1102
1210
|
}
|
|
1103
1211
|
}
|
|
1104
1212
|
@media only screen and (min-width: 1200px) {
|
|
1105
1213
|
.skeleton-on-demand .block .block-8 {
|
|
1106
|
-
width: 255px;
|
|
1107
1214
|
height: 138px;
|
|
1108
1215
|
}
|
|
1109
1216
|
}
|
|
1110
1217
|
@media only screen and (min-width: 1440px) {
|
|
1111
1218
|
.skeleton-on-demand .block .block-8 {
|
|
1112
|
-
width: 246px;
|
|
1113
1219
|
height: 159px;
|
|
1114
1220
|
}
|
|
1115
1221
|
}
|
|
1116
1222
|
@media only screen and (min-width: 1600px) {
|
|
1117
1223
|
.skeleton-on-demand .block .block-8 {
|
|
1118
|
-
width: 344.545px;
|
|
1119
1224
|
height: 159px;
|
|
1120
1225
|
}
|
|
1121
1226
|
}
|
|
1122
1227
|
.skeleton-on-demand .block .block-9 {
|
|
1123
1228
|
border-radius: 12px;
|
|
1124
|
-
width:
|
|
1229
|
+
width: auto;
|
|
1125
1230
|
height: 381px;
|
|
1126
|
-
display: none;
|
|
1127
1231
|
margin-bottom: 12px;
|
|
1128
1232
|
}
|
|
1129
1233
|
@media only screen and (min-width: 480px) {
|
|
1130
1234
|
.skeleton-on-demand .block .block-9 {
|
|
1131
|
-
width: 203.048px;
|
|
1132
1235
|
height: 381px;
|
|
1133
1236
|
}
|
|
1134
1237
|
}
|
|
1135
|
-
@media only screen and (min-width: 768px) {
|
|
1136
|
-
.skeleton-on-demand .block .block-9 {
|
|
1137
|
-
width: 216.524px;
|
|
1138
|
-
}
|
|
1139
|
-
}
|
|
1140
|
-
@media only screen and (min-width: 992px) {
|
|
1141
|
-
.skeleton-on-demand .block .block-9 {
|
|
1142
|
-
width: 279px;
|
|
1143
|
-
}
|
|
1144
|
-
}
|
|
1145
|
-
@media only screen and (min-width: 1200px) {
|
|
1146
|
-
.skeleton-on-demand .block .block-9 {
|
|
1147
|
-
width: 255px;
|
|
1148
|
-
}
|
|
1149
|
-
}
|
|
1150
|
-
@media only screen and (min-width: 1440px) {
|
|
1151
|
-
.skeleton-on-demand .block .block-9 {
|
|
1152
|
-
width: 246px;
|
|
1153
|
-
}
|
|
1154
|
-
}
|
|
1155
|
-
@media only screen and (min-width: 1600px) {
|
|
1156
|
-
.skeleton-on-demand .block .block-9 {
|
|
1157
|
-
width: 344.545px;
|
|
1158
|
-
}
|
|
1159
|
-
}
|
|
1160
1238
|
.skeleton-on-demand .block .block-10 {
|
|
1161
1239
|
border-radius: 12px;
|
|
1162
1240
|
height: 268px;
|
|
1163
|
-
display: none;
|
|
1164
1241
|
}
|
|
1165
1242
|
@media only screen and (min-width: 1600px) {
|
|
1166
1243
|
.skeleton-on-demand .block .block-10 {
|
|
@@ -1176,34 +1253,6 @@ ptc-link, ptc-square-card,
|
|
|
1176
1253
|
height: 141.829px;
|
|
1177
1254
|
}
|
|
1178
1255
|
}
|
|
1179
|
-
.skeleton-on-demand .block .hide-bl {
|
|
1180
|
-
display: block;
|
|
1181
|
-
}
|
|
1182
|
-
@media only screen and (min-width: 480px) {
|
|
1183
|
-
.skeleton-on-demand .block .hide-xs {
|
|
1184
|
-
display: block;
|
|
1185
|
-
}
|
|
1186
|
-
}
|
|
1187
|
-
@media only screen and (min-width: 768px) {
|
|
1188
|
-
.skeleton-on-demand .block .hide-sm {
|
|
1189
|
-
display: block;
|
|
1190
|
-
}
|
|
1191
|
-
}
|
|
1192
|
-
@media only screen and (min-width: 992px) {
|
|
1193
|
-
.skeleton-on-demand .block .hide-md {
|
|
1194
|
-
display: block;
|
|
1195
|
-
}
|
|
1196
|
-
}
|
|
1197
|
-
@media only screen and (min-width: 1200px) {
|
|
1198
|
-
.skeleton-on-demand .block .hide-lg {
|
|
1199
|
-
display: block;
|
|
1200
|
-
}
|
|
1201
|
-
}
|
|
1202
|
-
@media only screen and (min-width: 1440px) {
|
|
1203
|
-
.skeleton-on-demand .block .hide-xl {
|
|
1204
|
-
display: block;
|
|
1205
|
-
}
|
|
1206
|
-
}
|
|
1207
1256
|
|
|
1208
1257
|
.section-two-col {
|
|
1209
1258
|
padding-top: 76px;
|
|
@@ -26,7 +26,7 @@ export class PtcPreloaderSection {
|
|
|
26
26
|
}
|
|
27
27
|
componentWillLoad() {
|
|
28
28
|
if (this.autoShow) {
|
|
29
|
-
setTimeout(() => (this.isLoading = false),
|
|
29
|
+
setTimeout(() => (this.isLoading = false), 3000000000000000000);
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
32
|
renderHTML() {
|
|
@@ -49,10 +49,10 @@ export class PtcPreloaderSection {
|
|
|
49
49
|
return (h("div", { class: "preloader-wrapper skeleton-on-demand" }, h("div", { class: "ptc-container " }, h("div", { class: "is-grid has-no-row-gap has-col-gap-lg is-centered jumbotron-section" }, h("div", { class: "is-col-12" }, h("div", { class: "skeleton" }, h("div", { class: "skeleton-block thin center narrow" }), h("ptc-spacer", { breakpoint: "small", size: "large" }), h("div", { class: "skeleton-block thick center medium" }), h("ptc-spacer", { breakpoint: "x-small", size: "x-large" }), h("div", { class: "skeleton-block thin center wide" }), h("div", { class: "skeleton-block thin center long" }), h("div", { class: "skeleton-block thin medium center" })))), h("div", { class: "is-grid has-col-gap-lg has-row-gap-lg" }, h("div", { class: "is-col-12-xs is-col-6-md is-col-4-xl block is-placed-center" }, h("div", { class: "block-1 skeleton-block" })), h("div", { class: "is-col-12-xs is-col-6-md is-col-4-xl block is-placed-center" }, h("div", { class: "block-1 skeleton-block" })), h("div", { class: "is-col-12-xs is-col-6-md is-col-4-xl block is-placed-center" }, h("div", { class: "block-1 skeleton-block" })), h("div", { class: "is-col-12-xs is-col-6-md is-col-4-xl block is-placed-center" }, h("div", { class: "block-2 skeleton-block" })), h("div", { class: "is-col-12-xs is-col-6-md is-col-4-xl block is-placed-center" }, h("div", { class: "block-2 skeleton-block" })), h("div", { class: "is-col-12-xs is-col-6-md is-col-4-xl block is-placed-center" }, h("div", { class: "block-2 skeleton-block" })), h("div", { class: "is-col-12-xs is-col-6-md is-col-4-xl block is-placed-center" }, h("div", { class: "block-3 skeleton-block" })), h("div", { class: "is-col-12-xs is-col-6-md is-col-4-xl block is-placed-center" }, h("div", { class: "block-3 skeleton-block" })), h("div", { class: "is-col-12-xs is-col-6-md is-col-4-xl block is-placed-center" }, h("div", { class: "block-3 skeleton-block" }))))));
|
|
50
50
|
}
|
|
51
51
|
case 'on-demand-video-landing': {
|
|
52
|
-
return (h("div", { class: "preloader-wrapper" }, h("div", { class: "ptc-container-lg
|
|
52
|
+
return (h("div", { class: "preloader-wrapper skeleton-on-demand" }, h("div", { class: "ptc-container-lg" }, h("div", { class: "skeleton" }, h("ptc-spacer", { breakpoint: "x-large", size: "small", class: "small" }), h("ptc-spacer", { breakpoint: "x-small", size: "medium", class: "medium" }), h("div", { class: "skeleton-block thin left narrow" }), h("ptc-spacer", { breakpoint: "x-large", size: "small", class: "small" }), h("ptc-spacer", { breakpoint: "x-small", size: "medium", class: "medium" })), h("div", { class: "is-grid has-col-gap-lg" }, h("div", { class: "grid-left is-col-12-xs is-col-8-lg is-col-9-xl" }, h("div", { class: "is-grid has-row-gap-lg" }, h("div", { class: "is-col-12 block" }, h("div", { class: "block-4 skeleton-block" })), h("div", { class: "is-col-12" }, h("div", { class: "is-grid has-col-gap-lg" }, h("div", { class: "is-col-6 block is-placed-left" }, h("div", { class: "block-5 skeleton-block" })), h("div", { class: "is-col-6 block is-placed-right" }, h("div", { class: "block-5 skeleton-block" })))))), h("div", { class: "grid-right is-col-12-xs is-col-4-lg is-col-3-xl" }, h("div", { class: "block" }, h("div", { class: "block-6 skeleton-block" })), h("ptc-spacer", { breakpoint: "small", size: "large", class: "large" }), h("div", { class: "skeleton-block thin left wide" }), h("ptc-spacer", { breakpoint: "small", size: "small", class: "small" }), h("div", { class: "is-grid has-row-gap-sm" }, Array.from({ length: 7 }).map(() => (h("div", { class: "is-col-12 is-col-6-md is-col-12-lg" }, h("div", { class: "is-grid has-row-gap-md has-col-gap" }, h("div", { class: "is-col-4 is-col-5-xl block is-placed-left" }, h("div", { class: "block-7 skeleton-block" })), h("div", { class: "is-col-8 is-col-7-xl skeleton centered padding-left-sm" }, h("div", { class: "skeleton-block thin left" }), h("div", { class: "skeleton-block thin medium left" }))))))))))));
|
|
53
53
|
}
|
|
54
54
|
case 'on-demand-video-listing': {
|
|
55
|
-
return (h("div", { class: "preloader-wrapper" }, h("div", { class: "ptc-container-lg
|
|
55
|
+
return (h("div", { class: "preloader-wrapper skeleton-on-demand" }, h("div", { class: "ptc-container-lg" }, h("div", { class: "skeleton" }, h("div", { class: "on-demand-vl" }, h("div", { class: "is-grid block grid-top" }, h("div", { class: "is-col-6 is-placed-left" }, h("div", { class: "skeleton" }, h("div", { class: "skeleton-block thin medium-1 left" }))), h("div", { class: "is-col-6 is-placed-right" }, h("div", { class: "skeleton" }, h("div", { class: "skeleton-block thick medium-1 right" })))), h("div", { class: "is-grid block" }, h("div", { class: "is-col-12 is-placed-left" }, h("div", { class: "skeleton" }, h("div", { class: "skeleton-block thick short left" }), h("div", { class: "skeleton-block thin wide-sm-1 left" }), h("div", { class: "skeleton-block thin wide-md left" }), h("div", { class: "skeleton-block thin wide-md-1 left" }), h("div", { class: "skeleton-block thin wide-md left" }), h("div", { class: "skeleton-block thin wide-sm-2 left" }), h("div", { class: "skeleton-block thin smallest left" })))), h("div", { class: "grid-medium" }, h("div", { class: "skeleton" }, h("div", { class: "skeleton-block thin short left" })), h("div", { class: "grid-vl has-col-gap-sm" }, h("div", { class: "block hide-bl" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })), h("div", { class: "block hide-xs" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })), h("div", { class: "block hide-sm" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })), h("div", { class: "block hide-lg" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })), h("div", { class: "block hide-xl" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })))), h("div", { class: "grid-medium-2" }, h("div", { class: "skeleton" }, h("div", { class: "skeleton-block thin short left" })), h("div", { class: "grid-vl has-col-gap-sm" }, h("div", { class: "block hide-bl" }, h("div", { class: "skeleton-block block-9 " })), h("div", { class: "block hide-xs" }, h("div", { class: "skeleton-block block-9 " })), h("div", { class: "block hide-sm" }, h("div", { class: "skeleton-block block-9 " })), h("div", { class: "block hide-lg" }, h("div", { class: "skeleton-block block-9 " })), h("div", { class: "block hide-xl" }, h("div", { class: "skeleton-block block-9 " })))), h("div", { class: "grid-bottom-1" }, h("div", { class: "skeleton" }, h("div", { class: "skeleton-block thin short left" })), h("div", { class: "is-grid has-col-gap-sm" }, h("div", { class: "is-col-12-xs is-col-6-sm" }, h("div", { class: "block" }, h("div", { class: "skeleton-block block-10 hide-bl" }))), h("div", { class: "is-col-12-xs is-col-6-sm" }, h("div", { class: "block" }, h("div", { class: "skeleton-block block-10 hide-sm" }))))), h("div", { class: "grid-bottom-2" }, h("div", { class: "is-grid" }, h("div", { class: "is-col-12" }, h("div", { class: "block" }, h("div", { class: "skeleton-block block-11" }))))), h("div", { class: "grid-bottom" }, h("div", { class: "skeleton" }, h("div", { class: "skeleton-block thin short left" })), h("div", { class: "grid-vl has-col-gap-sm" }, h("div", { class: "block hide-bl" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })), h("div", { class: "block hide-xs" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })), h("div", { class: "block hide-sm" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })), h("div", { class: "block hide-lg" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })), h("div", { class: "block hide-xl" }, h("div", { class: "skeleton-block block-8 " }), h("div", { class: "skeleton-block thin long left" }), h("div", { class: "skeleton-block thin left" })))))))));
|
|
56
56
|
}
|
|
57
57
|
default:
|
|
58
58
|
return (h("div", { class: "ptc-section-standard preload-min-height" }, h("div", { class: "ptc-container" }, h("max-width-container", { "max-width": "960", breakpoint: 1200 }, h("div", { class: "skeleton" }, h("div", { class: "skeleton-header" }, h("div", { class: "skeleton-block bold" }), h("div", { class: "skeleton-block wide bold" }), h("ptc-spacer", { breakpoint: "small", size: "large" }), h("ptc-spacer", { breakpoint: "x-small", size: "x-large" }), h("div", { class: "skeleton-block medium" }), h("div", { class: "skeleton-block narrow" }), h("div", { class: "skeleton-block short" })), h("div", { class: "skeleton-image" }), h("div", { class: "skeleton-text" }, h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block long" }), h("div", { class: "skeleton-block narrow" }), h("ptc-spacer", { breakpoint: "small", size: "medium" }), h("ptc-spacer", { breakpoint: "x-small", size: "large" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block medium" }), h("ptc-spacer", { breakpoint: "small", size: "medium" }), h("ptc-spacer", { breakpoint: "x-small", size: "large" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block long" }), h("div", { class: "skeleton-block medium" }), h("ptc-spacer", { breakpoint: "small", size: "medium" }), h("ptc-spacer", { breakpoint: "x-small", size: "large" }), h("div", { class: "skeleton-block long" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block medium" }), h("ptc-spacer", { breakpoint: "small", size: "medium" }), h("ptc-spacer", { breakpoint: "x-small", size: "large" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block wide" }), h("ptc-spacer", { breakpoint: "small", size: "medium" }), h("ptc-spacer", { breakpoint: "x-small", size: "large" }), h("div", { class: "skeleton-block short bold" }), h("ptc-spacer", { breakpoint: "small", size: "medium" }), h("ptc-spacer", { breakpoint: "x-small", size: "large" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block wide" }), h("ptc-spacer", { breakpoint: "small", size: "medium" }), h("ptc-spacer", { breakpoint: "x-small", size: "large" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block" }), h("div", { class: "skeleton-block medium" })))))));
|
|
@@ -1046,7 +1046,7 @@ ptc-link, ptc-square-card,
|
|
|
1046
1046
|
}
|
|
1047
1047
|
@media only screen and (min-width: 992px) {
|
|
1048
1048
|
.u-3-col-grid .u-3-col {
|
|
1049
|
-
width: calc(33.
|
|
1049
|
+
width: calc(33.333333333333% - 10.66666666px);
|
|
1050
1050
|
}
|
|
1051
1051
|
}
|
|
1052
1052
|
.u-3-col-grid.u-col-space-lg {
|
|
@@ -1063,7 +1063,7 @@ ptc-link, ptc-square-card,
|
|
|
1063
1063
|
}
|
|
1064
1064
|
@media only screen and (min-width: 992px) {
|
|
1065
1065
|
.u-3-col-grid.u-col-space-lg .u-3-col {
|
|
1066
|
-
width: calc(33.
|
|
1066
|
+
width: calc(33.333333333333% - 21.3333333px);
|
|
1067
1067
|
}
|
|
1068
1068
|
}
|
|
1069
1069
|
|
|
@@ -2215,9 +2215,9 @@
|
|
|
2215
2215
|
.iti__v-hide {
|
|
2216
2216
|
visibility: hidden;
|
|
2217
2217
|
}
|
|
2218
|
-
.iti input
|
|
2219
|
-
.iti input
|
|
2220
|
-
.iti input
|
|
2218
|
+
.iti input,
|
|
2219
|
+
.iti input[type=text],
|
|
2220
|
+
.iti input[type=tel] {
|
|
2221
2221
|
position: relative;
|
|
2222
2222
|
z-index: 0;
|
|
2223
2223
|
margin-top: 0 !important;
|
|
@@ -2256,35 +2256,26 @@
|
|
|
2256
2256
|
border-top: none;
|
|
2257
2257
|
border-bottom: 4px solid #555;
|
|
2258
2258
|
}
|
|
2259
|
-
.
|
|
2259
|
+
.iti__country-list {
|
|
2260
2260
|
position: absolute;
|
|
2261
2261
|
z-index: 2;
|
|
2262
|
-
|
|
2262
|
+
list-style: none;
|
|
2263
|
+
padding: 0;
|
|
2264
|
+
margin: 0 0 0 -1px;
|
|
2263
2265
|
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
|
|
2264
2266
|
background-color: white;
|
|
2265
2267
|
border: 1px solid #ccc;
|
|
2268
|
+
white-space: nowrap;
|
|
2266
2269
|
max-height: 200px;
|
|
2267
2270
|
overflow-y: scroll;
|
|
2268
2271
|
-webkit-overflow-scrolling: touch;
|
|
2269
2272
|
}
|
|
2270
|
-
.
|
|
2273
|
+
.iti__country-list--dropup {
|
|
2271
2274
|
bottom: 100%;
|
|
2272
2275
|
margin-bottom: -1px;
|
|
2273
2276
|
}
|
|
2274
|
-
.iti__search-input {
|
|
2275
|
-
width: 100%;
|
|
2276
|
-
border-width: 0;
|
|
2277
|
-
}
|
|
2278
|
-
.iti__country-list {
|
|
2279
|
-
list-style: none;
|
|
2280
|
-
padding: 0;
|
|
2281
|
-
margin: 0;
|
|
2282
|
-
}
|
|
2283
|
-
.iti--flexible-dropdown-width .iti__country-list {
|
|
2284
|
-
white-space: nowrap;
|
|
2285
|
-
}
|
|
2286
2277
|
@media (max-width: 500px) {
|
|
2287
|
-
.
|
|
2278
|
+
.iti__country-list {
|
|
2288
2279
|
white-space: normal;
|
|
2289
2280
|
}
|
|
2290
2281
|
}
|
|
@@ -2316,20 +2307,20 @@
|
|
|
2316
2307
|
margin-right: 0;
|
|
2317
2308
|
margin-left: 6px;
|
|
2318
2309
|
}
|
|
2319
|
-
.iti--allow-dropdown input
|
|
2320
|
-
.iti--allow-dropdown input
|
|
2321
|
-
.iti--allow-dropdown input
|
|
2322
|
-
.iti--separate-dial-code input
|
|
2323
|
-
.iti--separate-dial-code input
|
|
2310
|
+
.iti--allow-dropdown input,
|
|
2311
|
+
.iti--allow-dropdown input[type=text],
|
|
2312
|
+
.iti--allow-dropdown input[type=tel], .iti--separate-dial-code input,
|
|
2313
|
+
.iti--separate-dial-code input[type=text],
|
|
2314
|
+
.iti--separate-dial-code input[type=tel] {
|
|
2324
2315
|
padding-right: 6px;
|
|
2325
2316
|
padding-left: 52px;
|
|
2326
2317
|
margin-left: 0;
|
|
2327
2318
|
}
|
|
2328
|
-
[dir=rtl] .iti--allow-dropdown input
|
|
2329
|
-
[dir=rtl] .iti--allow-dropdown input
|
|
2330
|
-
[dir=rtl] .iti--allow-dropdown input
|
|
2331
|
-
[dir=rtl] .iti--separate-dial-code input
|
|
2332
|
-
[dir=rtl] .iti--separate-dial-code input
|
|
2319
|
+
[dir=rtl] .iti--allow-dropdown input,
|
|
2320
|
+
[dir=rtl] .iti--allow-dropdown input[type=text],
|
|
2321
|
+
[dir=rtl] .iti--allow-dropdown input[type=tel], [dir=rtl] .iti--separate-dial-code input,
|
|
2322
|
+
[dir=rtl] .iti--separate-dial-code input[type=text],
|
|
2323
|
+
[dir=rtl] .iti--separate-dial-code input[type=tel] {
|
|
2333
2324
|
padding-right: 52px;
|
|
2334
2325
|
padding-left: 6px;
|
|
2335
2326
|
margin-right: 0;
|
|
@@ -2348,12 +2339,12 @@
|
|
|
2348
2339
|
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
|
|
2349
2340
|
background-color: rgba(0, 0, 0, 0.05);
|
|
2350
2341
|
}
|
|
2351
|
-
.iti--allow-dropdown .iti__flag-container:
|
|
2352
|
-
.iti--allow-dropdown .iti__flag-container:
|
|
2342
|
+
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover,
|
|
2343
|
+
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover {
|
|
2353
2344
|
cursor: default;
|
|
2354
2345
|
}
|
|
2355
|
-
.iti--allow-dropdown .iti__flag-container:
|
|
2356
|
-
.iti--allow-dropdown .iti__flag-container:
|
|
2346
|
+
.iti--allow-dropdown input[disabled] + .iti__flag-container:hover .iti__selected-flag,
|
|
2347
|
+
.iti--allow-dropdown input[readonly] + .iti__flag-container:hover .iti__selected-flag {
|
|
2357
2348
|
background-color: transparent;
|
|
2358
2349
|
}
|
|
2359
2350
|
.iti--separate-dial-code .iti__selected-flag {
|
|
@@ -2377,26 +2368,18 @@
|
|
|
2377
2368
|
cursor: pointer;
|
|
2378
2369
|
}
|
|
2379
2370
|
|
|
2380
|
-
.iti
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
right: 0;
|
|
2371
|
+
.iti-mobile .iti--container {
|
|
2372
|
+
top: 30px;
|
|
2373
|
+
bottom: 30px;
|
|
2374
|
+
left: 30px;
|
|
2375
|
+
right: 30px;
|
|
2386
2376
|
position: fixed;
|
|
2387
|
-
padding: 30px;
|
|
2388
|
-
display: flex;
|
|
2389
|
-
flex-direction: column;
|
|
2390
|
-
justify-content: center;
|
|
2391
|
-
}
|
|
2392
|
-
.iti--fullscreen-popup.iti--container.iti--country-search {
|
|
2393
|
-
justify-content: flex-start;
|
|
2394
2377
|
}
|
|
2395
|
-
.iti
|
|
2378
|
+
.iti-mobile .iti__country-list {
|
|
2396
2379
|
max-height: 100%;
|
|
2397
|
-
|
|
2380
|
+
width: 100%;
|
|
2398
2381
|
}
|
|
2399
|
-
.iti
|
|
2382
|
+
.iti-mobile .iti__country {
|
|
2400
2383
|
padding: 10px 10px;
|
|
2401
2384
|
line-height: 1.5em;
|
|
2402
2385
|
}
|
|
@@ -2422,7 +2405,7 @@
|
|
|
2422
2405
|
.iti__flag.iti__va {
|
|
2423
2406
|
width: 15px;
|
|
2424
2407
|
}
|
|
2425
|
-
@media (min-resolution:
|
|
2408
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
2426
2409
|
.iti__flag {
|
|
2427
2410
|
background-size: 5762px 15px;
|
|
2428
2411
|
}
|
|
@@ -3488,7 +3471,7 @@
|
|
|
3488
3471
|
background-color: #dbdbdb;
|
|
3489
3472
|
background-position: 20px 0;
|
|
3490
3473
|
}
|
|
3491
|
-
@media (min-resolution:
|
|
3474
|
+
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
|
3492
3475
|
.iti__flag {
|
|
3493
3476
|
background-image: url("../img/flags@2x.png?1");
|
|
3494
3477
|
}
|