@dcodegroup-au/page-builder 0.7.0 → 0.7.3
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/page-builder.css +1546 -188
- package/dist/page-builder.es.js +235 -231
- package/dist/page-builder.umd.js +235 -231
- package/example/.vscode/extensions.json +3 -0
- package/example/src/App.vue +89 -17
- package/example/src/pages/AboutUs.js +1 -1
- package/example/src/pages/OurCommitment.js +1 -1
- package/example/src/pages/OurHistory.js +1 -1
- package/package.json +2 -2
- package/src/assets/css/style.css +1 -1
- package/src/components/builders/Links.vue +0 -1
- package/src/components/common/LinkedTo.vue +0 -2
- package/src/components/presenters/components/CarouselPresenter.vue +18 -4
- package/src/components/presenters/components/CollectionGridPresenter.vue +3 -3
- package/src/components/presenters/components/SliderPresenter.vue +3 -2
- package/src/components/presenters/modules/AccordionPricing.vue +5 -5
- package/src/components/presenters/modules/BulletPoints.vue +5 -5
- package/src/components/presenters/modules/Callout.vue +5 -5
- package/src/components/presenters/modules/CollectionCarousel.vue +1 -1
- package/src/components/presenters/modules/ContactUs.vue +1 -1
- package/src/components/presenters/modules/FAQ.vue +3 -2
- package/src/components/presenters/modules/HeroHeader.vue +1 -1
- package/src/components/presenters/modules/HorizontalTabs.vue +4 -4
- package/src/components/presenters/modules/LinkCard.vue +39 -5
- package/src/components/presenters/modules/LinkList.vue +4 -4
- package/src/components/presenters/modules/Paragraph.vue +4 -4
- package/src/components/presenters/modules/QuickLinks.vue +1 -1
- package/src/components/presenters/modules/StandardHeader.vue +4 -4
- package/src/components/presenters/modules/TestimonialSlider.vue +4 -4
- package/src/components/presenters/modules/Timeline.vue +2 -2
- package/src/components/presenters/modules/TwoColumnsImageContent.vue +10 -16
- package/src/components/presenters/modules/VTabs.vue +1 -1
- package/tailwind.config.js +3 -0
- /package/example/src/pages/{AdvisoryService.js → AdvisoryServices.js} +0 -0
package/dist/page-builder.css
CHANGED
|
@@ -712,6 +712,9 @@ select {
|
|
|
712
712
|
.sticky {
|
|
713
713
|
position: sticky;
|
|
714
714
|
}
|
|
715
|
+
.inset-0 {
|
|
716
|
+
inset: 0px;
|
|
717
|
+
}
|
|
715
718
|
.-bottom-6 {
|
|
716
719
|
bottom: -1.5rem;
|
|
717
720
|
}
|
|
@@ -733,9 +736,6 @@ select {
|
|
|
733
736
|
.left-5 {
|
|
734
737
|
left: 1.25rem;
|
|
735
738
|
}
|
|
736
|
-
.left-\[120px\] {
|
|
737
|
-
left: 120px;
|
|
738
|
-
}
|
|
739
739
|
.left-\[70\%\] {
|
|
740
740
|
left: 70%;
|
|
741
741
|
}
|
|
@@ -778,6 +778,9 @@ select {
|
|
|
778
778
|
.z-10 {
|
|
779
779
|
z-index: 10;
|
|
780
780
|
}
|
|
781
|
+
.z-20 {
|
|
782
|
+
z-index: 20;
|
|
783
|
+
}
|
|
781
784
|
.z-50 {
|
|
782
785
|
z-index: 50;
|
|
783
786
|
}
|
|
@@ -819,6 +822,9 @@ select {
|
|
|
819
822
|
.\!mb-10 {
|
|
820
823
|
margin-bottom: 2.5rem !important;
|
|
821
824
|
}
|
|
825
|
+
.\!ml-0 {
|
|
826
|
+
margin-left: 0px !important;
|
|
827
|
+
}
|
|
822
828
|
.\!mt-0 {
|
|
823
829
|
margin-top: 0px !important;
|
|
824
830
|
}
|
|
@@ -945,9 +951,6 @@ select {
|
|
|
945
951
|
.inline-flex {
|
|
946
952
|
display: inline-flex;
|
|
947
953
|
}
|
|
948
|
-
.\!grid {
|
|
949
|
-
display: grid !important;
|
|
950
|
-
}
|
|
951
954
|
.grid {
|
|
952
955
|
display: grid;
|
|
953
956
|
}
|
|
@@ -1017,6 +1020,9 @@ select {
|
|
|
1017
1020
|
.h-\[28px\] {
|
|
1018
1021
|
height: 28px;
|
|
1019
1022
|
}
|
|
1023
|
+
.h-\[300px\] {
|
|
1024
|
+
height: 300px;
|
|
1025
|
+
}
|
|
1020
1026
|
.h-\[318px\] {
|
|
1021
1027
|
height: 318px;
|
|
1022
1028
|
}
|
|
@@ -1096,9 +1102,6 @@ select {
|
|
|
1096
1102
|
.w-1\/2 {
|
|
1097
1103
|
width: 50%;
|
|
1098
1104
|
}
|
|
1099
|
-
.w-1\/3 {
|
|
1100
|
-
width: 33.333333%;
|
|
1101
|
-
}
|
|
1102
1105
|
.w-1\/5 {
|
|
1103
1106
|
width: 20%;
|
|
1104
1107
|
}
|
|
@@ -1165,6 +1168,9 @@ select {
|
|
|
1165
1168
|
.w-\[40px\] {
|
|
1166
1169
|
width: 40px;
|
|
1167
1170
|
}
|
|
1171
|
+
.w-\[480px\] {
|
|
1172
|
+
width: 480px;
|
|
1173
|
+
}
|
|
1168
1174
|
.w-\[48px\] {
|
|
1169
1175
|
width: 48px;
|
|
1170
1176
|
}
|
|
@@ -1199,12 +1205,12 @@ select {
|
|
|
1199
1205
|
.min-w-\[24px\] {
|
|
1200
1206
|
min-width: 24px;
|
|
1201
1207
|
}
|
|
1208
|
+
.min-w-\[300px\] {
|
|
1209
|
+
min-width: 300px;
|
|
1210
|
+
}
|
|
1202
1211
|
.min-w-\[400px\] {
|
|
1203
1212
|
min-width: 400px;
|
|
1204
1213
|
}
|
|
1205
|
-
.min-w-\[480px\] {
|
|
1206
|
-
min-width: 480px;
|
|
1207
|
-
}
|
|
1208
1214
|
.min-w-\[48px\] {
|
|
1209
1215
|
min-width: 48px;
|
|
1210
1216
|
}
|
|
@@ -1229,9 +1235,6 @@ select {
|
|
|
1229
1235
|
.max-w-\[324px\] {
|
|
1230
1236
|
max-width: 324px;
|
|
1231
1237
|
}
|
|
1232
|
-
.max-w-\[33\.3\%\] {
|
|
1233
|
-
max-width: 33.3%;
|
|
1234
|
-
}
|
|
1235
1238
|
.max-w-\[356px\] {
|
|
1236
1239
|
max-width: 356px;
|
|
1237
1240
|
}
|
|
@@ -1297,6 +1300,9 @@ select {
|
|
|
1297
1300
|
.cursor-pointer {
|
|
1298
1301
|
cursor: pointer;
|
|
1299
1302
|
}
|
|
1303
|
+
.resize {
|
|
1304
|
+
resize: both;
|
|
1305
|
+
}
|
|
1300
1306
|
.list-inside {
|
|
1301
1307
|
list-style-position: inside;
|
|
1302
1308
|
}
|
|
@@ -1309,18 +1315,15 @@ select {
|
|
|
1309
1315
|
.grid-cols-2 {
|
|
1310
1316
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1311
1317
|
}
|
|
1312
|
-
.grid-cols-3 {
|
|
1313
|
-
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1314
|
-
}
|
|
1315
1318
|
.flex-row {
|
|
1316
1319
|
flex-direction: row;
|
|
1317
1320
|
}
|
|
1318
|
-
.flex-row-reverse {
|
|
1319
|
-
flex-direction: row-reverse;
|
|
1320
|
-
}
|
|
1321
1321
|
.flex-col {
|
|
1322
1322
|
flex-direction: column;
|
|
1323
1323
|
}
|
|
1324
|
+
.flex-col-reverse {
|
|
1325
|
+
flex-direction: column-reverse;
|
|
1326
|
+
}
|
|
1324
1327
|
.flex-wrap {
|
|
1325
1328
|
flex-wrap: wrap;
|
|
1326
1329
|
}
|
|
@@ -1339,6 +1342,12 @@ select {
|
|
|
1339
1342
|
.\!justify-start {
|
|
1340
1343
|
justify-content: flex-start !important;
|
|
1341
1344
|
}
|
|
1345
|
+
.justify-start {
|
|
1346
|
+
justify-content: flex-start;
|
|
1347
|
+
}
|
|
1348
|
+
.justify-end {
|
|
1349
|
+
justify-content: flex-end;
|
|
1350
|
+
}
|
|
1342
1351
|
.\!justify-center {
|
|
1343
1352
|
justify-content: center !important;
|
|
1344
1353
|
}
|
|
@@ -1366,9 +1375,6 @@ select {
|
|
|
1366
1375
|
.gap-12 {
|
|
1367
1376
|
gap: 3rem;
|
|
1368
1377
|
}
|
|
1369
|
-
.gap-16 {
|
|
1370
|
-
gap: 4rem;
|
|
1371
|
-
}
|
|
1372
1378
|
.gap-2 {
|
|
1373
1379
|
gap: 0.5rem;
|
|
1374
1380
|
}
|
|
@@ -1402,11 +1408,6 @@ select {
|
|
|
1402
1408
|
margin-right: calc(0.25rem * var(--tw-space-x-reverse));
|
|
1403
1409
|
margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1404
1410
|
}
|
|
1405
|
-
.space-x-16 > :not([hidden]) ~ :not([hidden]) {
|
|
1406
|
-
--tw-space-x-reverse: 0;
|
|
1407
|
-
margin-right: calc(4rem * var(--tw-space-x-reverse));
|
|
1408
|
-
margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1409
|
-
}
|
|
1410
1411
|
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
|
|
1411
1412
|
--tw-space-x-reverse: 0;
|
|
1412
1413
|
margin-right: calc(1.5rem * var(--tw-space-x-reverse));
|
|
@@ -1442,21 +1443,12 @@ select {
|
|
|
1442
1443
|
.rounded-\[10px\] {
|
|
1443
1444
|
border-radius: 10px;
|
|
1444
1445
|
}
|
|
1445
|
-
.rounded-\[16px\] {
|
|
1446
|
-
border-radius: 16px;
|
|
1447
|
-
}
|
|
1448
1446
|
.rounded-\[20px\] {
|
|
1449
1447
|
border-radius: 20px;
|
|
1450
1448
|
}
|
|
1451
|
-
.rounded-\[24px\] {
|
|
1452
|
-
border-radius: 24px;
|
|
1453
|
-
}
|
|
1454
1449
|
.rounded-\[40px\] {
|
|
1455
1450
|
border-radius: 40px;
|
|
1456
1451
|
}
|
|
1457
|
-
.rounded-\[48px\] {
|
|
1458
|
-
border-radius: 48px;
|
|
1459
|
-
}
|
|
1460
1452
|
.rounded-\[6px\] {
|
|
1461
1453
|
border-radius: 6px;
|
|
1462
1454
|
}
|
|
@@ -1626,6 +1618,10 @@ select {
|
|
|
1626
1618
|
--tw-bg-opacity: 1;
|
|
1627
1619
|
background-color: rgb(15 172 154 / var(--tw-bg-opacity, 1));
|
|
1628
1620
|
}
|
|
1621
|
+
.bg-black {
|
|
1622
|
+
--tw-bg-opacity: 1;
|
|
1623
|
+
background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
|
|
1624
|
+
}
|
|
1629
1625
|
.bg-brand-100 {
|
|
1630
1626
|
--tw-bg-opacity: 1;
|
|
1631
1627
|
background-color: rgb(230 203 219 / var(--tw-bg-opacity, 1));
|
|
@@ -1752,10 +1748,6 @@ select {
|
|
|
1752
1748
|
padding-left: 1.5rem !important;
|
|
1753
1749
|
padding-right: 1.5rem !important;
|
|
1754
1750
|
}
|
|
1755
|
-
.\!py-8 {
|
|
1756
|
-
padding-top: 2rem !important;
|
|
1757
|
-
padding-bottom: 2rem !important;
|
|
1758
|
-
}
|
|
1759
1751
|
.px-0 {
|
|
1760
1752
|
padding-left: 0px;
|
|
1761
1753
|
padding-right: 0px;
|
|
@@ -1804,10 +1796,6 @@ select {
|
|
|
1804
1796
|
padding-left: 10px;
|
|
1805
1797
|
padding-right: 10px;
|
|
1806
1798
|
}
|
|
1807
|
-
.px-\[120px\] {
|
|
1808
|
-
padding-left: 120px;
|
|
1809
|
-
padding-right: 120px;
|
|
1810
|
-
}
|
|
1811
1799
|
.px-\[14px\] {
|
|
1812
1800
|
padding-left: 14px;
|
|
1813
1801
|
padding-right: 14px;
|
|
@@ -1872,10 +1860,6 @@ select {
|
|
|
1872
1860
|
padding-top: 40px;
|
|
1873
1861
|
padding-bottom: 40px;
|
|
1874
1862
|
}
|
|
1875
|
-
.py-\[48px\] {
|
|
1876
|
-
padding-top: 48px;
|
|
1877
|
-
padding-bottom: 48px;
|
|
1878
|
-
}
|
|
1879
1863
|
.py-\[9px\] {
|
|
1880
1864
|
padding-top: 9px;
|
|
1881
1865
|
padding-bottom: 9px;
|
|
@@ -1922,18 +1906,21 @@ select {
|
|
|
1922
1906
|
.pr-2 {
|
|
1923
1907
|
padding-right: 0.5rem;
|
|
1924
1908
|
}
|
|
1909
|
+
.pr-5 {
|
|
1910
|
+
padding-right: 1.25rem;
|
|
1911
|
+
}
|
|
1925
1912
|
.pr-8 {
|
|
1926
1913
|
padding-right: 2rem;
|
|
1927
1914
|
}
|
|
1915
|
+
.pt-16 {
|
|
1916
|
+
padding-top: 4rem;
|
|
1917
|
+
}
|
|
1928
1918
|
.pt-4 {
|
|
1929
1919
|
padding-top: 1rem;
|
|
1930
1920
|
}
|
|
1931
1921
|
.pt-6 {
|
|
1932
1922
|
padding-top: 1.5rem;
|
|
1933
1923
|
}
|
|
1934
|
-
.pt-\[164px\] {
|
|
1935
|
-
padding-top: 164px;
|
|
1936
|
-
}
|
|
1937
1924
|
.pt-\[17px\] {
|
|
1938
1925
|
padding-top: 17px;
|
|
1939
1926
|
}
|
|
@@ -1953,9 +1940,9 @@ select {
|
|
|
1953
1940
|
font-size: 1rem !important;
|
|
1954
1941
|
line-height: 1.5rem !important;
|
|
1955
1942
|
}
|
|
1956
|
-
.text-
|
|
1957
|
-
font-size: 1.
|
|
1958
|
-
line-height:
|
|
1943
|
+
.text-2xl {
|
|
1944
|
+
font-size: 1.5rem;
|
|
1945
|
+
line-height: 2rem;
|
|
1959
1946
|
}
|
|
1960
1947
|
.text-4xl {
|
|
1961
1948
|
font-size: 2.25rem;
|
|
@@ -1992,9 +1979,6 @@ select {
|
|
|
1992
1979
|
.text-\[40px\] {
|
|
1993
1980
|
font-size: 40px;
|
|
1994
1981
|
}
|
|
1995
|
-
.text-\[48px\] {
|
|
1996
|
-
font-size: 48px;
|
|
1997
|
-
}
|
|
1998
1982
|
.text-base {
|
|
1999
1983
|
font-size: 1rem;
|
|
2000
1984
|
line-height: 1.5rem;
|
|
@@ -2060,9 +2044,6 @@ select {
|
|
|
2060
2044
|
.leading-\[48px\] {
|
|
2061
2045
|
line-height: 48px;
|
|
2062
2046
|
}
|
|
2063
|
-
.leading-\[60px\] {
|
|
2064
|
-
line-height: 60px;
|
|
2065
|
-
}
|
|
2066
2047
|
.leading-none {
|
|
2067
2048
|
line-height: 1;
|
|
2068
2049
|
}
|
|
@@ -2178,6 +2159,9 @@ select {
|
|
|
2178
2159
|
.opacity-50 {
|
|
2179
2160
|
opacity: 0.5;
|
|
2180
2161
|
}
|
|
2162
|
+
.opacity-60 {
|
|
2163
|
+
opacity: 0.6;
|
|
2164
|
+
}
|
|
2181
2165
|
.shadow {
|
|
2182
2166
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
2183
2167
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
@@ -2841,6 +2825,10 @@ select {
|
|
|
2841
2825
|
font-weight: 400;
|
|
2842
2826
|
}
|
|
2843
2827
|
|
|
2828
|
+
.page-builder .ql-editor, .page-render .ql-editor, .item-edit .ql-editor {
|
|
2829
|
+
height: auto;
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2844
2832
|
.page-builder .ql-editor, .page-render .ql-editor, .item-edit .ql-editor {
|
|
2845
2833
|
overflow: visible;
|
|
2846
2834
|
}
|
|
@@ -3029,6 +3017,14 @@ select {
|
|
|
3029
3017
|
|
|
3030
3018
|
@media (min-width: 640px) {
|
|
3031
3019
|
|
|
3020
|
+
.sm\:min-h-\[320px\] {
|
|
3021
|
+
min-height: 320px;
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
.sm\:grid-cols-2 {
|
|
3025
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3032
3028
|
.sm\:p-0 {
|
|
3033
3029
|
padding: 0px;
|
|
3034
3030
|
}
|
|
@@ -3041,6 +3037,10 @@ select {
|
|
|
3041
3037
|
|
|
3042
3038
|
@media (min-width: 768px) {
|
|
3043
3039
|
|
|
3040
|
+
.md\:right-\[120px\] {
|
|
3041
|
+
right: 120px;
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
3044
|
.md\:h-5 {
|
|
3045
3045
|
height: 1.25rem;
|
|
3046
3046
|
}
|
|
@@ -3061,6 +3061,14 @@ select {
|
|
|
3061
3061
|
width: 1.25rem;
|
|
3062
3062
|
}
|
|
3063
3063
|
|
|
3064
|
+
.md\:w-\[560px\] {
|
|
3065
|
+
width: 560px;
|
|
3066
|
+
}
|
|
3067
|
+
|
|
3068
|
+
.md\:grid-cols-2 {
|
|
3069
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3070
|
+
}
|
|
3071
|
+
|
|
3064
3072
|
.md\:grid-cols-3 {
|
|
3065
3073
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3066
3074
|
}
|
|
@@ -3069,10 +3077,32 @@ select {
|
|
|
3069
3077
|
flex-direction: row;
|
|
3070
3078
|
}
|
|
3071
3079
|
|
|
3080
|
+
.md\:rounded-2xl {
|
|
3081
|
+
border-radius: 1rem;
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
.md\:rounded-3xl {
|
|
3085
|
+
border-radius: 1.5rem;
|
|
3086
|
+
}
|
|
3087
|
+
|
|
3072
3088
|
.md\:rounded-\[40px\] {
|
|
3073
3089
|
border-radius: 40px;
|
|
3074
3090
|
}
|
|
3075
3091
|
|
|
3092
|
+
.md\:rounded-\[48px\] {
|
|
3093
|
+
border-radius: 48px;
|
|
3094
|
+
}
|
|
3095
|
+
|
|
3096
|
+
.md\:\!px-0 {
|
|
3097
|
+
padding-left: 0px !important;
|
|
3098
|
+
padding-right: 0px !important;
|
|
3099
|
+
}
|
|
3100
|
+
|
|
3101
|
+
.md\:px-24 {
|
|
3102
|
+
padding-left: 6rem;
|
|
3103
|
+
padding-right: 6rem;
|
|
3104
|
+
}
|
|
3105
|
+
|
|
3076
3106
|
.md\:px-\[120px\] {
|
|
3077
3107
|
padding-left: 120px;
|
|
3078
3108
|
padding-right: 120px;
|
|
@@ -3087,10 +3117,28 @@ select {
|
|
|
3087
3117
|
padding-left: 1.5rem;
|
|
3088
3118
|
}
|
|
3089
3119
|
|
|
3120
|
+
.md\:pt-28 {
|
|
3121
|
+
padding-top: 7rem;
|
|
3122
|
+
}
|
|
3123
|
+
|
|
3124
|
+
.md\:text-3xl {
|
|
3125
|
+
font-size: 1.875rem;
|
|
3126
|
+
line-height: 2.25rem;
|
|
3127
|
+
}
|
|
3128
|
+
|
|
3129
|
+
.md\:text-5xl {
|
|
3130
|
+
font-size: 3rem;
|
|
3131
|
+
line-height: 1;
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3090
3134
|
.md\:text-xl {
|
|
3091
3135
|
font-size: 1.25rem;
|
|
3092
3136
|
line-height: 1.75rem;
|
|
3093
3137
|
}
|
|
3138
|
+
|
|
3139
|
+
.md\:leading-\[38px\] {
|
|
3140
|
+
line-height: 38px;
|
|
3141
|
+
}
|
|
3094
3142
|
}
|
|
3095
3143
|
|
|
3096
3144
|
@media (min-width: 1024px) {
|
|
@@ -3103,26 +3151,80 @@ select {
|
|
|
3103
3151
|
margin-top: 218px;
|
|
3104
3152
|
}
|
|
3105
3153
|
|
|
3154
|
+
.lg\:hidden {
|
|
3155
|
+
display: none;
|
|
3156
|
+
}
|
|
3157
|
+
|
|
3106
3158
|
.lg\:\!h-\[266px\] {
|
|
3107
3159
|
height: 266px !important;
|
|
3108
3160
|
}
|
|
3109
3161
|
|
|
3162
|
+
.lg\:h-\[300px\] {
|
|
3163
|
+
height: 300px;
|
|
3164
|
+
}
|
|
3165
|
+
|
|
3110
3166
|
.lg\:h-\[336px\] {
|
|
3111
3167
|
height: 336px;
|
|
3112
3168
|
}
|
|
3113
3169
|
|
|
3170
|
+
.lg\:h-\[480px\] {
|
|
3171
|
+
height: 480px;
|
|
3172
|
+
}
|
|
3173
|
+
|
|
3114
3174
|
.lg\:w-1\/2 {
|
|
3115
3175
|
width: 50%;
|
|
3116
3176
|
}
|
|
3117
3177
|
|
|
3178
|
+
.lg\:w-\[350px\] {
|
|
3179
|
+
width: 350px;
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3182
|
+
.lg\:max-w-\[33\.3\%\] {
|
|
3183
|
+
max-width: 33.3%;
|
|
3184
|
+
}
|
|
3185
|
+
|
|
3186
|
+
.lg\:grid-cols-2 {
|
|
3187
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3190
|
+
.lg\:grid-cols-3 {
|
|
3191
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
3192
|
+
}
|
|
3193
|
+
|
|
3118
3194
|
.lg\:flex-row {
|
|
3119
3195
|
flex-direction: row;
|
|
3120
3196
|
}
|
|
3121
3197
|
|
|
3198
|
+
.lg\:flex-row-reverse {
|
|
3199
|
+
flex-direction: row-reverse;
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3202
|
+
.lg\:gap-16 {
|
|
3203
|
+
gap: 4rem;
|
|
3204
|
+
}
|
|
3205
|
+
|
|
3206
|
+
.lg\:gap-4 {
|
|
3207
|
+
gap: 1rem;
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
.lg\:gap-8 {
|
|
3211
|
+
gap: 2rem;
|
|
3212
|
+
}
|
|
3213
|
+
|
|
3122
3214
|
.lg\:p-8 {
|
|
3123
3215
|
padding: 2rem;
|
|
3124
3216
|
}
|
|
3125
3217
|
|
|
3218
|
+
.lg\:px-\[120px\] {
|
|
3219
|
+
padding-left: 120px;
|
|
3220
|
+
padding-right: 120px;
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
.lg\:py-4 {
|
|
3224
|
+
padding-top: 1rem;
|
|
3225
|
+
padding-bottom: 1rem;
|
|
3226
|
+
}
|
|
3227
|
+
|
|
3126
3228
|
.lg\:pl-8 {
|
|
3127
3229
|
padding-left: 2rem;
|
|
3128
3230
|
}
|
|
@@ -3131,15 +3233,52 @@ select {
|
|
|
3131
3233
|
padding-right: 4rem;
|
|
3132
3234
|
}
|
|
3133
3235
|
|
|
3236
|
+
.lg\:pt-\[164px\] {
|
|
3237
|
+
padding-top: 164px;
|
|
3238
|
+
}
|
|
3239
|
+
|
|
3134
3240
|
.lg\:text-\[48px\] {
|
|
3135
3241
|
font-size: 48px;
|
|
3136
3242
|
}
|
|
3137
3243
|
|
|
3244
|
+
.lg\:leading-\[60px\] {
|
|
3245
|
+
line-height: 60px;
|
|
3246
|
+
}
|
|
3247
|
+
|
|
3138
3248
|
.lg\:leading-normal {
|
|
3139
3249
|
line-height: 1.5;
|
|
3140
3250
|
}
|
|
3141
3251
|
}
|
|
3142
3252
|
|
|
3253
|
+
@media (min-width: 1280px) {
|
|
3254
|
+
|
|
3255
|
+
.xl\:left-\[120px\] {
|
|
3256
|
+
left: 120px;
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
.xl\:h-\[480px\] {
|
|
3260
|
+
height: 480px;
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
|
+
.xl\:w-\[560px\] {
|
|
3264
|
+
width: 560px;
|
|
3265
|
+
}
|
|
3266
|
+
|
|
3267
|
+
.xl\:gap-\[10\%\] {
|
|
3268
|
+
gap: 10%;
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
.xl\:gap-x-16 {
|
|
3272
|
+
-moz-column-gap: 4rem;
|
|
3273
|
+
column-gap: 4rem;
|
|
3274
|
+
}
|
|
3275
|
+
|
|
3276
|
+
.xl\:py-\[48px\] {
|
|
3277
|
+
padding-top: 48px;
|
|
3278
|
+
padding-bottom: 48px;
|
|
3279
|
+
}
|
|
3280
|
+
}
|
|
3281
|
+
|
|
3143
3282
|
@media (min-width: 1440px) {
|
|
3144
3283
|
|
|
3145
3284
|
.\31xl\:mx-0 {
|
|
@@ -3151,6 +3290,21 @@ select {
|
|
|
3151
3290
|
max-width: 1824px;
|
|
3152
3291
|
}
|
|
3153
3292
|
}
|
|
3293
|
+
|
|
3294
|
+
.\[\&\]\:grid {
|
|
3295
|
+
display: grid;
|
|
3296
|
+
}
|
|
3297
|
+
|
|
3298
|
+
.\[\&\]\:flex-col {
|
|
3299
|
+
flex-direction: column;
|
|
3300
|
+
}
|
|
3301
|
+
|
|
3302
|
+
@media (min-width: 1024px) {
|
|
3303
|
+
|
|
3304
|
+
.\[\&\]\:lg\:flex-row-reverse {
|
|
3305
|
+
flex-direction: row-reverse;
|
|
3306
|
+
}
|
|
3307
|
+
}
|
|
3154
3308
|
.v-modal[data-v-fbfbcd3a] {
|
|
3155
3309
|
position: fixed;
|
|
3156
3310
|
pointer-events: none;
|
|
@@ -3213,175 +3367,1322 @@ select {
|
|
|
3213
3367
|
* Copyright (c) 2014, Jason Chen
|
|
3214
3368
|
* Copyright (c) 2013, salesforce.com
|
|
3215
3369
|
*/
|
|
3216
|
-
.ql-container{box-sizing:border-box;font-family:Helvetica,Arial,sans-serif;font-size:13px;height:100%;margin:0;position:relative}.ql-container.ql-disabled .ql-tooltip{visibility:hidden}.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui{cursor:pointer}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;counter-reset:list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;line-height:1.42;height:100%;outline:none;overflow-y:auto;padding:12px 15px;-o-tab-size:4;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor > *{cursor:text}.ql-editor p,.ql-editor ol,.ql-editor pre,.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{margin:0;padding:0}@supports (counter-set:none){.ql-editor p,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{counter-set:list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor p,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{counter-reset:list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor table{border-collapse:collapse}.ql-editor td{border:1px solid #000;padding:2px 5px}.ql-editor ol{padding-left:1.5em}.ql-editor li{list-style-type:none;padding-left:1.5em;position:relative}.ql-editor li > .ql-ui:before{display:inline-block;margin-left:-1.5em;margin-right:.3em;text-align:right;white-space:nowrap;width:1.2em}.ql-editor li[data-list=checked] > .ql-ui,.ql-editor li[data-list=unchecked] > .ql-ui{color:#777}.ql-editor li[data-list=bullet] > .ql-ui:before{content:'\2022'}.ql-editor li[data-list=checked] > .ql-ui:before{content:'\2611'}.ql-editor li[data-list=unchecked] > .ql-ui:before{content:'\2610'}@supports (counter-set:none){.ql-editor li[data-list]{counter-set:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list]{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered]{counter-increment:list-0}.ql-editor li[data-list=ordered] > .ql-ui:before{content:counter(list-0, decimal) '. '}.ql-editor li[data-list=ordered].ql-indent-1{counter-increment:list-1}.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before{content:counter(list-1, lower-alpha) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-1{counter-set:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-2{counter-increment:list-2}.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before{content:counter(list-2, lower-roman) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-2{counter-set:list-3 list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-3{counter-increment:list-3}.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before{content:counter(list-3, decimal) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-3{counter-set:list-4 list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-4{counter-increment:list-4}.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before{content:counter(list-4, lower-alpha) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-4{counter-set:list-5 list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-5{counter-increment:list-5}.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before{content:counter(list-5, lower-roman) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-5{counter-set:list-6 list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-6{counter-increment:list-6}.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before{content:counter(list-6, decimal) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-6{counter-set:list-7 list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-6{counter-reset:list-7 list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-7{counter-increment:list-7}.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before{content:counter(list-7, lower-alpha) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-7{counter-set:list-8 list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-7{counter-reset:list-8 list-9}}.ql-editor li[data-list=ordered].ql-indent-8{counter-increment:list-8}.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before{content:counter(list-8, lower-roman) '. '}@supports (counter-set:none){.ql-editor li[data-list].ql-indent-8{counter-set:list-9}}@supports not (counter-set:none){.ql-editor li[data-list].ql-indent-8{counter-reset:list-9}}.ql-editor li[data-list=ordered].ql-indent-9{counter-increment:list-9}.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before{content:counter(list-9, decimal) '. '}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:3em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:4.5em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:3em}.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:4.5em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:7.5em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:7.5em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:9em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:10.5em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:9em}.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:10.5em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:13.5em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:13.5em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:15em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:16.5em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:15em}.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:16.5em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:19.5em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:19.5em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:21em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:22.5em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:21em}.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:22.5em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:24em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:25.5em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:24em}.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:25.5em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:27em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:28.5em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:27em}.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:28.5em}.ql-editor li.ql-direction-rtl{padding-right:1.5em}.ql-editor li.ql-direction-rtl > .ql-ui:before{margin-left:.3em;margin-right:-1.5em;text-align:left}.ql-editor table{table-layout:fixed;width:100%}.ql-editor table td{outline:none}.ql-editor .ql-code-block-container{font-family:monospace}.ql-editor .ql-video{display:block;max-width:100%}.ql-editor .ql-video.ql-align-center{margin:0 auto}.ql-editor .ql-video.ql-align-right{margin:0 0 0 auto}.ql-editor .ql-bg-black{background-color:#000}.ql-editor .ql-bg-red{background-color:#e60000}.ql-editor .ql-bg-orange{background-color:#f90}.ql-editor .ql-bg-yellow{background-color:#ff0}.ql-editor .ql-bg-green{background-color:#008a00}.ql-editor .ql-bg-blue{background-color:#06c}.ql-editor .ql-bg-purple{background-color:#93f}.ql-editor .ql-color-white{color:#fff}.ql-editor .ql-color-red{color:#e60000}.ql-editor .ql-color-orange{color:#f90}.ql-editor .ql-color-yellow{color:#ff0}.ql-editor .ql-color-green{color:#008a00}.ql-editor .ql-color-blue{color:#06c}.ql-editor .ql-color-purple{color:#93f}.ql-editor .ql-font-serif{font-family:Georgia,Times New Roman,serif}.ql-editor .ql-font-monospace{font-family:Monaco,Courier New,monospace}.ql-editor .ql-size-small{font-size:.75em}.ql-editor .ql-size-large{font-size:1.5em}.ql-editor .ql-size-huge{font-size:2.5em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor .ql-ui{position:absolute}.ql-editor.ql-blank::before{color:rgba(0,0,0,0.6);content:attr(data-placeholder);font-style:italic;left:15px;pointer-events:none;position:absolute;right:15px}.ql-snow.ql-toolbar:after,.ql-snow .ql-toolbar:after{clear:both;content:'';display:table}.ql-snow.ql-toolbar button,.ql-snow .ql-toolbar button{background:none;border:none;cursor:pointer;display:inline-block;float:left;height:24px;padding:3px 5px;width:28px}.ql-snow.ql-toolbar button svg,.ql-snow .ql-toolbar button svg{float:left;height:100%}.ql-snow.ql-toolbar button:active:hover,.ql-snow .ql-toolbar button:active:hover{outline:none}.ql-snow.ql-toolbar input.ql-image[type=file],.ql-snow .ql-toolbar input.ql-image[type=file]{display:none}.ql-snow.ql-toolbar button:hover,.ql-snow .ql-toolbar button:hover,.ql-snow.ql-toolbar button:focus,.ql-snow .ql-toolbar button:focus,.ql-snow.ql-toolbar button.ql-active,.ql-snow .ql-toolbar button.ql-active,.ql-snow.ql-toolbar .ql-picker-label:hover,.ql-snow .ql-toolbar .ql-picker-label:hover,.ql-snow.ql-toolbar .ql-picker-label.ql-active,.ql-snow .ql-toolbar .ql-picker-label.ql-active,.ql-snow.ql-toolbar .ql-picker-item:hover,.ql-snow .ql-toolbar .ql-picker-item:hover,.ql-snow.ql-toolbar .ql-picker-item.ql-selected,.ql-snow .ql-toolbar .ql-picker-item.ql-selected{color:#06c}.ql-snow.ql-toolbar button:hover .ql-fill,.ql-snow .ql-toolbar button:hover .ql-fill,.ql-snow.ql-toolbar button:focus .ql-fill,.ql-snow .ql-toolbar button:focus .ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill{fill:#06c}.ql-snow.ql-toolbar button:hover .ql-stroke,.ql-snow .ql-toolbar button:hover .ql-stroke,.ql-snow.ql-toolbar button:focus .ql-stroke,.ql-snow .ql-toolbar button:focus .ql-stroke,.ql-snow.ql-toolbar button.ql-active .ql-stroke,.ql-snow .ql-toolbar button.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,.ql-snow.ql-toolbar button:hover .ql-stroke-miter,.ql-snow .ql-toolbar button:hover .ql-stroke-miter,.ql-snow.ql-toolbar button:focus .ql-stroke-miter,.ql-snow .ql-toolbar button:focus .ql-stroke-miter,.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter{stroke:#06c}@media (pointer:coarse){.ql-snow.ql-toolbar button:hover:not(.ql-active),.ql-snow .ql-toolbar button:hover:not(.ql-active){color:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill{fill:#444}.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,.ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter{stroke:#444}}.ql-snow{box-sizing:border-box}.ql-snow *{box-sizing:border-box}.ql-snow .ql-hidden{display:none}.ql-snow .ql-out-bottom,.ql-snow .ql-out-top{visibility:hidden}.ql-snow .ql-tooltip{position:absolute;transform:translateY(10px)}.ql-snow .ql-tooltip a{cursor:pointer;text-decoration:none}.ql-snow .ql-tooltip.ql-flip{transform:translateY(-10px)}.ql-snow .ql-formats{display:inline-block;vertical-align:middle}.ql-snow .ql-formats:after{clear:both;content:'';display:table}.ql-snow .ql-stroke{fill:none;stroke:#444;stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.ql-snow .ql-stroke-miter{fill:none;stroke:#444;stroke-miterlimit:10;stroke-width:2}.ql-snow .ql-fill,.ql-snow .ql-stroke.ql-fill{fill:#444}.ql-snow .ql-empty{fill:none}.ql-snow .ql-even{fill-rule:evenodd}.ql-snow .ql-thin,.ql-snow .ql-stroke.ql-thin{stroke-width:1}.ql-snow .ql-transparent{opacity:.4}.ql-snow .ql-direction svg:last-child{display:none}.ql-snow .ql-direction.ql-active svg:last-child{display:inline}.ql-snow .ql-direction.ql-active svg:first-child{display:none}.ql-snow .ql-editor h1{font-size:2em}.ql-snow .ql-editor h2{font-size:1.5em}.ql-snow .ql-editor h3{font-size:1.17em}.ql-snow .ql-editor h4{font-size:1em}.ql-snow .ql-editor h5{font-size:.83em}.ql-snow .ql-editor h6{font-size:.67em}.ql-snow .ql-editor a{text-decoration:underline}.ql-snow .ql-editor blockquote{border-left:4px solid #ccc;margin-bottom:5px;margin-top:5px;padding-left:16px}.ql-snow .ql-editor code,.ql-snow .ql-editor .ql-code-block-container{background-color:#f0f0f0;border-radius:3px}.ql-snow .ql-editor .ql-code-block-container{margin-bottom:5px;margin-top:5px;padding:5px 10px}.ql-snow .ql-editor code{font-size:85%;padding:2px 4px}.ql-snow .ql-editor .ql-code-block-container{background-color:#23241f;color:#f8f8f2;overflow:visible}.ql-snow .ql-editor img{max-width:100%}.ql-snow .ql-picker{color:#444;display:inline-block;float:left;font-size:14px;font-weight:500;height:24px;position:relative;vertical-align:middle}.ql-snow .ql-picker-label{cursor:pointer;display:inline-block;height:100%;padding-left:8px;padding-right:2px;position:relative;width:100%}.ql-snow .ql-picker-label::before{display:inline-block;line-height:22px}.ql-snow .ql-picker-options{background-color:#fff;display:none;min-width:100%;padding:4px 8px;position:absolute;white-space:nowrap}.ql-snow .ql-picker-options .ql-picker-item{cursor:pointer;display:block;padding-bottom:5px;padding-top:5px}.ql-snow .ql-picker.ql-expanded .ql-picker-label{color:#ccc;z-index:2}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:#ccc}.ql-snow .ql-picker.ql-expanded .ql-picker-options{display:block;margin-top:-1px;top:100%;z-index:1}.ql-snow .ql-color-picker,.ql-snow .ql-icon-picker{width:28px}.ql-snow .ql-color-picker .ql-picker-label,.ql-snow .ql-icon-picker .ql-picker-label{padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-label svg,.ql-snow .ql-icon-picker .ql-picker-label svg{right:4px}.ql-snow .ql-icon-picker .ql-picker-options{padding:4px 0}.ql-snow .ql-icon-picker .ql-picker-item{height:24px;width:24px;padding:2px 4px}.ql-snow .ql-color-picker .ql-picker-options{padding:3px 5px;width:152px}.ql-snow .ql-color-picker .ql-picker-item{border:1px solid transparent;float:left;height:16px;margin:2px;padding:0;width:16px}.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg{position:absolute;margin-top:-9px;right:0;top:50%;width:18px}.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before{content:attr(data-label)}.ql-snow .ql-picker.ql-header{width:98px}.ql-snow .ql-picker.ql-header .ql-picker-label::before,.ql-snow .ql-picker.ql-header .ql-picker-item::before{content:'Normal'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before{content:'Heading 1'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before{content:'Heading 2'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before{content:'Heading 3'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before{content:'Heading 4'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before{content:'Heading 5'}.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before{content:'Heading 6'}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before{font-size:2em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before{font-size:1.5em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before{font-size:1.17em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before{font-size:1em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before{font-size:.83em}.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before{font-size:.67em}.ql-snow .ql-picker.ql-font{width:108px}.ql-snow .ql-picker.ql-font .ql-picker-label::before,.ql-snow .ql-picker.ql-font .ql-picker-item::before{content:'Sans Serif'}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before{content:'Serif'}.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before{content:'Monospace'}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before{font-family:Georgia,Times New Roman,serif}.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before{font-family:Monaco,Courier New,monospace}.ql-snow .ql-picker.ql-size{width:98px}.ql-snow .ql-picker.ql-size .ql-picker-label::before,.ql-snow .ql-picker.ql-size .ql-picker-item::before{content:'Normal'}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before{content:'Small'}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before{content:'Large'}.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before{content:'Huge'}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before{font-size:10px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before{font-size:18px}.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before{font-size:32px}.ql-snow .ql-color-picker.ql-background .ql-picker-item{background-color:#fff}.ql-snow .ql-color-picker.ql-color .ql-picker-item{background-color:#000}.ql-code-block-container{position:relative}.ql-code-block-container .ql-ui{right:5px;top:5px}.ql-toolbar.ql-snow{border:1px solid #ccc;box-sizing:border-box;font-family:'Helvetica Neue','Helvetica','Arial',sans-serif;padding:8px}.ql-toolbar.ql-snow .ql-formats{margin-right:15px}.ql-toolbar.ql-snow .ql-picker-label{border:1px solid transparent}.ql-toolbar.ql-snow .ql-picker-options{border:1px solid transparent;box-shadow:rgba(0,0,0,0.2) 0 2px 8px}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label{border-color:#ccc}.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options{border-color:#ccc}.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover{border-color:#000}.ql-toolbar.ql-snow + .ql-container.ql-snow{border-top:0}.ql-snow .ql-tooltip{background-color:#fff;border:1px solid #ccc;box-shadow:0 0 5px #ddd;color:#444;padding:5px 12px;white-space:nowrap}.ql-snow .ql-tooltip::before{content:"Visit URL:";line-height:26px;margin-right:8px}.ql-snow .ql-tooltip input[type=text]{display:none;border:1px solid #ccc;font-size:13px;height:26px;margin:0;padding:3px 5px;width:170px}.ql-snow .ql-tooltip a.ql-preview{display:inline-block;max-width:200px;overflow-x:hidden;text-overflow:ellipsis;vertical-align:top}.ql-snow .ql-tooltip a.ql-action::after{border-right:1px solid #ccc;content:'Edit';margin-left:16px;padding-right:8px}.ql-snow .ql-tooltip a.ql-remove::before{content:'Remove';margin-left:8px}.ql-snow .ql-tooltip a{line-height:26px}.ql-snow .ql-tooltip.ql-editing a.ql-preview,.ql-snow .ql-tooltip.ql-editing a.ql-remove{display:none}.ql-snow .ql-tooltip.ql-editing input[type=text]{display:inline-block}.ql-snow .ql-tooltip.ql-editing a.ql-action::after{border-right:0;content:'Save';padding-right:0}.ql-snow .ql-tooltip[data-mode=link]::before{content:"Enter link:"}.ql-snow .ql-tooltip[data-mode=formula]::before{content:"Enter formula:"}.ql-snow .ql-tooltip[data-mode=video]::before{content:"Enter video:"}.ql-snow a{color:#06c}.ql-container.ql-snow{border:1px solid #ccc}
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3370
|
+
.ql-container {
|
|
3371
|
+
box-sizing: border-box;
|
|
3372
|
+
font-family: Helvetica, Arial, sans-serif;
|
|
3373
|
+
font-size: 13px;
|
|
3374
|
+
height: 100%;
|
|
3375
|
+
margin: 0;
|
|
3376
|
+
position: relative
|
|
3221
3377
|
}
|
|
3222
3378
|
|
|
3223
|
-
.
|
|
3224
|
-
|
|
3225
|
-
box-sizing: border-box;
|
|
3379
|
+
.ql-container.ql-disabled .ql-tooltip {
|
|
3380
|
+
visibility: hidden
|
|
3226
3381
|
}
|
|
3227
3382
|
|
|
3228
|
-
.
|
|
3229
|
-
|
|
3230
|
-
overscroll-behavior: none;
|
|
3231
|
-
position: relative;
|
|
3232
|
-
touch-action: pan-x pan-y pinch-zoom;
|
|
3233
|
-
z-index: 1;
|
|
3383
|
+
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui, .ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
|
|
3384
|
+
cursor: pointer
|
|
3234
3385
|
}
|
|
3235
3386
|
|
|
3236
|
-
.
|
|
3237
|
-
|
|
3387
|
+
.ql-clipboard {
|
|
3388
|
+
left: -100000px;
|
|
3389
|
+
height: 1px;
|
|
3390
|
+
overflow-y: hidden;
|
|
3391
|
+
position: absolute;
|
|
3392
|
+
top: 50%
|
|
3238
3393
|
}
|
|
3239
3394
|
|
|
3240
|
-
.
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
height: 100%;
|
|
3244
|
-
list-style: none;
|
|
3245
|
-
margin: 0;
|
|
3246
|
-
padding: 0;
|
|
3247
|
-
position: relative;
|
|
3248
|
-
transition: transform ease-out;
|
|
3249
|
-
transition-duration: var(--vc-transition-duration);
|
|
3250
|
-
width: 100%;
|
|
3395
|
+
.ql-clipboard p {
|
|
3396
|
+
margin: 0;
|
|
3397
|
+
padding: 0
|
|
3251
3398
|
}
|
|
3252
3399
|
|
|
3253
|
-
.
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3400
|
+
.ql-editor {
|
|
3401
|
+
box-sizing: border-box;
|
|
3402
|
+
counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
|
|
3403
|
+
line-height: 1.42;
|
|
3404
|
+
height: 100%;
|
|
3405
|
+
outline: none;
|
|
3406
|
+
overflow-y: auto;
|
|
3407
|
+
padding: 12px 15px;
|
|
3408
|
+
-o-tab-size: 4;
|
|
3409
|
+
tab-size: 4;
|
|
3410
|
+
-moz-tab-size: 4;
|
|
3411
|
+
text-align: left;
|
|
3412
|
+
white-space: pre-wrap;
|
|
3413
|
+
word-wrap: break-word
|
|
3257
3414
|
}
|
|
3258
3415
|
|
|
3259
|
-
.
|
|
3260
|
-
|
|
3261
|
-
clip: rect(0, 0, 0, 0);
|
|
3262
|
-
height: 1px;
|
|
3263
|
-
margin: -1px;
|
|
3264
|
-
overflow: hidden;
|
|
3265
|
-
padding: 0;
|
|
3266
|
-
position: absolute;
|
|
3267
|
-
width: 1px;
|
|
3416
|
+
.ql-editor > * {
|
|
3417
|
+
cursor: text
|
|
3268
3418
|
}
|
|
3269
3419
|
|
|
3270
|
-
.
|
|
3271
|
-
|
|
3420
|
+
.ql-editor p, .ql-editor ol, .ql-editor pre, .ql-editor blockquote, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
|
|
3421
|
+
margin: 0;
|
|
3422
|
+
padding: 0
|
|
3272
3423
|
}
|
|
3273
3424
|
|
|
3274
|
-
|
|
3275
|
-
|
|
3425
|
+
@supports (counter-set:none) {
|
|
3426
|
+
.ql-editor p, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
|
|
3427
|
+
counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
|
|
3428
|
+
}
|
|
3276
3429
|
}
|
|
3277
3430
|
|
|
3278
|
-
|
|
3279
|
-
|
|
3431
|
+
@supports not (counter-set:none) {
|
|
3432
|
+
.ql-editor p, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 {
|
|
3433
|
+
counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
|
|
3434
|
+
}
|
|
3280
3435
|
}
|
|
3281
3436
|
|
|
3282
|
-
.
|
|
3283
|
-
|
|
3437
|
+
.ql-editor table {
|
|
3438
|
+
border-collapse: collapse
|
|
3284
3439
|
}
|
|
3285
3440
|
|
|
3286
|
-
.
|
|
3287
|
-
|
|
3441
|
+
.ql-editor td {
|
|
3442
|
+
border: 1px solid #000;
|
|
3443
|
+
padding: 2px 5px
|
|
3288
3444
|
}
|
|
3289
3445
|
|
|
3290
|
-
.
|
|
3291
|
-
|
|
3292
|
-
grid-template-columns: 100%;
|
|
3293
|
-
grid-template-rows: 100%;
|
|
3294
|
-
transition: none;
|
|
3446
|
+
.ql-editor ol {
|
|
3447
|
+
padding-left: 1.5em
|
|
3295
3448
|
}
|
|
3296
3449
|
|
|
3297
|
-
.
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
pointer-events: none;
|
|
3302
|
-
transition: opacity ease-in-out;
|
|
3303
|
-
transition-duration: var(--vc-transition-duration);
|
|
3304
|
-
width: 100%;
|
|
3450
|
+
.ql-editor li {
|
|
3451
|
+
list-style-type: none;
|
|
3452
|
+
padding-left: 1.5em;
|
|
3453
|
+
position: relative
|
|
3305
3454
|
}
|
|
3306
3455
|
|
|
3307
|
-
.
|
|
3308
|
-
|
|
3309
|
-
|
|
3456
|
+
.ql-editor li > .ql-ui:before {
|
|
3457
|
+
display: inline-block;
|
|
3458
|
+
margin-left: -1.5em;
|
|
3459
|
+
margin-right: .3em;
|
|
3460
|
+
text-align: right;
|
|
3461
|
+
white-space: nowrap;
|
|
3462
|
+
width: 1.2em
|
|
3310
3463
|
}
|
|
3311
3464
|
|
|
3312
|
-
|
|
3313
|
-
|
|
3465
|
+
.ql-editor li[data-list=checked] > .ql-ui, .ql-editor li[data-list=unchecked] > .ql-ui {
|
|
3466
|
+
color: #777
|
|
3314
3467
|
}
|
|
3315
3468
|
|
|
3316
|
-
.
|
|
3317
|
-
|
|
3318
|
-
height: var(--vc-icn-width);
|
|
3319
|
-
width: var(--vc-icn-width);
|
|
3469
|
+
.ql-editor li[data-list=bullet] > .ql-ui:before {
|
|
3470
|
+
content: '\2022'
|
|
3320
3471
|
}
|
|
3321
3472
|
|
|
3322
|
-
:
|
|
3323
|
-
|
|
3324
|
-
--vc-nav-border-radius: 0;
|
|
3325
|
-
--vc-nav-color: var(--vc-clr-primary);
|
|
3326
|
-
--vc-nav-color-hover: var(--vc-clr-secondary);
|
|
3327
|
-
--vc-nav-height: 30px;
|
|
3328
|
-
--vc-nav-width: 30px;
|
|
3473
|
+
.ql-editor li[data-list=checked] > .ql-ui:before {
|
|
3474
|
+
content: '\2611'
|
|
3329
3475
|
}
|
|
3330
3476
|
|
|
3331
|
-
.
|
|
3332
|
-
|
|
3333
|
-
align-items: center;
|
|
3334
|
-
background: var(--vc-nav-background);
|
|
3335
|
-
border: 0;
|
|
3336
|
-
border-radius: var(--vc-nav-border-radius);
|
|
3337
|
-
color: var(--vc-nav-color);
|
|
3338
|
-
cursor: pointer;
|
|
3339
|
-
display: flex;
|
|
3340
|
-
font-size: var(--vc-nav-height);
|
|
3341
|
-
height: var(--vc-nav-height);
|
|
3342
|
-
justify-content: center;
|
|
3343
|
-
padding: 0;
|
|
3344
|
-
position: absolute;
|
|
3345
|
-
inset-block-start: 50%;
|
|
3346
|
-
transform: translateY(-50%);
|
|
3347
|
-
width: var(--vc-nav-width);
|
|
3477
|
+
.ql-editor li[data-list=unchecked] > .ql-ui:before {
|
|
3478
|
+
content: '\2610'
|
|
3348
3479
|
}
|
|
3349
3480
|
|
|
3350
|
-
|
|
3351
|
-
.
|
|
3352
|
-
|
|
3353
|
-
|
|
3481
|
+
@supports (counter-set:none) {
|
|
3482
|
+
.ql-editor li[data-list] {
|
|
3483
|
+
counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
|
|
3484
|
+
}
|
|
3354
3485
|
}
|
|
3355
3486
|
|
|
3356
|
-
|
|
3357
|
-
|
|
3487
|
+
@supports not (counter-set:none) {
|
|
3488
|
+
.ql-editor li[data-list] {
|
|
3489
|
+
counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
|
|
3490
|
+
}
|
|
3358
3491
|
}
|
|
3359
3492
|
|
|
3360
|
-
.
|
|
3361
|
-
|
|
3493
|
+
.ql-editor li[data-list=ordered] {
|
|
3494
|
+
counter-increment: list-0
|
|
3362
3495
|
}
|
|
3363
3496
|
|
|
3364
|
-
.
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
inset-block-start: auto;
|
|
3368
|
-
transform: translateX(50%);
|
|
3369
|
-
}
|
|
3497
|
+
.ql-editor li[data-list=ordered] > .ql-ui:before {
|
|
3498
|
+
content: counter(list-0, decimal) '. '
|
|
3499
|
+
}
|
|
3370
3500
|
|
|
3371
|
-
.
|
|
3372
|
-
|
|
3373
|
-
|
|
3501
|
+
.ql-editor li[data-list=ordered].ql-indent-1 {
|
|
3502
|
+
counter-increment: list-1
|
|
3503
|
+
}
|
|
3374
3504
|
|
|
3375
|
-
.
|
|
3376
|
-
|
|
3377
|
-
|
|
3505
|
+
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
|
|
3506
|
+
content: counter(list-1, lower-alpha) '. '
|
|
3507
|
+
}
|
|
3378
3508
|
|
|
3379
|
-
|
|
3380
|
-
|
|
3509
|
+
@supports (counter-set:none) {
|
|
3510
|
+
.ql-editor li[data-list].ql-indent-1 {
|
|
3511
|
+
counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
|
|
3381
3512
|
}
|
|
3513
|
+
}
|
|
3382
3514
|
|
|
3383
|
-
|
|
3384
|
-
|
|
3515
|
+
@supports not (counter-set:none) {
|
|
3516
|
+
.ql-editor li[data-list].ql-indent-1 {
|
|
3517
|
+
counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
|
|
3518
|
+
}
|
|
3519
|
+
}
|
|
3520
|
+
|
|
3521
|
+
.ql-editor li[data-list=ordered].ql-indent-2 {
|
|
3522
|
+
counter-increment: list-2
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
|
|
3526
|
+
content: counter(list-2, lower-roman) '. '
|
|
3527
|
+
}
|
|
3528
|
+
|
|
3529
|
+
@supports (counter-set:none) {
|
|
3530
|
+
.ql-editor li[data-list].ql-indent-2 {
|
|
3531
|
+
counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9
|
|
3532
|
+
}
|
|
3533
|
+
}
|
|
3534
|
+
|
|
3535
|
+
@supports not (counter-set:none) {
|
|
3536
|
+
.ql-editor li[data-list].ql-indent-2 {
|
|
3537
|
+
counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9
|
|
3538
|
+
}
|
|
3539
|
+
}
|
|
3540
|
+
|
|
3541
|
+
.ql-editor li[data-list=ordered].ql-indent-3 {
|
|
3542
|
+
counter-increment: list-3
|
|
3543
|
+
}
|
|
3544
|
+
|
|
3545
|
+
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
|
|
3546
|
+
content: counter(list-3, decimal) '. '
|
|
3547
|
+
}
|
|
3548
|
+
|
|
3549
|
+
@supports (counter-set:none) {
|
|
3550
|
+
.ql-editor li[data-list].ql-indent-3 {
|
|
3551
|
+
counter-set: list-4 list-5 list-6 list-7 list-8 list-9
|
|
3552
|
+
}
|
|
3553
|
+
}
|
|
3554
|
+
|
|
3555
|
+
@supports not (counter-set:none) {
|
|
3556
|
+
.ql-editor li[data-list].ql-indent-3 {
|
|
3557
|
+
counter-reset: list-4 list-5 list-6 list-7 list-8 list-9
|
|
3558
|
+
}
|
|
3559
|
+
}
|
|
3560
|
+
|
|
3561
|
+
.ql-editor li[data-list=ordered].ql-indent-4 {
|
|
3562
|
+
counter-increment: list-4
|
|
3563
|
+
}
|
|
3564
|
+
|
|
3565
|
+
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
|
|
3566
|
+
content: counter(list-4, lower-alpha) '. '
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3569
|
+
@supports (counter-set:none) {
|
|
3570
|
+
.ql-editor li[data-list].ql-indent-4 {
|
|
3571
|
+
counter-set: list-5 list-6 list-7 list-8 list-9
|
|
3572
|
+
}
|
|
3573
|
+
}
|
|
3574
|
+
|
|
3575
|
+
@supports not (counter-set:none) {
|
|
3576
|
+
.ql-editor li[data-list].ql-indent-4 {
|
|
3577
|
+
counter-reset: list-5 list-6 list-7 list-8 list-9
|
|
3578
|
+
}
|
|
3579
|
+
}
|
|
3580
|
+
|
|
3581
|
+
.ql-editor li[data-list=ordered].ql-indent-5 {
|
|
3582
|
+
counter-increment: list-5
|
|
3583
|
+
}
|
|
3584
|
+
|
|
3585
|
+
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
|
|
3586
|
+
content: counter(list-5, lower-roman) '. '
|
|
3587
|
+
}
|
|
3588
|
+
|
|
3589
|
+
@supports (counter-set:none) {
|
|
3590
|
+
.ql-editor li[data-list].ql-indent-5 {
|
|
3591
|
+
counter-set: list-6 list-7 list-8 list-9
|
|
3592
|
+
}
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3595
|
+
@supports not (counter-set:none) {
|
|
3596
|
+
.ql-editor li[data-list].ql-indent-5 {
|
|
3597
|
+
counter-reset: list-6 list-7 list-8 list-9
|
|
3598
|
+
}
|
|
3599
|
+
}
|
|
3600
|
+
|
|
3601
|
+
.ql-editor li[data-list=ordered].ql-indent-6 {
|
|
3602
|
+
counter-increment: list-6
|
|
3603
|
+
}
|
|
3604
|
+
|
|
3605
|
+
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
|
|
3606
|
+
content: counter(list-6, decimal) '. '
|
|
3607
|
+
}
|
|
3608
|
+
|
|
3609
|
+
@supports (counter-set:none) {
|
|
3610
|
+
.ql-editor li[data-list].ql-indent-6 {
|
|
3611
|
+
counter-set: list-7 list-8 list-9
|
|
3612
|
+
}
|
|
3613
|
+
}
|
|
3614
|
+
|
|
3615
|
+
@supports not (counter-set:none) {
|
|
3616
|
+
.ql-editor li[data-list].ql-indent-6 {
|
|
3617
|
+
counter-reset: list-7 list-8 list-9
|
|
3618
|
+
}
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3621
|
+
.ql-editor li[data-list=ordered].ql-indent-7 {
|
|
3622
|
+
counter-increment: list-7
|
|
3623
|
+
}
|
|
3624
|
+
|
|
3625
|
+
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
|
|
3626
|
+
content: counter(list-7, lower-alpha) '. '
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
@supports (counter-set:none) {
|
|
3630
|
+
.ql-editor li[data-list].ql-indent-7 {
|
|
3631
|
+
counter-set: list-8 list-9
|
|
3632
|
+
}
|
|
3633
|
+
}
|
|
3634
|
+
|
|
3635
|
+
@supports not (counter-set:none) {
|
|
3636
|
+
.ql-editor li[data-list].ql-indent-7 {
|
|
3637
|
+
counter-reset: list-8 list-9
|
|
3638
|
+
}
|
|
3639
|
+
}
|
|
3640
|
+
|
|
3641
|
+
.ql-editor li[data-list=ordered].ql-indent-8 {
|
|
3642
|
+
counter-increment: list-8
|
|
3643
|
+
}
|
|
3644
|
+
|
|
3645
|
+
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
|
|
3646
|
+
content: counter(list-8, lower-roman) '. '
|
|
3647
|
+
}
|
|
3648
|
+
|
|
3649
|
+
@supports (counter-set:none) {
|
|
3650
|
+
.ql-editor li[data-list].ql-indent-8 {
|
|
3651
|
+
counter-set: list-9
|
|
3652
|
+
}
|
|
3653
|
+
}
|
|
3654
|
+
|
|
3655
|
+
@supports not (counter-set:none) {
|
|
3656
|
+
.ql-editor li[data-list].ql-indent-8 {
|
|
3657
|
+
counter-reset: list-9
|
|
3658
|
+
}
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3661
|
+
.ql-editor li[data-list=ordered].ql-indent-9 {
|
|
3662
|
+
counter-increment: list-9
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3665
|
+
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
|
|
3666
|
+
content: counter(list-9, decimal) '. '
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
|
|
3670
|
+
padding-left: 3em
|
|
3671
|
+
}
|
|
3672
|
+
|
|
3673
|
+
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
|
|
3674
|
+
padding-left: 4.5em
|
|
3675
|
+
}
|
|
3676
|
+
|
|
3677
|
+
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
|
|
3678
|
+
padding-right: 3em
|
|
3679
|
+
}
|
|
3680
|
+
|
|
3681
|
+
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
|
|
3682
|
+
padding-right: 4.5em
|
|
3683
|
+
}
|
|
3684
|
+
|
|
3685
|
+
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
|
|
3686
|
+
padding-left: 6em
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
|
|
3690
|
+
padding-left: 7.5em
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
|
|
3694
|
+
padding-right: 6em
|
|
3695
|
+
}
|
|
3696
|
+
|
|
3697
|
+
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
|
|
3698
|
+
padding-right: 7.5em
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
|
|
3702
|
+
padding-left: 9em
|
|
3703
|
+
}
|
|
3704
|
+
|
|
3705
|
+
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
|
|
3706
|
+
padding-left: 10.5em
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
|
|
3710
|
+
padding-right: 9em
|
|
3711
|
+
}
|
|
3712
|
+
|
|
3713
|
+
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
|
|
3714
|
+
padding-right: 10.5em
|
|
3715
|
+
}
|
|
3716
|
+
|
|
3717
|
+
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
|
|
3718
|
+
padding-left: 12em
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3721
|
+
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
|
|
3722
|
+
padding-left: 13.5em
|
|
3723
|
+
}
|
|
3724
|
+
|
|
3725
|
+
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
|
|
3726
|
+
padding-right: 12em
|
|
3727
|
+
}
|
|
3728
|
+
|
|
3729
|
+
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
|
|
3730
|
+
padding-right: 13.5em
|
|
3731
|
+
}
|
|
3732
|
+
|
|
3733
|
+
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
|
|
3734
|
+
padding-left: 15em
|
|
3735
|
+
}
|
|
3736
|
+
|
|
3737
|
+
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
|
|
3738
|
+
padding-left: 16.5em
|
|
3739
|
+
}
|
|
3740
|
+
|
|
3741
|
+
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
|
|
3742
|
+
padding-right: 15em
|
|
3743
|
+
}
|
|
3744
|
+
|
|
3745
|
+
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
|
|
3746
|
+
padding-right: 16.5em
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
|
|
3750
|
+
padding-left: 18em
|
|
3751
|
+
}
|
|
3752
|
+
|
|
3753
|
+
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
|
|
3754
|
+
padding-left: 19.5em
|
|
3755
|
+
}
|
|
3756
|
+
|
|
3757
|
+
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
|
|
3758
|
+
padding-right: 18em
|
|
3759
|
+
}
|
|
3760
|
+
|
|
3761
|
+
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
|
|
3762
|
+
padding-right: 19.5em
|
|
3763
|
+
}
|
|
3764
|
+
|
|
3765
|
+
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
|
|
3766
|
+
padding-left: 21em
|
|
3767
|
+
}
|
|
3768
|
+
|
|
3769
|
+
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
|
|
3770
|
+
padding-left: 22.5em
|
|
3771
|
+
}
|
|
3772
|
+
|
|
3773
|
+
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
|
|
3774
|
+
padding-right: 21em
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
|
|
3778
|
+
padding-right: 22.5em
|
|
3779
|
+
}
|
|
3780
|
+
|
|
3781
|
+
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
|
|
3782
|
+
padding-left: 24em
|
|
3783
|
+
}
|
|
3784
|
+
|
|
3785
|
+
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
|
|
3786
|
+
padding-left: 25.5em
|
|
3787
|
+
}
|
|
3788
|
+
|
|
3789
|
+
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
|
|
3790
|
+
padding-right: 24em
|
|
3791
|
+
}
|
|
3792
|
+
|
|
3793
|
+
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
|
|
3794
|
+
padding-right: 25.5em
|
|
3795
|
+
}
|
|
3796
|
+
|
|
3797
|
+
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
|
|
3798
|
+
padding-left: 27em
|
|
3799
|
+
}
|
|
3800
|
+
|
|
3801
|
+
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
|
|
3802
|
+
padding-left: 28.5em
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
|
|
3806
|
+
padding-right: 27em
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3809
|
+
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
|
|
3810
|
+
padding-right: 28.5em
|
|
3811
|
+
}
|
|
3812
|
+
|
|
3813
|
+
.ql-editor li.ql-direction-rtl {
|
|
3814
|
+
padding-right: 1.5em
|
|
3815
|
+
}
|
|
3816
|
+
|
|
3817
|
+
.ql-editor li.ql-direction-rtl > .ql-ui:before {
|
|
3818
|
+
margin-left: .3em;
|
|
3819
|
+
margin-right: -1.5em;
|
|
3820
|
+
text-align: left
|
|
3821
|
+
}
|
|
3822
|
+
|
|
3823
|
+
.ql-editor table {
|
|
3824
|
+
table-layout: fixed;
|
|
3825
|
+
width: 100%
|
|
3826
|
+
}
|
|
3827
|
+
|
|
3828
|
+
.ql-editor table td {
|
|
3829
|
+
outline: none
|
|
3830
|
+
}
|
|
3831
|
+
|
|
3832
|
+
.ql-editor .ql-code-block-container {
|
|
3833
|
+
font-family: monospace
|
|
3834
|
+
}
|
|
3835
|
+
|
|
3836
|
+
.ql-editor .ql-video {
|
|
3837
|
+
display: block;
|
|
3838
|
+
max-width: 100%
|
|
3839
|
+
}
|
|
3840
|
+
|
|
3841
|
+
.ql-editor .ql-video.ql-align-center {
|
|
3842
|
+
margin: 0 auto
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
.ql-editor .ql-video.ql-align-right {
|
|
3846
|
+
margin: 0 0 0 auto
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3849
|
+
.ql-editor .ql-bg-black {
|
|
3850
|
+
background-color: #000
|
|
3851
|
+
}
|
|
3852
|
+
|
|
3853
|
+
.ql-editor .ql-bg-red {
|
|
3854
|
+
background-color: #e60000
|
|
3855
|
+
}
|
|
3856
|
+
|
|
3857
|
+
.ql-editor .ql-bg-orange {
|
|
3858
|
+
background-color: #f90
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
.ql-editor .ql-bg-yellow {
|
|
3862
|
+
background-color: #ff0
|
|
3863
|
+
}
|
|
3864
|
+
|
|
3865
|
+
.ql-editor .ql-bg-green {
|
|
3866
|
+
background-color: #008a00
|
|
3867
|
+
}
|
|
3868
|
+
|
|
3869
|
+
.ql-editor .ql-bg-blue {
|
|
3870
|
+
background-color: #06c
|
|
3871
|
+
}
|
|
3872
|
+
|
|
3873
|
+
.ql-editor .ql-bg-purple {
|
|
3874
|
+
background-color: #93f
|
|
3875
|
+
}
|
|
3876
|
+
|
|
3877
|
+
.ql-editor .ql-color-white {
|
|
3878
|
+
color: #fff
|
|
3879
|
+
}
|
|
3880
|
+
|
|
3881
|
+
.ql-editor .ql-color-red {
|
|
3882
|
+
color: #e60000
|
|
3883
|
+
}
|
|
3884
|
+
|
|
3885
|
+
.ql-editor .ql-color-orange {
|
|
3886
|
+
color: #f90
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
.ql-editor .ql-color-yellow {
|
|
3890
|
+
color: #ff0
|
|
3891
|
+
}
|
|
3892
|
+
|
|
3893
|
+
.ql-editor .ql-color-green {
|
|
3894
|
+
color: #008a00
|
|
3895
|
+
}
|
|
3896
|
+
|
|
3897
|
+
.ql-editor .ql-color-blue {
|
|
3898
|
+
color: #06c
|
|
3899
|
+
}
|
|
3900
|
+
|
|
3901
|
+
.ql-editor .ql-color-purple {
|
|
3902
|
+
color: #93f
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
.ql-editor .ql-font-serif {
|
|
3906
|
+
font-family: Georgia, Times New Roman, serif
|
|
3907
|
+
}
|
|
3908
|
+
|
|
3909
|
+
.ql-editor .ql-font-monospace {
|
|
3910
|
+
font-family: Monaco, Courier New, monospace
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3913
|
+
.ql-editor .ql-size-small {
|
|
3914
|
+
font-size: .75em
|
|
3915
|
+
}
|
|
3916
|
+
|
|
3917
|
+
.ql-editor .ql-size-large {
|
|
3918
|
+
font-size: 1.5em
|
|
3919
|
+
}
|
|
3920
|
+
|
|
3921
|
+
.ql-editor .ql-size-huge {
|
|
3922
|
+
font-size: 2.5em
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3925
|
+
.ql-editor .ql-direction-rtl {
|
|
3926
|
+
direction: rtl;
|
|
3927
|
+
text-align: inherit
|
|
3928
|
+
}
|
|
3929
|
+
|
|
3930
|
+
.ql-editor .ql-align-center {
|
|
3931
|
+
text-align: center
|
|
3932
|
+
}
|
|
3933
|
+
|
|
3934
|
+
.ql-editor .ql-align-justify {
|
|
3935
|
+
text-align: justify
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
.ql-editor .ql-align-right {
|
|
3939
|
+
text-align: right
|
|
3940
|
+
}
|
|
3941
|
+
|
|
3942
|
+
.ql-editor .ql-ui {
|
|
3943
|
+
position: absolute
|
|
3944
|
+
}
|
|
3945
|
+
|
|
3946
|
+
.ql-editor.ql-blank::before {
|
|
3947
|
+
color: rgba(0, 0, 0, 0.6);
|
|
3948
|
+
content: attr(data-placeholder);
|
|
3949
|
+
font-style: italic;
|
|
3950
|
+
left: 15px;
|
|
3951
|
+
pointer-events: none;
|
|
3952
|
+
position: absolute;
|
|
3953
|
+
right: 15px
|
|
3954
|
+
}
|
|
3955
|
+
|
|
3956
|
+
.ql-snow.ql-toolbar:after, .ql-snow .ql-toolbar:after {
|
|
3957
|
+
clear: both;
|
|
3958
|
+
content: '';
|
|
3959
|
+
display: table
|
|
3960
|
+
}
|
|
3961
|
+
|
|
3962
|
+
.ql-snow.ql-toolbar button, .ql-snow .ql-toolbar button {
|
|
3963
|
+
background: none;
|
|
3964
|
+
border: none;
|
|
3965
|
+
cursor: pointer;
|
|
3966
|
+
display: inline-block;
|
|
3967
|
+
float: left;
|
|
3968
|
+
height: 24px;
|
|
3969
|
+
padding: 3px 5px;
|
|
3970
|
+
width: 28px
|
|
3971
|
+
}
|
|
3972
|
+
|
|
3973
|
+
.ql-snow.ql-toolbar button svg, .ql-snow .ql-toolbar button svg {
|
|
3974
|
+
float: left;
|
|
3975
|
+
height: 100%
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3978
|
+
.ql-snow.ql-toolbar button:active:hover, .ql-snow .ql-toolbar button:active:hover {
|
|
3979
|
+
outline: none
|
|
3980
|
+
}
|
|
3981
|
+
|
|
3982
|
+
.ql-snow.ql-toolbar input.ql-image[type=file], .ql-snow .ql-toolbar input.ql-image[type=file] {
|
|
3983
|
+
display: none
|
|
3984
|
+
}
|
|
3985
|
+
|
|
3986
|
+
.ql-snow.ql-toolbar button:hover, .ql-snow .ql-toolbar button:hover, .ql-snow.ql-toolbar button:focus, .ql-snow .ql-toolbar button:focus, .ql-snow.ql-toolbar button.ql-active, .ql-snow .ql-toolbar button.ql-active, .ql-snow.ql-toolbar .ql-picker-label:hover, .ql-snow .ql-toolbar .ql-picker-label:hover, .ql-snow.ql-toolbar .ql-picker-label.ql-active, .ql-snow .ql-toolbar .ql-picker-label.ql-active, .ql-snow.ql-toolbar .ql-picker-item:hover, .ql-snow .ql-toolbar .ql-picker-item:hover, .ql-snow.ql-toolbar .ql-picker-item.ql-selected, .ql-snow .ql-toolbar .ql-picker-item.ql-selected {
|
|
3987
|
+
color: #06c
|
|
3988
|
+
}
|
|
3989
|
+
|
|
3990
|
+
.ql-snow.ql-toolbar button:hover .ql-fill, .ql-snow .ql-toolbar button:hover .ql-fill, .ql-snow.ql-toolbar button:focus .ql-fill, .ql-snow .ql-toolbar button:focus .ql-fill, .ql-snow.ql-toolbar button.ql-active .ql-fill, .ql-snow .ql-toolbar button.ql-active .ql-fill, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill, .ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill, .ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill, .ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill, .ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill, .ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill, .ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
|
|
3991
|
+
fill: #06c
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
.ql-snow.ql-toolbar button:hover .ql-stroke, .ql-snow .ql-toolbar button:hover .ql-stroke, .ql-snow.ql-toolbar button:focus .ql-stroke, .ql-snow .ql-toolbar button:focus .ql-stroke, .ql-snow.ql-toolbar button.ql-active .ql-stroke, .ql-snow .ql-toolbar button.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow.ql-toolbar button:hover .ql-stroke-miter, .ql-snow .ql-toolbar button:hover .ql-stroke-miter, .ql-snow.ql-toolbar button:focus .ql-stroke-miter, .ql-snow .ql-toolbar button:focus .ql-stroke-miter, .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
|
|
3995
|
+
stroke: #06c
|
|
3996
|
+
}
|
|
3997
|
+
|
|
3998
|
+
@media (pointer: coarse) {
|
|
3999
|
+
.ql-snow.ql-toolbar button:hover:not(.ql-active), .ql-snow .ql-toolbar button:hover:not(.ql-active) {
|
|
4000
|
+
color: #444
|
|
4001
|
+
}
|
|
4002
|
+
|
|
4003
|
+
.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill, .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
|
|
4004
|
+
fill: #444
|
|
4005
|
+
}
|
|
4006
|
+
|
|
4007
|
+
.ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke, .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
|
|
4008
|
+
stroke: #444
|
|
4009
|
+
}
|
|
4010
|
+
}
|
|
4011
|
+
|
|
4012
|
+
.ql-snow {
|
|
4013
|
+
box-sizing: border-box
|
|
4014
|
+
}
|
|
4015
|
+
|
|
4016
|
+
.ql-snow * {
|
|
4017
|
+
box-sizing: border-box
|
|
4018
|
+
}
|
|
4019
|
+
|
|
4020
|
+
.ql-snow .ql-hidden {
|
|
4021
|
+
display: none
|
|
4022
|
+
}
|
|
4023
|
+
|
|
4024
|
+
.ql-snow .ql-out-bottom, .ql-snow .ql-out-top {
|
|
4025
|
+
visibility: hidden
|
|
4026
|
+
}
|
|
4027
|
+
|
|
4028
|
+
.ql-snow .ql-tooltip {
|
|
4029
|
+
position: absolute;
|
|
4030
|
+
transform: translateY(10px)
|
|
4031
|
+
}
|
|
4032
|
+
|
|
4033
|
+
.ql-snow .ql-tooltip a {
|
|
4034
|
+
cursor: pointer;
|
|
4035
|
+
text-decoration: none
|
|
4036
|
+
}
|
|
4037
|
+
|
|
4038
|
+
.ql-snow .ql-tooltip.ql-flip {
|
|
4039
|
+
transform: translateY(-10px)
|
|
4040
|
+
}
|
|
4041
|
+
|
|
4042
|
+
.ql-snow .ql-formats {
|
|
4043
|
+
display: inline-block;
|
|
4044
|
+
vertical-align: middle
|
|
4045
|
+
}
|
|
4046
|
+
|
|
4047
|
+
.ql-snow .ql-formats:after {
|
|
4048
|
+
clear: both;
|
|
4049
|
+
content: '';
|
|
4050
|
+
display: table
|
|
4051
|
+
}
|
|
4052
|
+
|
|
4053
|
+
.ql-snow .ql-stroke {
|
|
4054
|
+
fill: none;
|
|
4055
|
+
stroke: #444;
|
|
4056
|
+
stroke-linecap: round;
|
|
4057
|
+
stroke-linejoin: round;
|
|
4058
|
+
stroke-width: 2
|
|
4059
|
+
}
|
|
4060
|
+
|
|
4061
|
+
.ql-snow .ql-stroke-miter {
|
|
4062
|
+
fill: none;
|
|
4063
|
+
stroke: #444;
|
|
4064
|
+
stroke-miterlimit: 10;
|
|
4065
|
+
stroke-width: 2
|
|
4066
|
+
}
|
|
4067
|
+
|
|
4068
|
+
.ql-snow .ql-fill, .ql-snow .ql-stroke.ql-fill {
|
|
4069
|
+
fill: #444
|
|
4070
|
+
}
|
|
4071
|
+
|
|
4072
|
+
.ql-snow .ql-empty {
|
|
4073
|
+
fill: none
|
|
4074
|
+
}
|
|
4075
|
+
|
|
4076
|
+
.ql-snow .ql-even {
|
|
4077
|
+
fill-rule: evenodd
|
|
4078
|
+
}
|
|
4079
|
+
|
|
4080
|
+
.ql-snow .ql-thin, .ql-snow .ql-stroke.ql-thin {
|
|
4081
|
+
stroke-width: 1
|
|
4082
|
+
}
|
|
4083
|
+
|
|
4084
|
+
.ql-snow .ql-transparent {
|
|
4085
|
+
opacity: .4
|
|
4086
|
+
}
|
|
4087
|
+
|
|
4088
|
+
.ql-snow .ql-direction svg:last-child {
|
|
4089
|
+
display: none
|
|
4090
|
+
}
|
|
4091
|
+
|
|
4092
|
+
.ql-snow .ql-direction.ql-active svg:last-child {
|
|
4093
|
+
display: inline
|
|
4094
|
+
}
|
|
4095
|
+
|
|
4096
|
+
.ql-snow .ql-direction.ql-active svg:first-child {
|
|
4097
|
+
display: none
|
|
4098
|
+
}
|
|
4099
|
+
|
|
4100
|
+
.ql-snow .ql-editor h1 {
|
|
4101
|
+
font-size: 2em
|
|
4102
|
+
}
|
|
4103
|
+
|
|
4104
|
+
.ql-snow .ql-editor h2 {
|
|
4105
|
+
font-size: 1.5em
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
.ql-snow .ql-editor h3 {
|
|
4109
|
+
font-size: 1.17em
|
|
4110
|
+
}
|
|
4111
|
+
|
|
4112
|
+
.ql-snow .ql-editor h4 {
|
|
4113
|
+
font-size: 1em
|
|
4114
|
+
}
|
|
4115
|
+
|
|
4116
|
+
.ql-snow .ql-editor h5 {
|
|
4117
|
+
font-size: .83em
|
|
4118
|
+
}
|
|
4119
|
+
|
|
4120
|
+
.ql-snow .ql-editor h6 {
|
|
4121
|
+
font-size: .67em
|
|
4122
|
+
}
|
|
4123
|
+
|
|
4124
|
+
.ql-snow .ql-editor a {
|
|
4125
|
+
text-decoration: underline
|
|
4126
|
+
}
|
|
4127
|
+
|
|
4128
|
+
.ql-snow .ql-editor blockquote {
|
|
4129
|
+
border-left: 4px solid #ccc;
|
|
4130
|
+
margin-bottom: 5px;
|
|
4131
|
+
margin-top: 5px;
|
|
4132
|
+
padding-left: 16px
|
|
4133
|
+
}
|
|
4134
|
+
|
|
4135
|
+
.ql-snow .ql-editor code, .ql-snow .ql-editor .ql-code-block-container {
|
|
4136
|
+
background-color: #f0f0f0;
|
|
4137
|
+
border-radius: 3px
|
|
4138
|
+
}
|
|
4139
|
+
|
|
4140
|
+
.ql-snow .ql-editor .ql-code-block-container {
|
|
4141
|
+
margin-bottom: 5px;
|
|
4142
|
+
margin-top: 5px;
|
|
4143
|
+
padding: 5px 10px
|
|
4144
|
+
}
|
|
4145
|
+
|
|
4146
|
+
.ql-snow .ql-editor code {
|
|
4147
|
+
font-size: 85%;
|
|
4148
|
+
padding: 2px 4px
|
|
4149
|
+
}
|
|
4150
|
+
|
|
4151
|
+
.ql-snow .ql-editor .ql-code-block-container {
|
|
4152
|
+
background-color: #23241f;
|
|
4153
|
+
color: #f8f8f2;
|
|
4154
|
+
overflow: visible
|
|
4155
|
+
}
|
|
4156
|
+
|
|
4157
|
+
.ql-snow .ql-editor img {
|
|
4158
|
+
max-width: 100%
|
|
4159
|
+
}
|
|
4160
|
+
|
|
4161
|
+
.ql-snow .ql-picker {
|
|
4162
|
+
color: #444;
|
|
4163
|
+
display: inline-block;
|
|
4164
|
+
float: left;
|
|
4165
|
+
font-size: 14px;
|
|
4166
|
+
font-weight: 500;
|
|
4167
|
+
height: 24px;
|
|
4168
|
+
position: relative;
|
|
4169
|
+
vertical-align: middle
|
|
4170
|
+
}
|
|
4171
|
+
|
|
4172
|
+
.ql-snow .ql-picker-label {
|
|
4173
|
+
cursor: pointer;
|
|
4174
|
+
display: inline-block;
|
|
4175
|
+
height: 100%;
|
|
4176
|
+
padding-left: 8px;
|
|
4177
|
+
padding-right: 2px;
|
|
4178
|
+
position: relative;
|
|
4179
|
+
width: 100%
|
|
4180
|
+
}
|
|
4181
|
+
|
|
4182
|
+
.ql-snow .ql-picker-label::before {
|
|
4183
|
+
display: inline-block;
|
|
4184
|
+
line-height: 22px
|
|
4185
|
+
}
|
|
4186
|
+
|
|
4187
|
+
.ql-snow .ql-picker-options {
|
|
4188
|
+
background-color: #fff;
|
|
4189
|
+
display: none;
|
|
4190
|
+
min-width: 100%;
|
|
4191
|
+
padding: 4px 8px;
|
|
4192
|
+
position: absolute;
|
|
4193
|
+
white-space: nowrap
|
|
4194
|
+
}
|
|
4195
|
+
|
|
4196
|
+
.ql-snow .ql-picker-options .ql-picker-item {
|
|
4197
|
+
cursor: pointer;
|
|
4198
|
+
display: block;
|
|
4199
|
+
padding-bottom: 5px;
|
|
4200
|
+
padding-top: 5px
|
|
4201
|
+
}
|
|
4202
|
+
|
|
4203
|
+
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
|
|
4204
|
+
color: #ccc;
|
|
4205
|
+
z-index: 2
|
|
4206
|
+
}
|
|
4207
|
+
|
|
4208
|
+
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
|
|
4209
|
+
fill: #ccc
|
|
4210
|
+
}
|
|
4211
|
+
|
|
4212
|
+
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
|
|
4213
|
+
stroke: #ccc
|
|
4214
|
+
}
|
|
4215
|
+
|
|
4216
|
+
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
|
|
4217
|
+
display: block;
|
|
4218
|
+
margin-top: -1px;
|
|
4219
|
+
top: 100%;
|
|
4220
|
+
z-index: 1
|
|
4221
|
+
}
|
|
4222
|
+
|
|
4223
|
+
.ql-snow .ql-color-picker, .ql-snow .ql-icon-picker {
|
|
4224
|
+
width: 28px
|
|
4225
|
+
}
|
|
4226
|
+
|
|
4227
|
+
.ql-snow .ql-color-picker .ql-picker-label, .ql-snow .ql-icon-picker .ql-picker-label {
|
|
4228
|
+
padding: 2px 4px
|
|
4229
|
+
}
|
|
4230
|
+
|
|
4231
|
+
.ql-snow .ql-color-picker .ql-picker-label svg, .ql-snow .ql-icon-picker .ql-picker-label svg {
|
|
4232
|
+
right: 4px
|
|
4233
|
+
}
|
|
4234
|
+
|
|
4235
|
+
.ql-snow .ql-icon-picker .ql-picker-options {
|
|
4236
|
+
padding: 4px 0
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
.ql-snow .ql-icon-picker .ql-picker-item {
|
|
4240
|
+
height: 24px;
|
|
4241
|
+
width: 24px;
|
|
4242
|
+
padding: 2px 4px
|
|
4243
|
+
}
|
|
4244
|
+
|
|
4245
|
+
.ql-snow .ql-color-picker .ql-picker-options {
|
|
4246
|
+
padding: 3px 5px;
|
|
4247
|
+
width: 152px
|
|
4248
|
+
}
|
|
4249
|
+
|
|
4250
|
+
.ql-snow .ql-color-picker .ql-picker-item {
|
|
4251
|
+
border: 1px solid transparent;
|
|
4252
|
+
float: left;
|
|
4253
|
+
height: 16px;
|
|
4254
|
+
margin: 2px;
|
|
4255
|
+
padding: 0;
|
|
4256
|
+
width: 16px
|
|
4257
|
+
}
|
|
4258
|
+
|
|
4259
|
+
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
|
|
4260
|
+
position: absolute;
|
|
4261
|
+
margin-top: -9px;
|
|
4262
|
+
right: 0;
|
|
4263
|
+
top: 50%;
|
|
4264
|
+
width: 18px
|
|
4265
|
+
}
|
|
4266
|
+
|
|
4267
|
+
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before, .ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before, .ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
|
|
4268
|
+
content: attr(data-label)
|
|
4269
|
+
}
|
|
4270
|
+
|
|
4271
|
+
.ql-snow .ql-picker.ql-header {
|
|
4272
|
+
width: 98px
|
|
4273
|
+
}
|
|
4274
|
+
|
|
4275
|
+
.ql-snow .ql-picker.ql-header .ql-picker-label::before, .ql-snow .ql-picker.ql-header .ql-picker-item::before {
|
|
4276
|
+
content: 'Normal'
|
|
4277
|
+
}
|
|
4278
|
+
|
|
4279
|
+
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
|
|
4280
|
+
content: 'Heading 1'
|
|
4281
|
+
}
|
|
4282
|
+
|
|
4283
|
+
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
|
|
4284
|
+
content: 'Heading 2'
|
|
4285
|
+
}
|
|
4286
|
+
|
|
4287
|
+
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
|
|
4288
|
+
content: 'Heading 3'
|
|
4289
|
+
}
|
|
4290
|
+
|
|
4291
|
+
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
|
|
4292
|
+
content: 'Heading 4'
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4295
|
+
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
|
|
4296
|
+
content: 'Heading 5'
|
|
4297
|
+
}
|
|
4298
|
+
|
|
4299
|
+
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
|
|
4300
|
+
content: 'Heading 6'
|
|
4301
|
+
}
|
|
4302
|
+
|
|
4303
|
+
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
|
|
4304
|
+
font-size: 2em
|
|
4305
|
+
}
|
|
4306
|
+
|
|
4307
|
+
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
|
|
4308
|
+
font-size: 1.5em
|
|
4309
|
+
}
|
|
4310
|
+
|
|
4311
|
+
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
|
|
4312
|
+
font-size: 1.17em
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4315
|
+
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
|
|
4316
|
+
font-size: 1em
|
|
4317
|
+
}
|
|
4318
|
+
|
|
4319
|
+
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
|
|
4320
|
+
font-size: .83em
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
|
|
4324
|
+
font-size: .67em
|
|
4325
|
+
}
|
|
4326
|
+
|
|
4327
|
+
.ql-snow .ql-picker.ql-font {
|
|
4328
|
+
width: 108px
|
|
4329
|
+
}
|
|
4330
|
+
|
|
4331
|
+
.ql-snow .ql-picker.ql-font .ql-picker-label::before, .ql-snow .ql-picker.ql-font .ql-picker-item::before {
|
|
4332
|
+
content: 'Sans Serif'
|
|
4333
|
+
}
|
|
4334
|
+
|
|
4335
|
+
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
|
|
4336
|
+
content: 'Serif'
|
|
4337
|
+
}
|
|
4338
|
+
|
|
4339
|
+
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
|
|
4340
|
+
content: 'Monospace'
|
|
4341
|
+
}
|
|
4342
|
+
|
|
4343
|
+
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
|
|
4344
|
+
font-family: Georgia, Times New Roman, serif
|
|
4345
|
+
}
|
|
4346
|
+
|
|
4347
|
+
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
|
|
4348
|
+
font-family: Monaco, Courier New, monospace
|
|
4349
|
+
}
|
|
4350
|
+
|
|
4351
|
+
.ql-snow .ql-picker.ql-size {
|
|
4352
|
+
width: 98px
|
|
4353
|
+
}
|
|
4354
|
+
|
|
4355
|
+
.ql-snow .ql-picker.ql-size .ql-picker-label::before, .ql-snow .ql-picker.ql-size .ql-picker-item::before {
|
|
4356
|
+
content: 'Normal'
|
|
4357
|
+
}
|
|
4358
|
+
|
|
4359
|
+
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
|
|
4360
|
+
content: 'Small'
|
|
4361
|
+
}
|
|
4362
|
+
|
|
4363
|
+
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
|
|
4364
|
+
content: 'Large'
|
|
4365
|
+
}
|
|
4366
|
+
|
|
4367
|
+
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
|
|
4368
|
+
content: 'Huge'
|
|
4369
|
+
}
|
|
4370
|
+
|
|
4371
|
+
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
|
|
4372
|
+
font-size: 10px
|
|
4373
|
+
}
|
|
4374
|
+
|
|
4375
|
+
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
|
|
4376
|
+
font-size: 18px
|
|
4377
|
+
}
|
|
4378
|
+
|
|
4379
|
+
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
|
|
4380
|
+
font-size: 32px
|
|
4381
|
+
}
|
|
4382
|
+
|
|
4383
|
+
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
|
|
4384
|
+
background-color: #fff
|
|
4385
|
+
}
|
|
4386
|
+
|
|
4387
|
+
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
|
|
4388
|
+
background-color: #000
|
|
4389
|
+
}
|
|
4390
|
+
|
|
4391
|
+
.ql-code-block-container {
|
|
4392
|
+
position: relative
|
|
4393
|
+
}
|
|
4394
|
+
|
|
4395
|
+
.ql-code-block-container .ql-ui {
|
|
4396
|
+
right: 5px;
|
|
4397
|
+
top: 5px
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4400
|
+
.ql-toolbar.ql-snow {
|
|
4401
|
+
border: 1px solid #ccc;
|
|
4402
|
+
box-sizing: border-box;
|
|
4403
|
+
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
|
|
4404
|
+
padding: 8px
|
|
4405
|
+
}
|
|
4406
|
+
|
|
4407
|
+
.ql-toolbar.ql-snow .ql-formats {
|
|
4408
|
+
margin-right: 15px
|
|
4409
|
+
}
|
|
4410
|
+
|
|
4411
|
+
.ql-toolbar.ql-snow .ql-picker-label {
|
|
4412
|
+
border: 1px solid transparent
|
|
4413
|
+
}
|
|
4414
|
+
|
|
4415
|
+
.ql-toolbar.ql-snow .ql-picker-options {
|
|
4416
|
+
border: 1px solid transparent;
|
|
4417
|
+
box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px
|
|
4418
|
+
}
|
|
4419
|
+
|
|
4420
|
+
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
|
|
4421
|
+
border-color: #ccc
|
|
4422
|
+
}
|
|
4423
|
+
|
|
4424
|
+
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
|
|
4425
|
+
border-color: #ccc
|
|
4426
|
+
}
|
|
4427
|
+
|
|
4428
|
+
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected, .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
|
|
4429
|
+
border-color: #000
|
|
4430
|
+
}
|
|
4431
|
+
|
|
4432
|
+
.ql-toolbar.ql-snow + .ql-container.ql-snow {
|
|
4433
|
+
border-top: 0
|
|
4434
|
+
}
|
|
4435
|
+
|
|
4436
|
+
.ql-snow .ql-tooltip {
|
|
4437
|
+
background-color: #fff;
|
|
4438
|
+
border: 1px solid #ccc;
|
|
4439
|
+
box-shadow: 0 0 5px #ddd;
|
|
4440
|
+
color: #444;
|
|
4441
|
+
padding: 5px 12px;
|
|
4442
|
+
white-space: nowrap
|
|
4443
|
+
}
|
|
4444
|
+
|
|
4445
|
+
.ql-snow .ql-tooltip::before {
|
|
4446
|
+
content: "Visit URL:";
|
|
4447
|
+
line-height: 26px;
|
|
4448
|
+
margin-right: 8px
|
|
4449
|
+
}
|
|
4450
|
+
|
|
4451
|
+
.ql-snow .ql-tooltip input[type=text] {
|
|
4452
|
+
display: none;
|
|
4453
|
+
border: 1px solid #ccc;
|
|
4454
|
+
font-size: 13px;
|
|
4455
|
+
height: 26px;
|
|
4456
|
+
margin: 0;
|
|
4457
|
+
padding: 3px 5px;
|
|
4458
|
+
width: 170px
|
|
4459
|
+
}
|
|
4460
|
+
|
|
4461
|
+
.ql-snow .ql-tooltip a.ql-preview {
|
|
4462
|
+
display: inline-block;
|
|
4463
|
+
max-width: 200px;
|
|
4464
|
+
overflow-x: hidden;
|
|
4465
|
+
text-overflow: ellipsis;
|
|
4466
|
+
vertical-align: top
|
|
4467
|
+
}
|
|
4468
|
+
|
|
4469
|
+
.ql-snow .ql-tooltip a.ql-action::after {
|
|
4470
|
+
border-right: 1px solid #ccc;
|
|
4471
|
+
content: 'Edit';
|
|
4472
|
+
margin-left: 16px;
|
|
4473
|
+
padding-right: 8px
|
|
4474
|
+
}
|
|
4475
|
+
|
|
4476
|
+
.ql-snow .ql-tooltip a.ql-remove::before {
|
|
4477
|
+
content: 'Remove';
|
|
4478
|
+
margin-left: 8px
|
|
4479
|
+
}
|
|
4480
|
+
|
|
4481
|
+
.ql-snow .ql-tooltip a {
|
|
4482
|
+
line-height: 26px
|
|
4483
|
+
}
|
|
4484
|
+
|
|
4485
|
+
.ql-snow .ql-tooltip.ql-editing a.ql-preview, .ql-snow .ql-tooltip.ql-editing a.ql-remove {
|
|
4486
|
+
display: none
|
|
4487
|
+
}
|
|
4488
|
+
|
|
4489
|
+
.ql-snow .ql-tooltip.ql-editing input[type=text] {
|
|
4490
|
+
display: inline-block
|
|
4491
|
+
}
|
|
4492
|
+
|
|
4493
|
+
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
|
|
4494
|
+
border-right: 0;
|
|
4495
|
+
content: 'Save';
|
|
4496
|
+
padding-right: 0
|
|
4497
|
+
}
|
|
4498
|
+
|
|
4499
|
+
.ql-snow .ql-tooltip[data-mode=link]::before {
|
|
4500
|
+
content: "Enter link:"
|
|
4501
|
+
}
|
|
4502
|
+
|
|
4503
|
+
.ql-snow .ql-tooltip[data-mode=formula]::before {
|
|
4504
|
+
content: "Enter formula:"
|
|
4505
|
+
}
|
|
4506
|
+
|
|
4507
|
+
.ql-snow .ql-tooltip[data-mode=video]::before {
|
|
4508
|
+
content: "Enter video:"
|
|
4509
|
+
}
|
|
4510
|
+
|
|
4511
|
+
.ql-snow a {
|
|
4512
|
+
color: #06c
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4515
|
+
.ql-container.ql-snow {
|
|
4516
|
+
border: 1px solid #ccc
|
|
4517
|
+
}
|
|
4518
|
+
/*# sourceMappingURL=quill.snow.css.map */:root {
|
|
4519
|
+
--vc-clr-primary: #000;
|
|
4520
|
+
--vc-clr-secondary: #090f207f;
|
|
4521
|
+
--vc-clr-white: #ffffff;
|
|
4522
|
+
}
|
|
4523
|
+
|
|
4524
|
+
.carousel,
|
|
4525
|
+
.carousel * {
|
|
4526
|
+
box-sizing: border-box;
|
|
4527
|
+
}
|
|
4528
|
+
|
|
4529
|
+
.carousel {
|
|
4530
|
+
height: var(--vc-carousel-height);
|
|
4531
|
+
overscroll-behavior: none;
|
|
4532
|
+
position: relative;
|
|
4533
|
+
touch-action: pan-x pan-y pinch-zoom;
|
|
4534
|
+
z-index: 1;
|
|
4535
|
+
}
|
|
4536
|
+
|
|
4537
|
+
.carousel.is-dragging {
|
|
4538
|
+
touch-action: none;
|
|
4539
|
+
}
|
|
4540
|
+
|
|
4541
|
+
.carousel__track {
|
|
4542
|
+
display: flex;
|
|
4543
|
+
gap: var(--vc-slide-gap);
|
|
4544
|
+
height: 100%;
|
|
4545
|
+
list-style: none;
|
|
4546
|
+
margin: 0;
|
|
4547
|
+
padding: 0;
|
|
4548
|
+
position: relative;
|
|
4549
|
+
transition: transform ease-out;
|
|
4550
|
+
transition-duration: var(--vc-transition-duration);
|
|
4551
|
+
width: 100%;
|
|
4552
|
+
}
|
|
4553
|
+
|
|
4554
|
+
.carousel__viewport {
|
|
4555
|
+
height: 100%;
|
|
4556
|
+
overflow: hidden;
|
|
4557
|
+
width: 100%;
|
|
4558
|
+
}
|
|
4559
|
+
|
|
4560
|
+
.carousel__sr-only {
|
|
4561
|
+
border: 0;
|
|
4562
|
+
clip: rect(0, 0, 0, 0);
|
|
4563
|
+
height: 1px;
|
|
4564
|
+
margin: -1px;
|
|
4565
|
+
overflow: hidden;
|
|
4566
|
+
padding: 0;
|
|
4567
|
+
position: absolute;
|
|
4568
|
+
width: 1px;
|
|
4569
|
+
}
|
|
4570
|
+
|
|
4571
|
+
.carousel.is-rtl {
|
|
4572
|
+
direction: rtl;
|
|
4573
|
+
}
|
|
4574
|
+
|
|
4575
|
+
.carousel.is-ttb .carousel__track {
|
|
4576
|
+
flex-direction: column;
|
|
4577
|
+
}
|
|
4578
|
+
|
|
4579
|
+
.carousel.is-btt .carousel__track {
|
|
4580
|
+
flex-direction: column-reverse;
|
|
4581
|
+
}
|
|
4582
|
+
|
|
4583
|
+
.carousel.is-vertical .carousel__slide--clone:first-child {
|
|
4584
|
+
margin-block-start: var(--vc-cloned-offset);
|
|
4585
|
+
}
|
|
4586
|
+
|
|
4587
|
+
.carousel:not(.is-vertical) .carousel__slide--clone:first-child {
|
|
4588
|
+
margin-inline-start: var(--vc-cloned-offset);
|
|
4589
|
+
}
|
|
4590
|
+
|
|
4591
|
+
.carousel.is-effect-fade .carousel__track {
|
|
4592
|
+
display: grid;
|
|
4593
|
+
grid-template-columns: 100%;
|
|
4594
|
+
grid-template-rows: 100%;
|
|
4595
|
+
transition: none;
|
|
4596
|
+
}
|
|
4597
|
+
|
|
4598
|
+
.carousel.is-effect-fade .carousel__slide {
|
|
4599
|
+
grid-area: 1 / 1;
|
|
4600
|
+
height: 100%;
|
|
4601
|
+
opacity: 0;
|
|
4602
|
+
pointer-events: none;
|
|
4603
|
+
transition: opacity ease-in-out;
|
|
4604
|
+
transition-duration: var(--vc-transition-duration);
|
|
4605
|
+
width: 100%;
|
|
4606
|
+
}
|
|
4607
|
+
|
|
4608
|
+
.carousel.is-effect-fade .carousel__slide--active {
|
|
4609
|
+
opacity: 1;
|
|
4610
|
+
pointer-events: auto;
|
|
4611
|
+
}
|
|
4612
|
+
|
|
4613
|
+
:root {
|
|
4614
|
+
--vc-icn-width: 100%;
|
|
4615
|
+
}
|
|
4616
|
+
|
|
4617
|
+
.carousel__icon {
|
|
4618
|
+
fill: currentColor;
|
|
4619
|
+
height: var(--vc-icn-width);
|
|
4620
|
+
width: var(--vc-icn-width);
|
|
4621
|
+
}
|
|
4622
|
+
|
|
4623
|
+
:root {
|
|
4624
|
+
--vc-nav-background: transparent;
|
|
4625
|
+
--vc-nav-border-radius: 0;
|
|
4626
|
+
--vc-nav-color: var(--vc-clr-primary);
|
|
4627
|
+
--vc-nav-color-hover: var(--vc-clr-secondary);
|
|
4628
|
+
--vc-nav-height: 30px;
|
|
4629
|
+
--vc-nav-width: 30px;
|
|
4630
|
+
}
|
|
4631
|
+
|
|
4632
|
+
.carousel__next,
|
|
4633
|
+
.carousel__prev {
|
|
4634
|
+
align-items: center;
|
|
4635
|
+
background: var(--vc-nav-background);
|
|
4636
|
+
border: 0;
|
|
4637
|
+
border-radius: var(--vc-nav-border-radius);
|
|
4638
|
+
color: var(--vc-nav-color);
|
|
4639
|
+
cursor: pointer;
|
|
4640
|
+
display: flex;
|
|
4641
|
+
font-size: var(--vc-nav-height);
|
|
4642
|
+
height: var(--vc-nav-height);
|
|
4643
|
+
justify-content: center;
|
|
4644
|
+
padding: 0;
|
|
4645
|
+
position: absolute;
|
|
4646
|
+
inset-block-start: 50%;
|
|
4647
|
+
transform: translateY(-50%);
|
|
4648
|
+
width: var(--vc-nav-width);
|
|
4649
|
+
}
|
|
4650
|
+
|
|
4651
|
+
.carousel__next--disabled,
|
|
4652
|
+
.carousel__prev--disabled {
|
|
4653
|
+
cursor: not-allowed;
|
|
4654
|
+
opacity: 0.5;
|
|
4655
|
+
}
|
|
4656
|
+
|
|
4657
|
+
.carousel__next {
|
|
4658
|
+
inset-inline-end: 0;
|
|
4659
|
+
}
|
|
4660
|
+
|
|
4661
|
+
.carousel__prev {
|
|
4662
|
+
inset-inline-start: 0;
|
|
4663
|
+
}
|
|
4664
|
+
|
|
4665
|
+
.carousel.is-vertical .carousel__next,
|
|
4666
|
+
.carousel.is-vertical .carousel__prev {
|
|
4667
|
+
inset-inline: auto 50%;
|
|
4668
|
+
inset-block-start: auto;
|
|
4669
|
+
transform: translateX(50%);
|
|
4670
|
+
}
|
|
4671
|
+
|
|
4672
|
+
.carousel.is-vertical.is-ttb .carousel__next {
|
|
4673
|
+
inset-block-end: 0;
|
|
4674
|
+
}
|
|
4675
|
+
|
|
4676
|
+
.carousel.is-vertical.is-ttb .carousel__prev {
|
|
4677
|
+
inset-block-start: 0;
|
|
4678
|
+
}
|
|
4679
|
+
|
|
4680
|
+
.carousel.is-vertical.is-btt .carousel__next {
|
|
4681
|
+
inset-block-start: 0;
|
|
4682
|
+
}
|
|
4683
|
+
|
|
4684
|
+
.carousel.is-vertical.is-btt .carousel__prev {
|
|
4685
|
+
inset-block-end: 0;
|
|
3385
4686
|
}
|
|
3386
4687
|
|
|
3387
4688
|
@media (hover: hover) {
|
|
@@ -3465,7 +4766,7 @@ select {
|
|
|
3465
4766
|
}
|
|
3466
4767
|
|
|
3467
4768
|
|
|
3468
|
-
.carousel[data-v-
|
|
4769
|
+
.carousel[data-v-88d0c225] {
|
|
3469
4770
|
margin: 1rem 0;
|
|
3470
4771
|
}
|
|
3471
4772
|
|
|
@@ -3486,18 +4787,75 @@ select {
|
|
|
3486
4787
|
-webkit-line-clamp: 4; /* Limit the text to 3 lines */
|
|
3487
4788
|
}
|
|
3488
4789
|
|
|
3489
|
-
.card[data-v-
|
|
4790
|
+
.card[data-v-b6625ed3] {
|
|
3490
4791
|
display: flex;
|
|
3491
4792
|
flex-direction: column;
|
|
3492
4793
|
align-items: center;
|
|
3493
4794
|
text-align: center
|
|
3494
4795
|
}
|
|
3495
4796
|
|
|
3496
|
-
|
|
3497
|
-
.
|
|
4797
|
+
@media (min-width: 640px) {
|
|
4798
|
+
.link-card__columns--2[data-v-c340ea5c] {
|
|
4799
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
4800
|
+
}
|
|
4801
|
+
}
|
|
4802
|
+
@media (min-width: 768px) {
|
|
4803
|
+
.link-card__columns--3[data-v-c340ea5c] {
|
|
4804
|
+
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
4805
|
+
}
|
|
4806
|
+
}
|
|
4807
|
+
@media (min-width: 640px) {
|
|
4808
|
+
.link-card__columns--4[data-v-c340ea5c] {
|
|
4809
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
4810
|
+
}
|
|
4811
|
+
}
|
|
4812
|
+
@media (min-width: 1024px) {
|
|
4813
|
+
.link-card__columns--4[data-v-c340ea5c] {
|
|
4814
|
+
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
4815
|
+
}
|
|
4816
|
+
}
|
|
4817
|
+
.link-card__columns--with-featured-image[data-v-c340ea5c] {
|
|
4818
|
+
height: -moz-fit-content;
|
|
4819
|
+
height: fit-content
|
|
4820
|
+
}
|
|
4821
|
+
.link-card__columns--with-featured-image[data-v-c340ea5c] {
|
|
4822
|
+
flex-direction: column
|
|
4823
|
+
}
|
|
4824
|
+
.link-card__columns--with-featured-image.link-card__columns--2[data-v-c340ea5c] {
|
|
4825
|
+
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
4826
|
+
}
|
|
4827
|
+
@media (min-width: 1024px) {
|
|
4828
|
+
.link-card__columns--with-featured-image.link-card__columns--2[data-v-c340ea5c] {
|
|
4829
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
4830
|
+
}
|
|
4831
|
+
}
|
|
4832
|
+
.link-card__columns--with-featured-image.link-card__columns--3[data-v-c340ea5c] {
|
|
4833
|
+
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
4834
|
+
}
|
|
4835
|
+
@media (min-width: 1280px) {
|
|
4836
|
+
.link-card__columns--with-featured-image.link-card__columns--3[data-v-c340ea5c] {
|
|
4837
|
+
grid-template-columns: repeat(3, minmax(0, 1fr))
|
|
4838
|
+
}
|
|
4839
|
+
}
|
|
4840
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-c340ea5c] {
|
|
4841
|
+
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
4842
|
+
}
|
|
4843
|
+
@media (min-width: 1024px) {
|
|
4844
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-c340ea5c] {
|
|
4845
|
+
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
4846
|
+
}
|
|
4847
|
+
}
|
|
4848
|
+
@media (min-width: 1280px) {
|
|
4849
|
+
.link-card__columns--with-featured-image.link-card__columns--4[data-v-c340ea5c] {
|
|
4850
|
+
grid-template-columns: repeat(4, minmax(0, 1fr))
|
|
4851
|
+
}
|
|
4852
|
+
}
|
|
4853
|
+
|
|
4854
|
+
.fade-enter-active[data-v-9e6ed7b6],
|
|
4855
|
+
.fade-leave-active[data-v-9e6ed7b6] {
|
|
3498
4856
|
transition: opacity 0.1s ease;
|
|
3499
4857
|
}
|
|
3500
|
-
.fade-enter-from[data-v-
|
|
3501
|
-
.fade-leave-to[data-v-
|
|
4858
|
+
.fade-enter-from[data-v-9e6ed7b6],
|
|
4859
|
+
.fade-leave-to[data-v-9e6ed7b6] {
|
|
3502
4860
|
opacity: 0;
|
|
3503
4861
|
}
|