@transferwise/neptune-css 0.0.0-experimental-16f6486 → 0.0.0-experimental-69786e7
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/css/accordion.css +30 -2
- package/dist/css/decision.css +28 -2
- package/dist/css/dropdowns.css +28 -2
- package/dist/css/input-groups.css +40 -2
- package/dist/css/list-group.css +28 -2
- package/dist/css/navbar.css +30 -2
- package/dist/css/neptune-core.css +135 -2
- package/dist/css/neptune.css +307 -12
- package/dist/css/popovers.css +28 -2
- package/package.json +1 -1
- package/src/less/core/_typography.less +23 -1
package/dist/css/accordion.css
CHANGED
|
@@ -60,8 +60,6 @@
|
|
|
60
60
|
line-height: 1.2;
|
|
61
61
|
line-height: var(--line-height-title);
|
|
62
62
|
letter-spacing: 0;
|
|
63
|
-
-webkit-hyphens: auto;
|
|
64
|
-
hyphens: auto;
|
|
65
63
|
font-size: 1.125rem;
|
|
66
64
|
font-size: var(--font-size-18);
|
|
67
65
|
font-weight: 600;
|
|
@@ -69,6 +67,36 @@
|
|
|
69
67
|
letter-spacing: -0.014em;
|
|
70
68
|
line-height: 135%;
|
|
71
69
|
}
|
|
70
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
71
|
+
.decision__title {
|
|
72
|
+
-webkit-hyphens: auto;
|
|
73
|
+
hyphens: auto;
|
|
74
|
+
hyphenate-limit-chars: 7 3;
|
|
75
|
+
}
|
|
76
|
+
@media (min-width: 768px) {
|
|
77
|
+
.decision__title {
|
|
78
|
+
hyphenate-limit-chars: 8 3;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
@media (min-width: 992px) {
|
|
82
|
+
.decision__title {
|
|
83
|
+
hyphenate-limit-chars: 10 4 3;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
88
|
+
.decision__title {
|
|
89
|
+
-webkit-hyphens: auto;
|
|
90
|
+
hyphens: auto;
|
|
91
|
+
-webkit-hyphenate-limit-before: 3;
|
|
92
|
+
-webkit-hyphenate-limit-after: 3;
|
|
93
|
+
}
|
|
94
|
+
@media (min-width: 992px) {
|
|
95
|
+
.decision__title {
|
|
96
|
+
-webkit-hyphenate-limit-before: 4;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
72
100
|
.decision__title + p,
|
|
73
101
|
.decision__title + ul:not(.list-unstyled),
|
|
74
102
|
.decision__title + ol:not(.list-unstyled) {
|
package/dist/css/decision.css
CHANGED
|
@@ -21,14 +21,40 @@
|
|
|
21
21
|
line-height: 1.2;
|
|
22
22
|
line-height: var(--line-height-title);
|
|
23
23
|
letter-spacing: 0;
|
|
24
|
-
-webkit-hyphens: auto;
|
|
25
|
-
hyphens: auto;
|
|
26
24
|
font-size: 1.125rem;
|
|
27
25
|
font-size: var(--font-size-18);
|
|
28
26
|
font-weight: 600;
|
|
29
27
|
font-weight: var(--font-weight-semi-bold);
|
|
30
28
|
letter-spacing: -0.014em;
|
|
31
29
|
line-height: 135%;
|
|
30
|
+
}@supports (hyphenate-limit-chars: 1) {
|
|
31
|
+
.decision__title {
|
|
32
|
+
-webkit-hyphens: auto;
|
|
33
|
+
hyphens: auto;
|
|
34
|
+
hyphenate-limit-chars: 7 3;
|
|
35
|
+
}
|
|
36
|
+
@media (min-width: 768px) {
|
|
37
|
+
.decision__title {
|
|
38
|
+
hyphenate-limit-chars: 8 3;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
@media (min-width: 992px) {
|
|
42
|
+
.decision__title {
|
|
43
|
+
hyphenate-limit-chars: 10 4 3;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
47
|
+
.decision__title {
|
|
48
|
+
-webkit-hyphens: auto;
|
|
49
|
+
hyphens: auto;
|
|
50
|
+
-webkit-hyphenate-limit-before: 3;
|
|
51
|
+
-webkit-hyphenate-limit-after: 3;
|
|
52
|
+
}
|
|
53
|
+
@media (min-width: 992px) {
|
|
54
|
+
.decision__title {
|
|
55
|
+
-webkit-hyphenate-limit-before: 4;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
32
58
|
}.decision__title + p,
|
|
33
59
|
.decision__title + ul:not(.list-unstyled),
|
|
34
60
|
.decision__title + ol:not(.list-unstyled) {
|
package/dist/css/dropdowns.css
CHANGED
|
@@ -335,14 +335,40 @@
|
|
|
335
335
|
line-height: 1.2;
|
|
336
336
|
line-height: var(--line-height-title);
|
|
337
337
|
letter-spacing: 0;
|
|
338
|
-
-webkit-hyphens: auto;
|
|
339
|
-
hyphens: auto;
|
|
340
338
|
font-weight: 500;
|
|
341
339
|
font-weight: var(--font-weight-medium);
|
|
342
340
|
font-size: 0.875rem;
|
|
343
341
|
font-size: var(--font-size-14);
|
|
344
342
|
letter-spacing: -0.006em;
|
|
345
343
|
line-height: 140%;
|
|
344
|
+
}@supports (hyphenate-limit-chars: 1) {
|
|
345
|
+
.dropdown-header {
|
|
346
|
+
-webkit-hyphens: auto;
|
|
347
|
+
hyphens: auto;
|
|
348
|
+
hyphenate-limit-chars: 7 3;
|
|
349
|
+
}
|
|
350
|
+
@media (min-width: 768px) {
|
|
351
|
+
.dropdown-header {
|
|
352
|
+
hyphenate-limit-chars: 8 3;
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
@media (min-width: 992px) {
|
|
356
|
+
.dropdown-header {
|
|
357
|
+
hyphenate-limit-chars: 10 4 3;
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
}@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
361
|
+
.dropdown-header {
|
|
362
|
+
-webkit-hyphens: auto;
|
|
363
|
+
hyphens: auto;
|
|
364
|
+
-webkit-hyphenate-limit-before: 3;
|
|
365
|
+
-webkit-hyphenate-limit-after: 3;
|
|
366
|
+
}
|
|
367
|
+
@media (min-width: 992px) {
|
|
368
|
+
.dropdown-header {
|
|
369
|
+
-webkit-hyphenate-limit-before: 4;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
346
372
|
}.dropdown-header + p,
|
|
347
373
|
.dropdown-header + ul:not(.list-unstyled),
|
|
348
374
|
.dropdown-header + ol:not(.list-unstyled) {
|
|
@@ -2358,8 +2358,6 @@ html:not([dir="rtl"]) .input-group .form-control:not(:last-child) {
|
|
|
2358
2358
|
line-height: 1.2;
|
|
2359
2359
|
line-height: var(--line-height-title);
|
|
2360
2360
|
letter-spacing: 0;
|
|
2361
|
-
-webkit-hyphens: auto;
|
|
2362
|
-
hyphens: auto;
|
|
2363
2361
|
margin-bottom: 0;
|
|
2364
2362
|
margin-bottom: initial;
|
|
2365
2363
|
font-size: 1.375rem;
|
|
@@ -2383,6 +2381,46 @@ select[multiple].input-group-lg > .input-group-addon,
|
|
|
2383
2381
|
select[multiple].input-group-lg > .input-group-btn .btn {
|
|
2384
2382
|
height: auto;
|
|
2385
2383
|
}
|
|
2384
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
2385
|
+
.input-group-lg > .form-control,
|
|
2386
|
+
.input-group-lg > .input-group-addon,
|
|
2387
|
+
.input-group-lg > .input-group-btn .btn {
|
|
2388
|
+
-webkit-hyphens: auto;
|
|
2389
|
+
hyphens: auto;
|
|
2390
|
+
hyphenate-limit-chars: 7 3;
|
|
2391
|
+
}
|
|
2392
|
+
@media (min-width: 768px) {
|
|
2393
|
+
.input-group-lg > .form-control,
|
|
2394
|
+
.input-group-lg > .input-group-addon,
|
|
2395
|
+
.input-group-lg > .input-group-btn .btn {
|
|
2396
|
+
hyphenate-limit-chars: 8 3;
|
|
2397
|
+
}
|
|
2398
|
+
}
|
|
2399
|
+
@media (min-width: 992px) {
|
|
2400
|
+
.input-group-lg > .form-control,
|
|
2401
|
+
.input-group-lg > .input-group-addon,
|
|
2402
|
+
.input-group-lg > .input-group-btn .btn {
|
|
2403
|
+
hyphenate-limit-chars: 10 4 3;
|
|
2404
|
+
}
|
|
2405
|
+
}
|
|
2406
|
+
}
|
|
2407
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
2408
|
+
.input-group-lg > .form-control,
|
|
2409
|
+
.input-group-lg > .input-group-addon,
|
|
2410
|
+
.input-group-lg > .input-group-btn .btn {
|
|
2411
|
+
-webkit-hyphens: auto;
|
|
2412
|
+
hyphens: auto;
|
|
2413
|
+
-webkit-hyphenate-limit-before: 3;
|
|
2414
|
+
-webkit-hyphenate-limit-after: 3;
|
|
2415
|
+
}
|
|
2416
|
+
@media (min-width: 992px) {
|
|
2417
|
+
.input-group-lg > .form-control,
|
|
2418
|
+
.input-group-lg > .input-group-addon,
|
|
2419
|
+
.input-group-lg > .input-group-btn .btn {
|
|
2420
|
+
-webkit-hyphenate-limit-before: 4;
|
|
2421
|
+
}
|
|
2422
|
+
}
|
|
2423
|
+
}
|
|
2386
2424
|
.input-group-lg > .form-control + p,
|
|
2387
2425
|
.input-group-lg > .input-group-addon + p,
|
|
2388
2426
|
.input-group-lg > .input-group-btn .btn + p,
|
package/dist/css/list-group.css
CHANGED
|
@@ -49,8 +49,6 @@
|
|
|
49
49
|
line-height: 1.2;
|
|
50
50
|
line-height: var(--line-height-title);
|
|
51
51
|
letter-spacing: 0;
|
|
52
|
-
-webkit-hyphens: auto;
|
|
53
|
-
hyphens: auto;
|
|
54
52
|
font-weight: 500;
|
|
55
53
|
font-weight: var(--font-weight-medium);
|
|
56
54
|
font-size: 0.875rem;
|
|
@@ -59,6 +57,34 @@
|
|
|
59
57
|
line-height: 140%;
|
|
60
58
|
color: #37517e;
|
|
61
59
|
color: var(--color-content-primary);
|
|
60
|
+
}@supports (hyphenate-limit-chars: 1) {
|
|
61
|
+
.list-group-item-heading {
|
|
62
|
+
-webkit-hyphens: auto;
|
|
63
|
+
hyphens: auto;
|
|
64
|
+
hyphenate-limit-chars: 7 3;
|
|
65
|
+
}
|
|
66
|
+
@media (min-width: 768px) {
|
|
67
|
+
.list-group-item-heading {
|
|
68
|
+
hyphenate-limit-chars: 8 3;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
@media (min-width: 992px) {
|
|
72
|
+
.list-group-item-heading {
|
|
73
|
+
hyphenate-limit-chars: 10 4 3;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
77
|
+
.list-group-item-heading {
|
|
78
|
+
-webkit-hyphens: auto;
|
|
79
|
+
hyphens: auto;
|
|
80
|
+
-webkit-hyphenate-limit-before: 3;
|
|
81
|
+
-webkit-hyphenate-limit-after: 3;
|
|
82
|
+
}
|
|
83
|
+
@media (min-width: 992px) {
|
|
84
|
+
.list-group-item-heading {
|
|
85
|
+
-webkit-hyphenate-limit-before: 4;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
62
88
|
}.list-group-item-heading + p,
|
|
63
89
|
.list-group-item-heading + ul:not(.list-unstyled),
|
|
64
90
|
.list-group-item-heading + ol:not(.list-unstyled) {
|
package/dist/css/navbar.css
CHANGED
|
@@ -524,8 +524,6 @@
|
|
|
524
524
|
line-height: 1.2;
|
|
525
525
|
line-height: var(--line-height-title);
|
|
526
526
|
letter-spacing: 0;
|
|
527
|
-
-webkit-hyphens: auto;
|
|
528
|
-
hyphens: auto;
|
|
529
527
|
font-weight: 500;
|
|
530
528
|
font-weight: var(--font-weight-medium);
|
|
531
529
|
font-size: 0.875rem;
|
|
@@ -533,6 +531,36 @@
|
|
|
533
531
|
letter-spacing: -0.006em;
|
|
534
532
|
line-height: 140%;
|
|
535
533
|
}
|
|
534
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
535
|
+
.dropdown-header {
|
|
536
|
+
-webkit-hyphens: auto;
|
|
537
|
+
hyphens: auto;
|
|
538
|
+
hyphenate-limit-chars: 7 3;
|
|
539
|
+
}
|
|
540
|
+
@media (min-width: 768px) {
|
|
541
|
+
.dropdown-header {
|
|
542
|
+
hyphenate-limit-chars: 8 3;
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
@media (min-width: 992px) {
|
|
546
|
+
.dropdown-header {
|
|
547
|
+
hyphenate-limit-chars: 10 4 3;
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
552
|
+
.dropdown-header {
|
|
553
|
+
-webkit-hyphens: auto;
|
|
554
|
+
hyphens: auto;
|
|
555
|
+
-webkit-hyphenate-limit-before: 3;
|
|
556
|
+
-webkit-hyphenate-limit-after: 3;
|
|
557
|
+
}
|
|
558
|
+
@media (min-width: 992px) {
|
|
559
|
+
.dropdown-header {
|
|
560
|
+
-webkit-hyphenate-limit-before: 4;
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
}
|
|
536
564
|
.dropdown-header + p,
|
|
537
565
|
.dropdown-header + ul:not(.list-unstyled),
|
|
538
566
|
.dropdown-header + ol:not(.list-unstyled) {
|
|
@@ -769,8 +769,141 @@ h6,
|
|
|
769
769
|
line-height: 1.2;
|
|
770
770
|
line-height: var(--line-height-title);
|
|
771
771
|
letter-spacing: 0;
|
|
772
|
-
|
|
773
|
-
|
|
772
|
+
}
|
|
773
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
774
|
+
.h1,
|
|
775
|
+
.h2,
|
|
776
|
+
.h3,
|
|
777
|
+
.h4,
|
|
778
|
+
.h5,
|
|
779
|
+
.h6,
|
|
780
|
+
.title-1,
|
|
781
|
+
.title-2,
|
|
782
|
+
.title-3,
|
|
783
|
+
.title-4,
|
|
784
|
+
.title-5,
|
|
785
|
+
h1,
|
|
786
|
+
h2,
|
|
787
|
+
h3,
|
|
788
|
+
h4,
|
|
789
|
+
h5,
|
|
790
|
+
h6,
|
|
791
|
+
.np-text-title-screen,
|
|
792
|
+
.np-text-title-section,
|
|
793
|
+
.np-text-title-subsection,
|
|
794
|
+
.np-text-title-body,
|
|
795
|
+
.np-text-title-group {
|
|
796
|
+
-webkit-hyphens: auto;
|
|
797
|
+
hyphens: auto;
|
|
798
|
+
hyphenate-limit-chars: 7 3;
|
|
799
|
+
}
|
|
800
|
+
@media (min-width: 768px) {
|
|
801
|
+
.h1,
|
|
802
|
+
.h2,
|
|
803
|
+
.h3,
|
|
804
|
+
.h4,
|
|
805
|
+
.h5,
|
|
806
|
+
.h6,
|
|
807
|
+
.title-1,
|
|
808
|
+
.title-2,
|
|
809
|
+
.title-3,
|
|
810
|
+
.title-4,
|
|
811
|
+
.title-5,
|
|
812
|
+
h1,
|
|
813
|
+
h2,
|
|
814
|
+
h3,
|
|
815
|
+
h4,
|
|
816
|
+
h5,
|
|
817
|
+
h6,
|
|
818
|
+
.np-text-title-screen,
|
|
819
|
+
.np-text-title-section,
|
|
820
|
+
.np-text-title-subsection,
|
|
821
|
+
.np-text-title-body,
|
|
822
|
+
.np-text-title-group {
|
|
823
|
+
hyphenate-limit-chars: 8 3;
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
@media (min-width: 992px) {
|
|
827
|
+
.h1,
|
|
828
|
+
.h2,
|
|
829
|
+
.h3,
|
|
830
|
+
.h4,
|
|
831
|
+
.h5,
|
|
832
|
+
.h6,
|
|
833
|
+
.title-1,
|
|
834
|
+
.title-2,
|
|
835
|
+
.title-3,
|
|
836
|
+
.title-4,
|
|
837
|
+
.title-5,
|
|
838
|
+
h1,
|
|
839
|
+
h2,
|
|
840
|
+
h3,
|
|
841
|
+
h4,
|
|
842
|
+
h5,
|
|
843
|
+
h6,
|
|
844
|
+
.np-text-title-screen,
|
|
845
|
+
.np-text-title-section,
|
|
846
|
+
.np-text-title-subsection,
|
|
847
|
+
.np-text-title-body,
|
|
848
|
+
.np-text-title-group {
|
|
849
|
+
hyphenate-limit-chars: 10 4 3;
|
|
850
|
+
}
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
854
|
+
.h1,
|
|
855
|
+
.h2,
|
|
856
|
+
.h3,
|
|
857
|
+
.h4,
|
|
858
|
+
.h5,
|
|
859
|
+
.h6,
|
|
860
|
+
.title-1,
|
|
861
|
+
.title-2,
|
|
862
|
+
.title-3,
|
|
863
|
+
.title-4,
|
|
864
|
+
.title-5,
|
|
865
|
+
h1,
|
|
866
|
+
h2,
|
|
867
|
+
h3,
|
|
868
|
+
h4,
|
|
869
|
+
h5,
|
|
870
|
+
h6,
|
|
871
|
+
.np-text-title-screen,
|
|
872
|
+
.np-text-title-section,
|
|
873
|
+
.np-text-title-subsection,
|
|
874
|
+
.np-text-title-body,
|
|
875
|
+
.np-text-title-group {
|
|
876
|
+
-webkit-hyphens: auto;
|
|
877
|
+
hyphens: auto;
|
|
878
|
+
-webkit-hyphenate-limit-before: 3;
|
|
879
|
+
-webkit-hyphenate-limit-after: 3;
|
|
880
|
+
}
|
|
881
|
+
@media (min-width: 992px) {
|
|
882
|
+
.h1,
|
|
883
|
+
.h2,
|
|
884
|
+
.h3,
|
|
885
|
+
.h4,
|
|
886
|
+
.h5,
|
|
887
|
+
.h6,
|
|
888
|
+
.title-1,
|
|
889
|
+
.title-2,
|
|
890
|
+
.title-3,
|
|
891
|
+
.title-4,
|
|
892
|
+
.title-5,
|
|
893
|
+
h1,
|
|
894
|
+
h2,
|
|
895
|
+
h3,
|
|
896
|
+
h4,
|
|
897
|
+
h5,
|
|
898
|
+
h6,
|
|
899
|
+
.np-text-title-screen,
|
|
900
|
+
.np-text-title-section,
|
|
901
|
+
.np-text-title-subsection,
|
|
902
|
+
.np-text-title-body,
|
|
903
|
+
.np-text-title-group {
|
|
904
|
+
-webkit-hyphenate-limit-before: 4;
|
|
905
|
+
}
|
|
906
|
+
}
|
|
774
907
|
}
|
|
775
908
|
.h1 + p,
|
|
776
909
|
.h2 + p,
|
package/dist/css/neptune.css
CHANGED
|
@@ -2410,8 +2410,143 @@ h6,
|
|
|
2410
2410
|
line-height: 1.2;
|
|
2411
2411
|
line-height: var(--line-height-title);
|
|
2412
2412
|
letter-spacing: 0;
|
|
2413
|
-
|
|
2414
|
-
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
2416
|
+
.h1,
|
|
2417
|
+
.h2,
|
|
2418
|
+
.h3,
|
|
2419
|
+
.h4,
|
|
2420
|
+
.h5,
|
|
2421
|
+
.h6,
|
|
2422
|
+
.title-1,
|
|
2423
|
+
.title-2,
|
|
2424
|
+
.title-3,
|
|
2425
|
+
.title-4,
|
|
2426
|
+
.title-5,
|
|
2427
|
+
h1,
|
|
2428
|
+
h2,
|
|
2429
|
+
h3,
|
|
2430
|
+
h4,
|
|
2431
|
+
h5,
|
|
2432
|
+
h6,
|
|
2433
|
+
.np-text-title-screen,
|
|
2434
|
+
.np-text-title-section,
|
|
2435
|
+
.np-text-title-subsection,
|
|
2436
|
+
.np-text-title-body,
|
|
2437
|
+
.np-text-title-group {
|
|
2438
|
+
-webkit-hyphens: auto;
|
|
2439
|
+
hyphens: auto;
|
|
2440
|
+
hyphenate-limit-chars: 7 3;
|
|
2441
|
+
}
|
|
2442
|
+
@media (min-width: 768px) {
|
|
2443
|
+
.h1,
|
|
2444
|
+
.h2,
|
|
2445
|
+
.h3,
|
|
2446
|
+
.h4,
|
|
2447
|
+
.h5,
|
|
2448
|
+
.h6,
|
|
2449
|
+
.title-1,
|
|
2450
|
+
.title-2,
|
|
2451
|
+
.title-3,
|
|
2452
|
+
.title-4,
|
|
2453
|
+
.title-5,
|
|
2454
|
+
h1,
|
|
2455
|
+
h2,
|
|
2456
|
+
h3,
|
|
2457
|
+
h4,
|
|
2458
|
+
h5,
|
|
2459
|
+
h6,
|
|
2460
|
+
.np-text-title-screen,
|
|
2461
|
+
.np-text-title-section,
|
|
2462
|
+
.np-text-title-subsection,
|
|
2463
|
+
.np-text-title-body,
|
|
2464
|
+
.np-text-title-group {
|
|
2465
|
+
hyphenate-limit-chars: 8 3;
|
|
2466
|
+
}
|
|
2467
|
+
}
|
|
2468
|
+
@media (min-width: 992px) {
|
|
2469
|
+
.h1,
|
|
2470
|
+
.h2,
|
|
2471
|
+
.h3,
|
|
2472
|
+
.h4,
|
|
2473
|
+
.h5,
|
|
2474
|
+
.h6,
|
|
2475
|
+
.title-1,
|
|
2476
|
+
.title-2,
|
|
2477
|
+
.title-3,
|
|
2478
|
+
.title-4,
|
|
2479
|
+
.title-5,
|
|
2480
|
+
h1,
|
|
2481
|
+
h2,
|
|
2482
|
+
h3,
|
|
2483
|
+
h4,
|
|
2484
|
+
h5,
|
|
2485
|
+
h6,
|
|
2486
|
+
.np-text-title-screen,
|
|
2487
|
+
.np-text-title-section,
|
|
2488
|
+
.np-text-title-subsection,
|
|
2489
|
+
.np-text-title-body,
|
|
2490
|
+
.np-text-title-group {
|
|
2491
|
+
hyphenate-limit-chars: 10 4 3;
|
|
2492
|
+
}
|
|
2493
|
+
}
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
2497
|
+
.h1,
|
|
2498
|
+
.h2,
|
|
2499
|
+
.h3,
|
|
2500
|
+
.h4,
|
|
2501
|
+
.h5,
|
|
2502
|
+
.h6,
|
|
2503
|
+
.title-1,
|
|
2504
|
+
.title-2,
|
|
2505
|
+
.title-3,
|
|
2506
|
+
.title-4,
|
|
2507
|
+
.title-5,
|
|
2508
|
+
h1,
|
|
2509
|
+
h2,
|
|
2510
|
+
h3,
|
|
2511
|
+
h4,
|
|
2512
|
+
h5,
|
|
2513
|
+
h6,
|
|
2514
|
+
.np-text-title-screen,
|
|
2515
|
+
.np-text-title-section,
|
|
2516
|
+
.np-text-title-subsection,
|
|
2517
|
+
.np-text-title-body,
|
|
2518
|
+
.np-text-title-group {
|
|
2519
|
+
-webkit-hyphens: auto;
|
|
2520
|
+
hyphens: auto;
|
|
2521
|
+
-webkit-hyphenate-limit-before: 3;
|
|
2522
|
+
-webkit-hyphenate-limit-after: 3;
|
|
2523
|
+
}
|
|
2524
|
+
@media (min-width: 992px) {
|
|
2525
|
+
.h1,
|
|
2526
|
+
.h2,
|
|
2527
|
+
.h3,
|
|
2528
|
+
.h4,
|
|
2529
|
+
.h5,
|
|
2530
|
+
.h6,
|
|
2531
|
+
.title-1,
|
|
2532
|
+
.title-2,
|
|
2533
|
+
.title-3,
|
|
2534
|
+
.title-4,
|
|
2535
|
+
.title-5,
|
|
2536
|
+
h1,
|
|
2537
|
+
h2,
|
|
2538
|
+
h3,
|
|
2539
|
+
h4,
|
|
2540
|
+
h5,
|
|
2541
|
+
h6,
|
|
2542
|
+
.np-text-title-screen,
|
|
2543
|
+
.np-text-title-section,
|
|
2544
|
+
.np-text-title-subsection,
|
|
2545
|
+
.np-text-title-body,
|
|
2546
|
+
.np-text-title-group {
|
|
2547
|
+
-webkit-hyphenate-limit-before: 4;
|
|
2548
|
+
}
|
|
2549
|
+
}
|
|
2415
2550
|
}
|
|
2416
2551
|
|
|
2417
2552
|
.h1 + p,
|
|
@@ -11993,8 +12128,6 @@ html:not([dir="rtl"]) .input-group .form-control:not(:last-child) {
|
|
|
11993
12128
|
line-height: 1.2;
|
|
11994
12129
|
line-height: var(--line-height-title);
|
|
11995
12130
|
letter-spacing: 0;
|
|
11996
|
-
-webkit-hyphens: auto;
|
|
11997
|
-
hyphens: auto;
|
|
11998
12131
|
margin-bottom: 0;
|
|
11999
12132
|
margin-bottom: initial;
|
|
12000
12133
|
font-size: 1.375rem;
|
|
@@ -12021,6 +12154,48 @@ select[multiple].input-group-lg > .input-group-btn .btn {
|
|
|
12021
12154
|
height: auto;
|
|
12022
12155
|
}
|
|
12023
12156
|
|
|
12157
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
12158
|
+
.input-group-lg > .form-control,
|
|
12159
|
+
.input-group-lg > .input-group-addon,
|
|
12160
|
+
.input-group-lg > .input-group-btn .btn {
|
|
12161
|
+
-webkit-hyphens: auto;
|
|
12162
|
+
hyphens: auto;
|
|
12163
|
+
hyphenate-limit-chars: 7 3;
|
|
12164
|
+
}
|
|
12165
|
+
@media (min-width: 768px) {
|
|
12166
|
+
.input-group-lg > .form-control,
|
|
12167
|
+
.input-group-lg > .input-group-addon,
|
|
12168
|
+
.input-group-lg > .input-group-btn .btn {
|
|
12169
|
+
hyphenate-limit-chars: 8 3;
|
|
12170
|
+
}
|
|
12171
|
+
}
|
|
12172
|
+
@media (min-width: 992px) {
|
|
12173
|
+
.input-group-lg > .form-control,
|
|
12174
|
+
.input-group-lg > .input-group-addon,
|
|
12175
|
+
.input-group-lg > .input-group-btn .btn {
|
|
12176
|
+
hyphenate-limit-chars: 10 4 3;
|
|
12177
|
+
}
|
|
12178
|
+
}
|
|
12179
|
+
}
|
|
12180
|
+
|
|
12181
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
12182
|
+
.input-group-lg > .form-control,
|
|
12183
|
+
.input-group-lg > .input-group-addon,
|
|
12184
|
+
.input-group-lg > .input-group-btn .btn {
|
|
12185
|
+
-webkit-hyphens: auto;
|
|
12186
|
+
hyphens: auto;
|
|
12187
|
+
-webkit-hyphenate-limit-before: 3;
|
|
12188
|
+
-webkit-hyphenate-limit-after: 3;
|
|
12189
|
+
}
|
|
12190
|
+
@media (min-width: 992px) {
|
|
12191
|
+
.input-group-lg > .form-control,
|
|
12192
|
+
.input-group-lg > .input-group-addon,
|
|
12193
|
+
.input-group-lg > .input-group-btn .btn {
|
|
12194
|
+
-webkit-hyphenate-limit-before: 4;
|
|
12195
|
+
}
|
|
12196
|
+
}
|
|
12197
|
+
}
|
|
12198
|
+
|
|
12024
12199
|
.input-group-lg > .form-control + p,
|
|
12025
12200
|
.input-group-lg > .input-group-addon + p,
|
|
12026
12201
|
.input-group-lg > .input-group-btn .btn + p,
|
|
@@ -12991,8 +13166,6 @@ li > a > .currency-flag:first-child {
|
|
|
12991
13166
|
line-height: 1.2;
|
|
12992
13167
|
line-height: var(--line-height-title);
|
|
12993
13168
|
letter-spacing: 0;
|
|
12994
|
-
-webkit-hyphens: auto;
|
|
12995
|
-
hyphens: auto;
|
|
12996
13169
|
font-size: 1.125rem;
|
|
12997
13170
|
font-size: var(--font-size-18);
|
|
12998
13171
|
font-weight: 600;
|
|
@@ -13001,6 +13174,38 @@ li > a > .currency-flag:first-child {
|
|
|
13001
13174
|
line-height: 135%;
|
|
13002
13175
|
}
|
|
13003
13176
|
|
|
13177
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
13178
|
+
.decision__title {
|
|
13179
|
+
-webkit-hyphens: auto;
|
|
13180
|
+
hyphens: auto;
|
|
13181
|
+
hyphenate-limit-chars: 7 3;
|
|
13182
|
+
}
|
|
13183
|
+
@media (min-width: 768px) {
|
|
13184
|
+
.decision__title {
|
|
13185
|
+
hyphenate-limit-chars: 8 3;
|
|
13186
|
+
}
|
|
13187
|
+
}
|
|
13188
|
+
@media (min-width: 992px) {
|
|
13189
|
+
.decision__title {
|
|
13190
|
+
hyphenate-limit-chars: 10 4 3;
|
|
13191
|
+
}
|
|
13192
|
+
}
|
|
13193
|
+
}
|
|
13194
|
+
|
|
13195
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
13196
|
+
.decision__title {
|
|
13197
|
+
-webkit-hyphens: auto;
|
|
13198
|
+
hyphens: auto;
|
|
13199
|
+
-webkit-hyphenate-limit-before: 3;
|
|
13200
|
+
-webkit-hyphenate-limit-after: 3;
|
|
13201
|
+
}
|
|
13202
|
+
@media (min-width: 992px) {
|
|
13203
|
+
.decision__title {
|
|
13204
|
+
-webkit-hyphenate-limit-before: 4;
|
|
13205
|
+
}
|
|
13206
|
+
}
|
|
13207
|
+
}
|
|
13208
|
+
|
|
13004
13209
|
.decision__title + p,
|
|
13005
13210
|
.decision__title + ul:not(.list-unstyled),
|
|
13006
13211
|
.decision__title + ol:not(.list-unstyled) {
|
|
@@ -13510,8 +13715,6 @@ li > a > .currency-flag:first-child {
|
|
|
13510
13715
|
line-height: 1.2;
|
|
13511
13716
|
line-height: var(--line-height-title);
|
|
13512
13717
|
letter-spacing: 0;
|
|
13513
|
-
-webkit-hyphens: auto;
|
|
13514
|
-
hyphens: auto;
|
|
13515
13718
|
font-weight: 500;
|
|
13516
13719
|
font-weight: var(--font-weight-medium);
|
|
13517
13720
|
font-size: 0.875rem;
|
|
@@ -13520,6 +13723,38 @@ li > a > .currency-flag:first-child {
|
|
|
13520
13723
|
line-height: 140%;
|
|
13521
13724
|
}
|
|
13522
13725
|
|
|
13726
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
13727
|
+
.dropdown-header {
|
|
13728
|
+
-webkit-hyphens: auto;
|
|
13729
|
+
hyphens: auto;
|
|
13730
|
+
hyphenate-limit-chars: 7 3;
|
|
13731
|
+
}
|
|
13732
|
+
@media (min-width: 768px) {
|
|
13733
|
+
.dropdown-header {
|
|
13734
|
+
hyphenate-limit-chars: 8 3;
|
|
13735
|
+
}
|
|
13736
|
+
}
|
|
13737
|
+
@media (min-width: 992px) {
|
|
13738
|
+
.dropdown-header {
|
|
13739
|
+
hyphenate-limit-chars: 10 4 3;
|
|
13740
|
+
}
|
|
13741
|
+
}
|
|
13742
|
+
}
|
|
13743
|
+
|
|
13744
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
13745
|
+
.dropdown-header {
|
|
13746
|
+
-webkit-hyphens: auto;
|
|
13747
|
+
hyphens: auto;
|
|
13748
|
+
-webkit-hyphenate-limit-before: 3;
|
|
13749
|
+
-webkit-hyphenate-limit-after: 3;
|
|
13750
|
+
}
|
|
13751
|
+
@media (min-width: 992px) {
|
|
13752
|
+
.dropdown-header {
|
|
13753
|
+
-webkit-hyphenate-limit-before: 4;
|
|
13754
|
+
}
|
|
13755
|
+
}
|
|
13756
|
+
}
|
|
13757
|
+
|
|
13523
13758
|
.dropdown-header + p,
|
|
13524
13759
|
.dropdown-header + ul:not(.list-unstyled),
|
|
13525
13760
|
.dropdown-header + ol:not(.list-unstyled) {
|
|
@@ -17338,8 +17573,6 @@ html:not([dir="rtl"]) .list-group-item {
|
|
|
17338
17573
|
line-height: 1.2;
|
|
17339
17574
|
line-height: var(--line-height-title);
|
|
17340
17575
|
letter-spacing: 0;
|
|
17341
|
-
-webkit-hyphens: auto;
|
|
17342
|
-
hyphens: auto;
|
|
17343
17576
|
font-weight: 500;
|
|
17344
17577
|
font-weight: var(--font-weight-medium);
|
|
17345
17578
|
font-size: 0.875rem;
|
|
@@ -17350,6 +17583,38 @@ html:not([dir="rtl"]) .list-group-item {
|
|
|
17350
17583
|
color: var(--color-content-primary);
|
|
17351
17584
|
}
|
|
17352
17585
|
|
|
17586
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
17587
|
+
.list-group-item-heading {
|
|
17588
|
+
-webkit-hyphens: auto;
|
|
17589
|
+
hyphens: auto;
|
|
17590
|
+
hyphenate-limit-chars: 7 3;
|
|
17591
|
+
}
|
|
17592
|
+
@media (min-width: 768px) {
|
|
17593
|
+
.list-group-item-heading {
|
|
17594
|
+
hyphenate-limit-chars: 8 3;
|
|
17595
|
+
}
|
|
17596
|
+
}
|
|
17597
|
+
@media (min-width: 992px) {
|
|
17598
|
+
.list-group-item-heading {
|
|
17599
|
+
hyphenate-limit-chars: 10 4 3;
|
|
17600
|
+
}
|
|
17601
|
+
}
|
|
17602
|
+
}
|
|
17603
|
+
|
|
17604
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
17605
|
+
.list-group-item-heading {
|
|
17606
|
+
-webkit-hyphens: auto;
|
|
17607
|
+
hyphens: auto;
|
|
17608
|
+
-webkit-hyphenate-limit-before: 3;
|
|
17609
|
+
-webkit-hyphenate-limit-after: 3;
|
|
17610
|
+
}
|
|
17611
|
+
@media (min-width: 992px) {
|
|
17612
|
+
.list-group-item-heading {
|
|
17613
|
+
-webkit-hyphenate-limit-before: 4;
|
|
17614
|
+
}
|
|
17615
|
+
}
|
|
17616
|
+
}
|
|
17617
|
+
|
|
17353
17618
|
.list-group-item-heading + p,
|
|
17354
17619
|
.list-group-item-heading + ul:not(.list-unstyled),
|
|
17355
17620
|
.list-group-item-heading + ol:not(.list-unstyled) {
|
|
@@ -21530,8 +21795,6 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
|
|
|
21530
21795
|
line-height: 1.2;
|
|
21531
21796
|
line-height: var(--line-height-title);
|
|
21532
21797
|
letter-spacing: 0;
|
|
21533
|
-
-webkit-hyphens: auto;
|
|
21534
|
-
hyphens: auto;
|
|
21535
21798
|
font-size: 1.125rem;
|
|
21536
21799
|
font-size: var(--font-size-18);
|
|
21537
21800
|
font-weight: 600;
|
|
@@ -21545,6 +21808,38 @@ html:not([dir="rtl"]) .panel > .table-responsive > .table-bordered > tfoot > tr
|
|
|
21545
21808
|
color: var(--color-content-primary) !important;
|
|
21546
21809
|
}
|
|
21547
21810
|
|
|
21811
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
21812
|
+
.popover-title {
|
|
21813
|
+
-webkit-hyphens: auto;
|
|
21814
|
+
hyphens: auto;
|
|
21815
|
+
hyphenate-limit-chars: 7 3;
|
|
21816
|
+
}
|
|
21817
|
+
@media (min-width: 768px) {
|
|
21818
|
+
.popover-title {
|
|
21819
|
+
hyphenate-limit-chars: 8 3;
|
|
21820
|
+
}
|
|
21821
|
+
}
|
|
21822
|
+
@media (min-width: 992px) {
|
|
21823
|
+
.popover-title {
|
|
21824
|
+
hyphenate-limit-chars: 10 4 3;
|
|
21825
|
+
}
|
|
21826
|
+
}
|
|
21827
|
+
}
|
|
21828
|
+
|
|
21829
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
21830
|
+
.popover-title {
|
|
21831
|
+
-webkit-hyphens: auto;
|
|
21832
|
+
hyphens: auto;
|
|
21833
|
+
-webkit-hyphenate-limit-before: 3;
|
|
21834
|
+
-webkit-hyphenate-limit-after: 3;
|
|
21835
|
+
}
|
|
21836
|
+
@media (min-width: 992px) {
|
|
21837
|
+
.popover-title {
|
|
21838
|
+
-webkit-hyphenate-limit-before: 4;
|
|
21839
|
+
}
|
|
21840
|
+
}
|
|
21841
|
+
}
|
|
21842
|
+
|
|
21548
21843
|
.popover-title + p,
|
|
21549
21844
|
.popover-title + ul:not(.list-unstyled),
|
|
21550
21845
|
.popover-title + ol:not(.list-unstyled) {
|
package/dist/css/popovers.css
CHANGED
|
@@ -333,8 +333,6 @@
|
|
|
333
333
|
line-height: 1.2;
|
|
334
334
|
line-height: var(--line-height-title);
|
|
335
335
|
letter-spacing: 0;
|
|
336
|
-
-webkit-hyphens: auto;
|
|
337
|
-
hyphens: auto;
|
|
338
336
|
font-size: 1.125rem;
|
|
339
337
|
font-size: var(--font-size-18);
|
|
340
338
|
font-weight: 600;
|
|
@@ -346,6 +344,34 @@
|
|
|
346
344
|
border-bottom: 0;
|
|
347
345
|
border-radius: 2px 2px 0 0;
|
|
348
346
|
color: var(--color-content-primary) !important;
|
|
347
|
+
}@supports (hyphenate-limit-chars: 1) {
|
|
348
|
+
.popover-title {
|
|
349
|
+
-webkit-hyphens: auto;
|
|
350
|
+
hyphens: auto;
|
|
351
|
+
hyphenate-limit-chars: 7 3;
|
|
352
|
+
}
|
|
353
|
+
@media (min-width: 768px) {
|
|
354
|
+
.popover-title {
|
|
355
|
+
hyphenate-limit-chars: 8 3;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
@media (min-width: 992px) {
|
|
359
|
+
.popover-title {
|
|
360
|
+
hyphenate-limit-chars: 10 4 3;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
}@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
364
|
+
.popover-title {
|
|
365
|
+
-webkit-hyphens: auto;
|
|
366
|
+
hyphens: auto;
|
|
367
|
+
-webkit-hyphenate-limit-before: 3;
|
|
368
|
+
-webkit-hyphenate-limit-after: 3;
|
|
369
|
+
}
|
|
370
|
+
@media (min-width: 992px) {
|
|
371
|
+
.popover-title {
|
|
372
|
+
-webkit-hyphenate-limit-before: 4;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
349
375
|
}.popover-title + p,
|
|
350
376
|
.popover-title + ul:not(.list-unstyled),
|
|
351
377
|
.popover-title + ol:not(.list-unstyled) {
|
package/package.json
CHANGED
|
@@ -24,7 +24,29 @@ h6,
|
|
|
24
24
|
color: var(--color-content-primary);
|
|
25
25
|
line-height: var(--line-height-title);
|
|
26
26
|
letter-spacing: 0;
|
|
27
|
-
|
|
27
|
+
|
|
28
|
+
@supports (hyphenate-limit-chars: 1) {
|
|
29
|
+
hyphens: auto;
|
|
30
|
+
hyphenate-limit-chars: 7 3;
|
|
31
|
+
|
|
32
|
+
@media (--screen-md) {
|
|
33
|
+
hyphenate-limit-chars: 8 3;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@media (--screen-lg) {
|
|
37
|
+
hyphenate-limit-chars: 10 4 3;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@supports (not (hyphenate-limit-chars: 1)) and (-webkit-hyphenate-limit-before: 1) {
|
|
42
|
+
hyphens: auto;
|
|
43
|
+
-webkit-hyphenate-limit-before: 3;
|
|
44
|
+
-webkit-hyphenate-limit-after: 3;
|
|
45
|
+
|
|
46
|
+
@media (--screen-lg) {
|
|
47
|
+
-webkit-hyphenate-limit-before: 4;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
28
50
|
|
|
29
51
|
+ p,
|
|
30
52
|
+ ul:not(.list-unstyled),
|