@dialpad/dialtone-css 8.80.0-next.1 → 8.80.0-next.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/lib/build/js/dialtone_migrate_link_rendering/button-nav-test-examples.vue +92 -0
- package/lib/build/js/dialtone_migrate_link_rendering/button-nav.test.mjs +272 -0
- package/lib/build/js/dialtone_migrate_link_rendering/helpers.mjs +25 -0
- package/lib/build/js/dialtone_migrate_link_rendering/index.mjs +1041 -0
- package/lib/build/js/dialtone_migrate_link_rendering/link-nav-test-examples.vue +97 -0
- package/lib/build/js/dialtone_migrate_link_rendering/link-nav.test.mjs +194 -0
- package/lib/build/js/dialtone_migrate_link_rendering/underline-test-examples.vue +57 -0
- package/lib/build/js/dialtone_migrate_link_rendering/underline.test.mjs +161 -0
- package/lib/build/js/dialtone_migrate_props/index.mjs +794 -0
- package/lib/build/js/dialtone_migrate_props/test.mjs +959 -0
- package/lib/build/js/dialtone_migration_helper/configs/base-to-semantic.mjs +8 -8
- package/lib/build/js/dialtone_migration_helper/configs/size-to-layout.mjs +10 -0
- package/lib/build/js/dialtone_migration_helper/configs/success-to-positive.mjs +73 -0
- package/lib/build/js/dialtone_migration_helper/configs/utility-class-to-token-stops.mjs +92 -12
- package/lib/build/js/dialtone_migration_helper/tests/base-to-semantic-test-examples.vue +10 -10
- package/lib/build/js/dialtone_migration_helper/tests/base-to-semantic.test.mjs +8 -8
- package/lib/build/js/dialtone_migration_helper/tests/size-to-layout-test-examples.vue +16 -0
- package/lib/build/js/dialtone_migration_helper/tests/size-to-layout.test.mjs +87 -0
- package/lib/build/js/dialtone_migration_helper/tests/success-to-positive-test-examples.vue +166 -0
- package/lib/build/js/dialtone_migration_helper/tests/success-to-positive.test.mjs +287 -0
- package/lib/build/js/dialtone_migration_helper/tests/utility-class-to-token-stops-radius-examples.vue +66 -0
- package/lib/build/js/dialtone_migration_helper/tests/utility-class-to-token-stops.test.mjs +170 -0
- package/lib/build/less/components/badge.less +1 -1
- package/lib/build/less/components/banner.less +1 -1
- package/lib/build/less/components/box.less +228 -0
- package/lib/build/less/components/description-list.less +4 -0
- package/lib/build/less/components/forms.less +4 -2
- package/lib/build/less/components/input.less +2 -2
- package/lib/build/less/components/link.less +18 -4
- package/lib/build/less/components/modal.less +1 -1
- package/lib/build/less/components/notice.less +3 -3
- package/lib/build/less/components/progress_circle.less +10 -2
- package/lib/build/less/components/prose.less +512 -0
- package/lib/build/less/components/rich-text-editor.less +7 -0
- package/lib/build/less/components/selects.less +1 -1
- package/lib/build/less/components/text.less +2 -2
- package/lib/build/less/components/toast.less +1 -1
- package/lib/build/less/dialtone.less +2 -0
- package/lib/build/less/recipes/leftbar_row.less +1 -0
- package/lib/build/less/recipes/settings_menu_button.less +1 -1
- package/lib/build/less/recipes/top_banner_info.less +1 -1
- package/lib/build/less/utilities/backgrounds.less +12 -0
- package/lib/build/less/utilities/borders.less +56 -89
- package/lib/build/less/utilities/colors.less +8 -0
- package/lib/build/less/utilities/effects.less +1 -0
- package/lib/build/less/utilities/flex.less +145 -18
- package/lib/build/less/utilities/grid.less +40 -152
- package/lib/build/less/utilities/layout.less +19 -7
- package/lib/build/less/utilities/sizing.less +148 -143
- package/lib/build/less/variables/visual-styles.less +2 -1
- package/lib/dist/dialtone-default-theme.css +4364 -1756
- package/lib/dist/dialtone-default-theme.min.css +1 -1
- package/lib/dist/dialtone-docs.json +1 -1
- package/lib/dist/dialtone.css +4271 -1705
- package/lib/dist/dialtone.min.css +1 -1
- package/lib/dist/js/dialtone_migrate_link_rendering/button-nav-test-examples.vue +92 -0
- package/lib/dist/js/dialtone_migrate_link_rendering/button-nav.test.mjs +272 -0
- package/lib/dist/js/dialtone_migrate_link_rendering/helpers.mjs +25 -0
- package/lib/dist/js/dialtone_migrate_link_rendering/index.mjs +1041 -0
- package/lib/dist/js/dialtone_migrate_link_rendering/link-nav-test-examples.vue +97 -0
- package/lib/dist/js/dialtone_migrate_link_rendering/link-nav.test.mjs +194 -0
- package/lib/dist/js/dialtone_migrate_link_rendering/underline-test-examples.vue +57 -0
- package/lib/dist/js/dialtone_migrate_link_rendering/underline.test.mjs +161 -0
- package/lib/dist/js/dialtone_migrate_props/index.mjs +794 -0
- package/lib/dist/js/dialtone_migrate_props/test.mjs +959 -0
- package/lib/dist/js/dialtone_migration_helper/configs/base-to-semantic.mjs +8 -8
- package/lib/dist/js/dialtone_migration_helper/configs/size-to-layout.mjs +10 -0
- package/lib/dist/js/dialtone_migration_helper/configs/success-to-positive.mjs +73 -0
- package/lib/dist/js/dialtone_migration_helper/configs/utility-class-to-token-stops.mjs +92 -12
- package/lib/dist/js/dialtone_migration_helper/tests/base-to-semantic-test-examples.vue +10 -10
- package/lib/dist/js/dialtone_migration_helper/tests/base-to-semantic.test.mjs +8 -8
- package/lib/dist/js/dialtone_migration_helper/tests/size-to-layout-test-examples.vue +16 -0
- package/lib/dist/js/dialtone_migration_helper/tests/size-to-layout.test.mjs +87 -0
- package/lib/dist/js/dialtone_migration_helper/tests/success-to-positive-test-examples.vue +166 -0
- package/lib/dist/js/dialtone_migration_helper/tests/success-to-positive.test.mjs +287 -0
- package/lib/dist/js/dialtone_migration_helper/tests/utility-class-to-token-stops-radius-examples.vue +66 -0
- package/lib/dist/js/dialtone_migration_helper/tests/utility-class-to-token-stops.test.mjs +170 -0
- package/lib/dist/tokens/tokens-101-dark.css +81 -45
- package/lib/dist/tokens/tokens-101-light.css +75 -39
- package/lib/dist/tokens/tokens-102-dark.css +81 -45
- package/lib/dist/tokens/tokens-102-light.css +75 -39
- package/lib/dist/tokens/tokens-103-dark.css +81 -45
- package/lib/dist/tokens/tokens-103-light.css +75 -39
- package/lib/dist/tokens/tokens-104-dark.css +81 -45
- package/lib/dist/tokens/tokens-104-light.css +75 -39
- package/lib/dist/tokens/tokens-105-dark.css +81 -45
- package/lib/dist/tokens/tokens-105-light.css +75 -39
- package/lib/dist/tokens/tokens-106-dark.css +81 -45
- package/lib/dist/tokens/tokens-106-light.css +75 -39
- package/lib/dist/tokens/tokens-107-dark.css +81 -45
- package/lib/dist/tokens/tokens-107-light.css +75 -39
- package/lib/dist/tokens/tokens-108-dark.css +81 -45
- package/lib/dist/tokens/tokens-108-light.css +75 -39
- package/lib/dist/tokens/tokens-109-dark.css +81 -45
- package/lib/dist/tokens/tokens-109-light.css +75 -39
- package/lib/dist/tokens/tokens-110-dark.css +81 -45
- package/lib/dist/tokens/tokens-110-light.css +75 -39
- package/lib/dist/tokens/tokens-111-dark.css +81 -45
- package/lib/dist/tokens/tokens-111-light.css +75 -39
- package/lib/dist/tokens/tokens-112-dark.css +81 -45
- package/lib/dist/tokens/tokens-112-light.css +75 -39
- package/lib/dist/tokens/tokens-113-dark.css +81 -45
- package/lib/dist/tokens/tokens-113-light.css +75 -39
- package/lib/dist/tokens/tokens-114-dark.css +81 -45
- package/lib/dist/tokens/tokens-114-light.css +75 -39
- package/lib/dist/tokens/tokens-115-dark.css +81 -45
- package/lib/dist/tokens/tokens-115-light.css +75 -39
- package/lib/dist/tokens/tokens-116-dark.css +81 -45
- package/lib/dist/tokens/tokens-116-light.css +75 -39
- package/lib/dist/tokens/tokens-117-dark.css +81 -45
- package/lib/dist/tokens/tokens-117-light.css +75 -39
- package/lib/dist/tokens/tokens-118-dark.css +81 -45
- package/lib/dist/tokens/tokens-118-light.css +75 -39
- package/lib/dist/tokens/tokens-119-dark.css +81 -45
- package/lib/dist/tokens/tokens-119-light.css +75 -39
- package/lib/dist/tokens/tokens-120-dark.css +81 -45
- package/lib/dist/tokens/tokens-120-light.css +75 -39
- package/lib/dist/tokens/tokens-121-dark.css +81 -45
- package/lib/dist/tokens/tokens-121-light.css +75 -39
- package/lib/dist/tokens/tokens-122-dark.css +81 -45
- package/lib/dist/tokens/tokens-122-light.css +75 -39
- package/lib/dist/tokens/tokens-123-dark.css +81 -45
- package/lib/dist/tokens/tokens-123-light.css +75 -39
- package/lib/dist/tokens/tokens-124-dark.css +81 -45
- package/lib/dist/tokens/tokens-124-light.css +75 -39
- package/lib/dist/tokens/tokens-125-dark.css +81 -45
- package/lib/dist/tokens/tokens-125-light.css +75 -39
- package/lib/dist/tokens/tokens-126-dark.css +81 -45
- package/lib/dist/tokens/tokens-126-light.css +75 -39
- package/lib/dist/tokens/tokens-127-dark.css +81 -45
- package/lib/dist/tokens/tokens-127-light.css +75 -39
- package/lib/dist/tokens/tokens-128-dark.css +81 -45
- package/lib/dist/tokens/tokens-128-light.css +75 -39
- package/lib/dist/tokens/tokens-129-dark.css +81 -45
- package/lib/dist/tokens/tokens-129-light.css +75 -39
- package/lib/dist/tokens/tokens-130-dark.css +81 -45
- package/lib/dist/tokens/tokens-130-light.css +75 -39
- package/lib/dist/tokens/tokens-131-dark.css +81 -45
- package/lib/dist/tokens/tokens-131-light.css +75 -39
- package/lib/dist/tokens/tokens-132-dark.css +81 -45
- package/lib/dist/tokens/tokens-132-light.css +75 -39
- package/lib/dist/tokens/tokens-133-dark.css +81 -45
- package/lib/dist/tokens/tokens-133-light.css +75 -39
- package/lib/dist/tokens/tokens-134-dark.css +81 -45
- package/lib/dist/tokens/tokens-134-light.css +75 -39
- package/lib/dist/tokens/tokens-135-dark.css +81 -45
- package/lib/dist/tokens/tokens-135-light.css +75 -39
- package/lib/dist/tokens/tokens-136-dark.css +81 -45
- package/lib/dist/tokens/tokens-136-light.css +75 -39
- package/lib/dist/tokens/tokens-137-dark.css +81 -45
- package/lib/dist/tokens/tokens-137-light.css +75 -39
- package/lib/dist/tokens/tokens-aegean-dark.css +81 -45
- package/lib/dist/tokens/tokens-aegean-light.css +75 -39
- package/lib/dist/tokens/tokens-base-dark.css +18 -12
- package/lib/dist/tokens/tokens-base-light.css +18 -12
- package/lib/dist/tokens/tokens-botany-dark.css +81 -45
- package/lib/dist/tokens/tokens-botany-light.css +75 -39
- package/lib/dist/tokens/tokens-buttercream-dark.css +81 -45
- package/lib/dist/tokens/tokens-buttercream-light.css +75 -39
- package/lib/dist/tokens/tokens-ceruleo-dark.css +81 -45
- package/lib/dist/tokens/tokens-ceruleo-light.css +75 -39
- package/lib/dist/tokens/tokens-debug-base.css +6 -0
- package/lib/dist/tokens/tokens-debug-dp.css +39 -3
- package/lib/dist/tokens/tokens-dp-dark.css +81 -45
- package/lib/dist/tokens/tokens-dp-light.css +75 -39
- package/lib/dist/tokens/tokens-expressive-dark.css +81 -45
- package/lib/dist/tokens/tokens-expressive-light.css +75 -39
- package/lib/dist/tokens/tokens-expressive-sm-dark.css +81 -45
- package/lib/dist/tokens/tokens-expressive-sm-light.css +75 -39
- package/lib/dist/tokens/tokens-high-desert-dark.css +81 -45
- package/lib/dist/tokens/tokens-high-desert-light.css +75 -39
- package/lib/dist/tokens/tokens-melon-dark.css +81 -45
- package/lib/dist/tokens/tokens-melon-light.css +75 -39
- package/lib/dist/tokens/tokens-plum-dark.css +81 -45
- package/lib/dist/tokens/tokens-plum-light.css +75 -39
- package/lib/dist/tokens/tokens-prota-deuter-dark.css +79 -43
- package/lib/dist/tokens/tokens-prota-deuter-light.css +74 -38
- package/lib/dist/tokens/tokens-sunflower-dark.css +81 -45
- package/lib/dist/tokens/tokens-sunflower-light.css +75 -39
- package/lib/dist/tokens/tokens-tmo-dark.css +81 -45
- package/lib/dist/tokens/tokens-tmo-light.css +75 -39
- package/lib/dist/tokens/tokens-trita-dark.css +81 -45
- package/lib/dist/tokens/tokens-trita-light.css +75 -39
- package/lib/dist/tokens/tokens-verdant-haze-dark.css +81 -45
- package/lib/dist/tokens/tokens-verdant-haze-light.css +75 -39
- package/lib/dist/tokens-docs.json +1 -1
- package/package.json +4 -4
|
@@ -15,6 +15,13 @@
|
|
|
15
15
|
// • VISIBILITY
|
|
16
16
|
// • Z-INDEX
|
|
17
17
|
//
|
|
18
|
+
// @@ @PROPERTY REGISTRATIONS
|
|
19
|
+
// ----------------------------------------------------------------------------
|
|
20
|
+
// Register `--fixed-value` as non-inheriting so an ancestor setting it does
|
|
21
|
+
// not bleed into descendants using `.d-*100p-calc` position utilities.
|
|
22
|
+
// Universal syntax with no initial-value preserves the `8px` fallback.
|
|
23
|
+
@property --fixed-value { syntax: "*"; inherits: false; }
|
|
24
|
+
|
|
18
25
|
// ============================================================================
|
|
19
26
|
// $ BOX-SIZING
|
|
20
27
|
// ============================================================================
|
|
@@ -81,19 +88,24 @@
|
|
|
81
88
|
// ============================================================================
|
|
82
89
|
// $ OVERFLOW
|
|
83
90
|
// ============================================================================
|
|
91
|
+
// Shorthand `overflow: *` resets both axes, so all `.d-of-*` classes must come
|
|
92
|
+
// before `.d-of-x-*` / `.d-of-y-*` single-axis classes. Otherwise pairs like
|
|
93
|
+
// `d-of-x-auto d-of-hidden` would silently clobber the single-axis intent.
|
|
84
94
|
.d-of-auto { overflow: auto !important; }
|
|
85
|
-
.d-of-x-auto { overflow-inline: auto !important; }
|
|
86
|
-
.d-of-y-auto { overflow-block: auto !important; }
|
|
87
95
|
.d-of-hidden { overflow: hidden !important; }
|
|
88
|
-
.d-of-x-hidden { overflow-inline: hidden !important; }
|
|
89
|
-
.d-of-y-hidden { overflow-block: hidden !important; }
|
|
90
96
|
.d-of-scroll { overflow: scroll !important; }
|
|
91
|
-
.d-of-x-scroll { overflow-inline: scroll !important; }
|
|
92
|
-
.d-of-y-scroll { overflow-block: scroll !important; }
|
|
93
97
|
.d-of-visible { overflow: visible !important; }
|
|
98
|
+
.d-of-unset { overflow: unset !important; }
|
|
99
|
+
|
|
100
|
+
.d-of-x-auto { overflow-inline: auto !important; }
|
|
101
|
+
.d-of-x-hidden { overflow-inline: hidden !important; }
|
|
102
|
+
.d-of-x-scroll { overflow-inline: scroll !important; }
|
|
94
103
|
.d-of-x-visible { overflow-inline: visible !important; }
|
|
104
|
+
|
|
105
|
+
.d-of-y-auto { overflow-block: auto !important; }
|
|
106
|
+
.d-of-y-hidden { overflow-block: hidden !important; }
|
|
107
|
+
.d-of-y-scroll { overflow-block: scroll !important; }
|
|
95
108
|
.d-of-y-visible { overflow-block: visible !important; }
|
|
96
|
-
.d-of-unset { overflow: unset !important; }
|
|
97
109
|
|
|
98
110
|
|
|
99
111
|
// ============================================================================
|
|
@@ -18,12 +18,159 @@
|
|
|
18
18
|
// - MIN-WIDTH
|
|
19
19
|
// - FIXED
|
|
20
20
|
//
|
|
21
|
+
// ============================================================================
|
|
22
|
+
// $ SIZE (both dimensions)
|
|
23
|
+
// ============================================================================
|
|
24
|
+
// `.d-size-*` sets BOTH `inline-size` and `block-size`, so it must precede the
|
|
25
|
+
// single-axis `.d-h*` / `.d-w*` classes below. Otherwise `d-w50p d-size-full`
|
|
26
|
+
// would silently clobber the width override with `inline-size: 100%`.
|
|
27
|
+
// ----------------------------------------------------------------------------
|
|
28
|
+
@layer dialtone.utilities {
|
|
29
|
+
// $$ KEYWORDS & VIEWPORT
|
|
30
|
+
// ----------------------------------------------------------------------------
|
|
31
|
+
.d-size-auto {
|
|
32
|
+
inline-size: auto !important;
|
|
33
|
+
block-size: auto !important;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.d-size-full {
|
|
37
|
+
inline-size: 100% !important;
|
|
38
|
+
block-size: 100% !important;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.d-size-fit {
|
|
42
|
+
inline-size: fit-content !important;
|
|
43
|
+
block-size: fit-content !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.d-size-min {
|
|
47
|
+
inline-size: min-content !important;
|
|
48
|
+
block-size: min-content !important;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.d-size-max {
|
|
52
|
+
inline-size: max-content !important;
|
|
53
|
+
block-size: max-content !important;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.d-size-dvh {
|
|
57
|
+
inline-size: 100dvh !important;
|
|
58
|
+
block-size: 100dvh !important;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.d-size-dvw {
|
|
62
|
+
inline-size: 100dvw !important;
|
|
63
|
+
block-size: 100dvw !important;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.d-size-svh {
|
|
67
|
+
inline-size: 100svh !important;
|
|
68
|
+
block-size: 100svh !important;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.d-size-svw {
|
|
72
|
+
inline-size: 100svw !important;
|
|
73
|
+
block-size: 100svw !important;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.d-size-lvh {
|
|
77
|
+
inline-size: 100lvh !important;
|
|
78
|
+
block-size: 100lvh !important;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.d-size-lvw {
|
|
82
|
+
inline-size: 100lvw !important;
|
|
83
|
+
block-size: 100lvw !important;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// $$ PERCENTAGES
|
|
87
|
+
// ----------------------------------------------------------------------------
|
|
88
|
+
.d-size-10p {
|
|
89
|
+
inline-size: 10% !important;
|
|
90
|
+
block-size: 10% !important;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.d-size-15p {
|
|
94
|
+
inline-size: 15% !important;
|
|
95
|
+
block-size: 15% !important;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.d-size-20p {
|
|
99
|
+
inline-size: 20% !important;
|
|
100
|
+
block-size: 20% !important;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.d-size-25p {
|
|
104
|
+
inline-size: 25% !important;
|
|
105
|
+
block-size: 25% !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.d-size-30p {
|
|
109
|
+
inline-size: 30% !important;
|
|
110
|
+
block-size: 30% !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.d-size-33p {
|
|
114
|
+
inline-size: 33.333% !important;
|
|
115
|
+
block-size: 33.333% !important;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.d-size-40p {
|
|
119
|
+
inline-size: 40% !important;
|
|
120
|
+
block-size: 40% !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.d-size-50p {
|
|
124
|
+
inline-size: 50% !important;
|
|
125
|
+
block-size: 50% !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.d-size-60p {
|
|
129
|
+
inline-size: 60% !important;
|
|
130
|
+
block-size: 60% !important;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.d-size-66p {
|
|
134
|
+
inline-size: 66.667% !important;
|
|
135
|
+
block-size: 66.667% !important;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.d-size-70p {
|
|
139
|
+
inline-size: 70% !important;
|
|
140
|
+
block-size: 70% !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.d-size-75p {
|
|
144
|
+
inline-size: 75% !important;
|
|
145
|
+
block-size: 75% !important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.d-size-80p {
|
|
149
|
+
inline-size: 80% !important;
|
|
150
|
+
block-size: 80% !important;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.d-size-85p {
|
|
154
|
+
inline-size: 85% !important;
|
|
155
|
+
block-size: 85% !important;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.d-size-90p {
|
|
159
|
+
inline-size: 90% !important;
|
|
160
|
+
block-size: 90% !important;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.d-size-100p {
|
|
164
|
+
inline-size: 100% !important;
|
|
165
|
+
block-size: 100% !important;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
|
|
21
169
|
// ============================================================================
|
|
22
170
|
// $ HEIGHT
|
|
23
171
|
// ============================================================================
|
|
24
172
|
// $$ PERCENTAGES
|
|
25
173
|
// ----------------------------------------------------------------------------
|
|
26
|
-
@layer dialtone.utilities {
|
|
27
174
|
.d-h10p { block-size: 10% !important; }
|
|
28
175
|
.d-h15p { block-size: 15% !important; }
|
|
29
176
|
.d-h20p { block-size: 20% !important; }
|
|
@@ -199,146 +346,4 @@
|
|
|
199
346
|
.d-wmx-fit-content { max-inline-size: fit-content !important; }
|
|
200
347
|
.d-wmx-max-content { max-inline-size: max-content !important; }
|
|
201
348
|
.d-wmx-min-content { max-inline-size: min-content !important; }
|
|
202
|
-
|
|
203
|
-
// ============================================================================
|
|
204
|
-
// $ SIZE (both dimensions)
|
|
205
|
-
// ============================================================================
|
|
206
|
-
// $$ KEYWORDS & VIEWPORT
|
|
207
|
-
// ----------------------------------------------------------------------------
|
|
208
|
-
.d-size-auto {
|
|
209
|
-
inline-size: auto !important;
|
|
210
|
-
block-size: auto !important;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.d-size-full {
|
|
214
|
-
inline-size: 100% !important;
|
|
215
|
-
block-size: 100% !important;
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.d-size-fit {
|
|
219
|
-
inline-size: fit-content !important;
|
|
220
|
-
block-size: fit-content !important;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.d-size-min {
|
|
224
|
-
inline-size: min-content !important;
|
|
225
|
-
block-size: min-content !important;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
.d-size-max {
|
|
229
|
-
inline-size: max-content !important;
|
|
230
|
-
block-size: max-content !important;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.d-size-dvh {
|
|
234
|
-
inline-size: 100dvh !important;
|
|
235
|
-
block-size: 100dvh !important;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.d-size-dvw {
|
|
239
|
-
inline-size: 100dvw !important;
|
|
240
|
-
block-size: 100dvw !important;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.d-size-svh {
|
|
244
|
-
inline-size: 100svh !important;
|
|
245
|
-
block-size: 100svh !important;
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
.d-size-svw {
|
|
249
|
-
inline-size: 100svw !important;
|
|
250
|
-
block-size: 100svw !important;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
.d-size-lvh {
|
|
254
|
-
inline-size: 100lvh !important;
|
|
255
|
-
block-size: 100lvh !important;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
.d-size-lvw {
|
|
259
|
-
inline-size: 100lvw !important;
|
|
260
|
-
block-size: 100lvw !important;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
// $$ PERCENTAGES
|
|
264
|
-
// ----------------------------------------------------------------------------
|
|
265
|
-
.d-size-10p {
|
|
266
|
-
inline-size: 10% !important;
|
|
267
|
-
block-size: 10% !important;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.d-size-15p {
|
|
271
|
-
inline-size: 15% !important;
|
|
272
|
-
block-size: 15% !important;
|
|
273
|
-
}
|
|
274
|
-
|
|
275
|
-
.d-size-20p {
|
|
276
|
-
inline-size: 20% !important;
|
|
277
|
-
block-size: 20% !important;
|
|
278
|
-
}
|
|
279
|
-
|
|
280
|
-
.d-size-25p {
|
|
281
|
-
inline-size: 25% !important;
|
|
282
|
-
block-size: 25% !important;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.d-size-30p {
|
|
286
|
-
inline-size: 30% !important;
|
|
287
|
-
block-size: 30% !important;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
.d-size-33p {
|
|
291
|
-
inline-size: 33.333% !important;
|
|
292
|
-
block-size: 33.333% !important;
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
.d-size-40p {
|
|
296
|
-
inline-size: 40% !important;
|
|
297
|
-
block-size: 40% !important;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
.d-size-50p {
|
|
301
|
-
inline-size: 50% !important;
|
|
302
|
-
block-size: 50% !important;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
.d-size-60p {
|
|
306
|
-
inline-size: 60% !important;
|
|
307
|
-
block-size: 60% !important;
|
|
308
|
-
}
|
|
309
|
-
|
|
310
|
-
.d-size-66p {
|
|
311
|
-
inline-size: 66.667% !important;
|
|
312
|
-
block-size: 66.667% !important;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
.d-size-70p {
|
|
316
|
-
inline-size: 70% !important;
|
|
317
|
-
block-size: 70% !important;
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
.d-size-75p {
|
|
321
|
-
inline-size: 75% !important;
|
|
322
|
-
block-size: 75% !important;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
.d-size-80p {
|
|
326
|
-
inline-size: 80% !important;
|
|
327
|
-
block-size: 80% !important;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
.d-size-85p {
|
|
331
|
-
inline-size: 85% !important;
|
|
332
|
-
block-size: 85% !important;
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
.d-size-90p {
|
|
336
|
-
inline-size: 90% !important;
|
|
337
|
-
block-size: 90% !important;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.d-size-100p {
|
|
341
|
-
inline-size: 100% !important;
|
|
342
|
-
block-size: 100% !important;
|
|
343
|
-
}
|
|
344
349
|
}
|
|
@@ -17,8 +17,9 @@
|
|
|
17
17
|
// ----------------------------------------------------------------------------
|
|
18
18
|
@transition: {
|
|
19
19
|
ttf-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
20
|
+
ttf-in: cubic-bezier(0.9, 0, 0.65, 1);
|
|
20
21
|
ttf-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
21
|
-
ttf-out: cubic-bezier(0.
|
|
22
|
+
ttf-out: cubic-bezier(0.35, 0, 0.1, 1);
|
|
22
23
|
ttf-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
|
|
23
24
|
td0: 0s;
|
|
24
25
|
td25: 25ms;
|