@dialpad/dialtone-css 8.43.0 → 8.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/build/less/utilities/flex.less +1 -0
- package/lib/build/less/utilities/grid.less +1 -0
- package/lib/build/less/utilities/spacing.less +10 -0
- package/lib/dist/dialtone-default-theme.css +14545 -13955
- package/lib/dist/dialtone-default-theme.min.css +1 -1
- package/lib/dist/dialtone.css +263 -24
- package/lib/dist/dialtone.min.css +1 -1
- package/lib/dist/tokens/tokens-base-dark.css +898 -895
- package/lib/dist/tokens/tokens-base-light.css +673 -670
- package/lib/dist/tokens/tokens-dp-dark.css +1831 -1831
- package/lib/dist/tokens/tokens-dp-light.css +1832 -1832
- package/lib/dist/tokens/tokens-expressive-dark.css +1793 -1793
- package/lib/dist/tokens/tokens-expressive-light.css +1793 -1793
- package/lib/dist/tokens/tokens-expressive-sm-dark.css +1793 -1793
- package/lib/dist/tokens/tokens-expressive-sm-light.css +1793 -1793
- package/lib/dist/tokens/tokens-tmo-dark.css +1787 -1787
- package/lib/dist/tokens/tokens-tmo-light.css +1787 -1787
- package/package.json +2 -2
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
// ----------------------------------------------------------------------------
|
|
70
70
|
|
|
71
71
|
// $$ FLEX GAPS
|
|
72
|
+
// TODO: Deprecated classes, remove on our next migration. https://dialpad.atlassian.net/browse/DLT-1763
|
|
72
73
|
// ----------------------------------------------------------------------------
|
|
73
74
|
.d-flg0 > * { --fl-gap: 0 !important; }
|
|
74
75
|
.d-flg1 > * { --fl-gap: var(--dt-space-100) !important; }
|
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
// ============================================================================
|
|
39
39
|
// Defines the size of grid 'gaps' (lines). We generate a gap for
|
|
40
40
|
// each defined spacing unit.
|
|
41
|
+
// TODO: Deprecated classes, remove on our next migration. https://dialpad.atlassian.net/browse/DLT-1763
|
|
41
42
|
// ----------------------------------------------------------------------------
|
|
42
43
|
.d-gcg-unset { grid-column-gap: unset !important; }
|
|
43
44
|
.d-grg-unset { grid-row-gap: unset !important; }
|
|
@@ -105,3 +105,13 @@
|
|
|
105
105
|
.d-px-unset { padding-right: unset !important; padding-left: unset !important; }
|
|
106
106
|
|
|
107
107
|
.d-py-unset { padding-top: unset !important; padding-bottom: unset !important; }
|
|
108
|
+
|
|
109
|
+
// ============================================================================
|
|
110
|
+
// $ GAP
|
|
111
|
+
// ============================================================================
|
|
112
|
+
// Defines the size of 'gaps' (lines). We generate a gap for
|
|
113
|
+
// each defined spacing unit.
|
|
114
|
+
// ----------------------------------------------------------------------------
|
|
115
|
+
.d-cg-unset { column-gap: unset !important; }
|
|
116
|
+
.d-rg-unset { row-gap: unset !important; }
|
|
117
|
+
.d-g-unset { gap: unset !important; }
|