@dialpad/dialtone-css 8.71.3 → 8.71.4
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/lib/build/less/recipes/motion_text.less +2 -2
- package/lib/build/less/utilities/flex.less +11 -12
- package/lib/dist/dialtone-default-theme.css +24 -13
- package/lib/dist/dialtone-default-theme.min.css +1 -1
- package/lib/dist/dialtone.css +24 -13
- package/lib/dist/dialtone.min.css +1 -1
- package/package.json +3 -3
|
@@ -75,13 +75,13 @@
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
.dt-recipe-motion-text__char {
|
|
78
|
-
display: inline
|
|
78
|
+
display: inline;
|
|
79
79
|
white-space: pre;
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
.dt-recipe-motion-text__word {
|
|
83
83
|
position: relative;
|
|
84
|
-
display: inline;
|
|
84
|
+
display: inline-block;
|
|
85
85
|
white-space: nowrap;
|
|
86
86
|
}
|
|
87
87
|
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
// has more than one line.
|
|
24
24
|
// ----------------------------------------------------------------------------
|
|
25
25
|
.d-ac-center { align-content: center !important; }
|
|
26
|
-
.d-ac-flex-end { align-content: flex-end !important; }
|
|
27
|
-
.d-ac-flex-start { align-content: flex-start !important; }
|
|
26
|
+
.d-ac-flex-end, .d-ac-end { align-content: flex-end !important; }
|
|
27
|
+
.d-ac-flex-start, .d-ac-start { align-content: flex-start !important; }
|
|
28
28
|
.d-ac-space-around { align-content: space-around !important; }
|
|
29
29
|
.d-ac-space-between { align-content: space-between !important; }
|
|
30
30
|
.d-ac-space-evenly { align-content: space-evenly !important; }
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
// justify-content.
|
|
42
42
|
// ----------------------------------------------------------------------------
|
|
43
43
|
.d-ai-center { align-items: center !important; }
|
|
44
|
-
.d-ai-flex-end { align-items: flex-end !important; }
|
|
45
|
-
.d-ai-flex-start { align-items: flex-start !important; }
|
|
44
|
+
.d-ai-flex-end, .d-ai-end { align-items: flex-end !important; }
|
|
45
|
+
.d-ai-flex-start, .d-ai-start { align-items: flex-start !important; }
|
|
46
46
|
.d-ai-baseline { align-items: baseline !important; }
|
|
47
47
|
.d-ai-stretch { align-items: stretch !important; }
|
|
48
48
|
.d-ai-normal { align-items: normal !important; }
|
|
@@ -55,15 +55,14 @@
|
|
|
55
55
|
// of the parent's main axis direction.
|
|
56
56
|
// ----------------------------------------------------------------------------
|
|
57
57
|
.d-as-center { align-self: center !important; }
|
|
58
|
-
.d-as-flex-end { align-self: flex-end !important; }
|
|
59
|
-
.d-as-flex-start { align-self: flex-start !important; }
|
|
58
|
+
.d-as-flex-end, .d-as-end { align-self: flex-end !important; }
|
|
59
|
+
.d-as-flex-start, .d-as-start { align-self: flex-start !important; }
|
|
60
60
|
.d-as-baseline { align-self: baseline !important; }
|
|
61
61
|
.d-as-stretch { align-self: stretch !important; }
|
|
62
62
|
.d-as-auto { align-self: auto !important; }
|
|
63
63
|
.d-as-normal { align-self: normal !important; }
|
|
64
64
|
.d-as-unset { align-self: unset !important; }
|
|
65
65
|
|
|
66
|
-
|
|
67
66
|
// ============================================================================
|
|
68
67
|
// $ COLUMNS & LAYOUTS
|
|
69
68
|
// ----------------------------------------------------------------------------
|
|
@@ -185,11 +184,11 @@
|
|
|
185
184
|
// Defines the child alignment along the parent's main axis
|
|
186
185
|
// ----------------------------------------------------------------------------
|
|
187
186
|
.d-jc-center { justify-content: center !important; }
|
|
188
|
-
.d-jc-flex-end { justify-content: flex-end !important; }
|
|
189
|
-
.d-jc-flex-start { justify-content: flex-start !important; }
|
|
190
|
-
.d-jc-space-around { justify-content: space-around !important; }
|
|
191
|
-
.d-jc-space-between { justify-content: space-between !important; }
|
|
192
|
-
.d-jc-space-evenly { justify-content: space-evenly !important; }
|
|
187
|
+
.d-jc-flex-end, .d-jc-end { justify-content: flex-end !important; }
|
|
188
|
+
.d-jc-flex-start, .d-jc-start { justify-content: flex-start !important; }
|
|
189
|
+
.d-jc-space-around, .d-jc-around { justify-content: space-around !important; }
|
|
190
|
+
.d-jc-space-between, .d-jc-between { justify-content: space-between !important; }
|
|
191
|
+
.d-jc-space-evenly, .d-jc-evenly { justify-content: space-evenly !important; }
|
|
193
192
|
.d-jc-baseline { justify-content: baseline !important; }
|
|
194
193
|
.d-jc-normal { justify-content: normal !important; }
|
|
195
194
|
.d-jc-unset { justify-content: unset !important; }
|
|
@@ -6588,10 +6588,12 @@ legend .d-label--md {
|
|
|
6588
6588
|
.d-ac-center {
|
|
6589
6589
|
align-content: center !important;
|
|
6590
6590
|
}
|
|
6591
|
-
.d-ac-flex-end
|
|
6591
|
+
.d-ac-flex-end,
|
|
6592
|
+
.d-ac-end {
|
|
6592
6593
|
align-content: flex-end !important;
|
|
6593
6594
|
}
|
|
6594
|
-
.d-ac-flex-start
|
|
6595
|
+
.d-ac-flex-start,
|
|
6596
|
+
.d-ac-start {
|
|
6595
6597
|
align-content: flex-start !important;
|
|
6596
6598
|
}
|
|
6597
6599
|
.d-ac-space-around {
|
|
@@ -6618,10 +6620,12 @@ legend .d-label--md {
|
|
|
6618
6620
|
.d-ai-center {
|
|
6619
6621
|
align-items: center !important;
|
|
6620
6622
|
}
|
|
6621
|
-
.d-ai-flex-end
|
|
6623
|
+
.d-ai-flex-end,
|
|
6624
|
+
.d-ai-end {
|
|
6622
6625
|
align-items: flex-end !important;
|
|
6623
6626
|
}
|
|
6624
|
-
.d-ai-flex-start
|
|
6627
|
+
.d-ai-flex-start,
|
|
6628
|
+
.d-ai-start {
|
|
6625
6629
|
align-items: flex-start !important;
|
|
6626
6630
|
}
|
|
6627
6631
|
.d-ai-baseline {
|
|
@@ -6639,10 +6643,12 @@ legend .d-label--md {
|
|
|
6639
6643
|
.d-as-center {
|
|
6640
6644
|
align-self: center !important;
|
|
6641
6645
|
}
|
|
6642
|
-
.d-as-flex-end
|
|
6646
|
+
.d-as-flex-end,
|
|
6647
|
+
.d-as-end {
|
|
6643
6648
|
align-self: flex-end !important;
|
|
6644
6649
|
}
|
|
6645
|
-
.d-as-flex-start
|
|
6650
|
+
.d-as-flex-start,
|
|
6651
|
+
.d-as-start {
|
|
6646
6652
|
align-self: flex-start !important;
|
|
6647
6653
|
}
|
|
6648
6654
|
.d-as-baseline {
|
|
@@ -6834,19 +6840,24 @@ legend .d-label--md {
|
|
|
6834
6840
|
.d-jc-center {
|
|
6835
6841
|
justify-content: center !important;
|
|
6836
6842
|
}
|
|
6837
|
-
.d-jc-flex-end
|
|
6843
|
+
.d-jc-flex-end,
|
|
6844
|
+
.d-jc-end {
|
|
6838
6845
|
justify-content: flex-end !important;
|
|
6839
6846
|
}
|
|
6840
|
-
.d-jc-flex-start
|
|
6847
|
+
.d-jc-flex-start,
|
|
6848
|
+
.d-jc-start {
|
|
6841
6849
|
justify-content: flex-start !important;
|
|
6842
6850
|
}
|
|
6843
|
-
.d-jc-space-around
|
|
6851
|
+
.d-jc-space-around,
|
|
6852
|
+
.d-jc-around {
|
|
6844
6853
|
justify-content: space-around !important;
|
|
6845
6854
|
}
|
|
6846
|
-
.d-jc-space-between
|
|
6855
|
+
.d-jc-space-between,
|
|
6856
|
+
.d-jc-between {
|
|
6847
6857
|
justify-content: space-between !important;
|
|
6848
6858
|
}
|
|
6849
|
-
.d-jc-space-evenly
|
|
6859
|
+
.d-jc-space-evenly,
|
|
6860
|
+
.d-jc-evenly {
|
|
6850
6861
|
justify-content: space-evenly !important;
|
|
6851
6862
|
}
|
|
6852
6863
|
.d-jc-baseline {
|
|
@@ -10173,12 +10184,12 @@ ul {
|
|
|
10173
10184
|
display: contents;
|
|
10174
10185
|
}
|
|
10175
10186
|
.dt-recipe-motion-text__char {
|
|
10176
|
-
display: inline
|
|
10187
|
+
display: inline;
|
|
10177
10188
|
white-space: pre;
|
|
10178
10189
|
}
|
|
10179
10190
|
.dt-recipe-motion-text__word {
|
|
10180
10191
|
position: relative;
|
|
10181
|
-
display: inline;
|
|
10192
|
+
display: inline-block;
|
|
10182
10193
|
white-space: nowrap;
|
|
10183
10194
|
}
|
|
10184
10195
|
@-webkit-keyframes dt-recipe-motion-text-gradient-in-char-appear {
|