@dialpad/dialtone-css 8.56.0 → 8.57.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/components/button.less +17 -0
- package/lib/dist/dialtone-default-theme.css +15 -0
- package/lib/dist/dialtone-default-theme.min.css +1 -1
- package/lib/dist/dialtone.css +15 -0
- package/lib/dist/dialtone.min.css +1 -1
- package/lib/dist/tokens/tokens-deca-dark.css +24 -24
- package/lib/dist/tokens/tokens-dp-dark.css +24 -24
- package/lib/dist/tokens/tokens-expressive-dark.css +24 -24
- package/lib/dist/tokens/tokens-expressive-sm-dark.css +24 -24
- package/lib/dist/tokens/tokens-tmo-dark.css +24 -24
- package/lib/dist/tokens-docs.json +1 -1
- package/package.json +2 -2
|
@@ -127,6 +127,23 @@
|
|
|
127
127
|
}
|
|
128
128
|
}
|
|
129
129
|
|
|
130
|
+
.d-btn--unstyled {
|
|
131
|
+
/* stylelint-disable */
|
|
132
|
+
all: unset; // Must be first!
|
|
133
|
+
/* stylelint-enable */
|
|
134
|
+
display: inline-flex;
|
|
135
|
+
align-content: center;
|
|
136
|
+
align-items: center;
|
|
137
|
+
color: inherit;
|
|
138
|
+
font: inherit;
|
|
139
|
+
cursor: pointer;
|
|
140
|
+
|
|
141
|
+
&:focus-visible {
|
|
142
|
+
outline: none;
|
|
143
|
+
box-shadow: var(--dt-shadow-focus);
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
130
147
|
// ============================================================================
|
|
131
148
|
// $ SIZES
|
|
132
149
|
// ----------------------------------------------------------------------------
|
|
@@ -1509,6 +1509,21 @@ template {
|
|
|
1509
1509
|
cursor: not-allowed;
|
|
1510
1510
|
transition: none;
|
|
1511
1511
|
}
|
|
1512
|
+
.d-btn--unstyled {
|
|
1513
|
+
/* stylelint-disable */
|
|
1514
|
+
all: unset;
|
|
1515
|
+
/* stylelint-enable */
|
|
1516
|
+
display: inline-flex;
|
|
1517
|
+
align-content: center;
|
|
1518
|
+
align-items: center;
|
|
1519
|
+
color: inherit;
|
|
1520
|
+
font: inherit;
|
|
1521
|
+
cursor: pointer;
|
|
1522
|
+
}
|
|
1523
|
+
.d-btn--unstyled:focus-visible {
|
|
1524
|
+
outline: none;
|
|
1525
|
+
box-shadow: var(--dt-shadow-focus);
|
|
1526
|
+
}
|
|
1512
1527
|
.d-btn--xs {
|
|
1513
1528
|
--button-typography: var(--dt-typography-button-xs);
|
|
1514
1529
|
--button-padding-y: var(--button-padding-y-xs);
|