@stackoverflow/stacks 1.10.0 → 1.10.2
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/stacks.css +7 -5
- package/dist/css/stacks.min.css +1 -1
- package/dist/js/stacks.js +1 -0
- package/lib/base/body.less +1 -1
- package/lib/components/badge/badge.a11y.test.ts +121 -0
- package/lib/components/badge/badge.visual.test.ts +128 -0
- package/lib/components/check-control/check-control.a11y.test.ts +40 -0
- package/lib/components/check-control/check-control.visual.test.ts +38 -0
- package/lib/components/check-group/check-group.a11y.test.ts +51 -0
- package/lib/components/check-group/check-group.visual.test.ts +58 -0
- package/lib/components/checkbox_radio/checkbox_radio.a11y.test.ts +39 -0
- package/lib/components/checkbox_radio/checkbox_radio.visual.test.ts +35 -0
- package/lib/components/description/description.a11y.test.ts +30 -0
- package/lib/components/description/description.visual.test.ts +30 -0
- package/lib/components/toggle-switch/toggle-switch.a11y.test.ts +73 -0
- package/lib/components/toggle-switch/toggle-switch.less +2 -1
- package/lib/components/toggle-switch/toggle-switch.visual.test.ts +73 -0
- package/lib/components/uploader/uploader.ts +1 -0
- package/lib/exports/constants-type.less +3 -3
- package/package.json +12 -12
package/dist/css/stacks.css
CHANGED
|
@@ -5842,7 +5842,9 @@ body.theme-highcontrast a.s-tag:not(.is-selected):active {
|
|
|
5842
5842
|
--_ts-multiple-fc: var(--black-500);
|
|
5843
5843
|
}
|
|
5844
5844
|
fieldset[disabled] .s-toggle-switch,
|
|
5845
|
-
|
|
5845
|
+
.s-toggle-switch[disabled],
|
|
5846
|
+
fieldset[disabled] .s-toggle-switch label,
|
|
5847
|
+
.s-toggle-switch[disabled] label {
|
|
5846
5848
|
cursor: not-allowed;
|
|
5847
5849
|
opacity: var(--_o-disabled-static);
|
|
5848
5850
|
}
|
|
@@ -6618,9 +6620,9 @@ body {
|
|
|
6618
6620
|
--ff-serif: Georgia, Cambria, "Times New Roman", Times, serif;
|
|
6619
6621
|
--ff-mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", "Liberation Mono", Menlo, Monaco, Consolas, monospace;
|
|
6620
6622
|
--theme-body-font-family: var(--ff-sans);
|
|
6621
|
-
--fs-fine:
|
|
6622
|
-
--fs-caption:
|
|
6623
|
-
--fs-body1:
|
|
6623
|
+
--fs-fine: 11px;
|
|
6624
|
+
--fs-caption: 12px;
|
|
6625
|
+
--fs-body1: 13px;
|
|
6624
6626
|
--fs-body2: 1.15384615rem;
|
|
6625
6627
|
--fs-body3: 1.30769231rem;
|
|
6626
6628
|
--fs-subheading: 1.46153846rem;
|
|
@@ -23157,7 +23159,7 @@ body {
|
|
|
23157
23159
|
@media (max-width: 640px) {
|
|
23158
23160
|
html ,
|
|
23159
23161
|
html body {
|
|
23160
|
-
font-size:
|
|
23162
|
+
font-size: 11px;
|
|
23161
23163
|
}
|
|
23162
23164
|
}
|
|
23163
23165
|
body {
|