@stackoverflow/stacks 1.10.4 → 1.10.6
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/components/code-block/code-block.fixtures.d.ts +2 -0
- package/dist/css/stacks.css +3 -2
- package/dist/css/stacks.min.css +1 -1
- package/lib/components/code-block/code-block.a11y.test.ts +30 -0
- package/lib/components/code-block/code-block.fixtures.ts +88 -0
- package/lib/components/code-block/code-block.visual.test.ts +20 -0
- package/lib/components/input_textarea/input_textarea.a11y.test.ts +105 -0
- package/lib/components/input_textarea/input_textarea.visual.test.ts +98 -0
- package/lib/components/modal/modal.less +1 -0
- package/lib/components/navigation/navigation.a11y.test.ts +80 -0
- package/lib/components/navigation/navigation.visual.test.ts +101 -0
- package/lib/components/notice/notice.a11y.test.ts +22 -0
- package/lib/components/notice/notice.visual.test.ts +26 -0
- package/lib/components/page-title/page-title.a11y.test.ts +31 -0
- package/lib/components/page-title/page-title.visual.test.ts +59 -0
- package/lib/components/pagination/pagination.a11y.test.ts +22 -0
- package/lib/components/pagination/pagination.visual.test.ts +26 -0
- package/lib/components/spinner/spinner.a11y.test.ts +15 -0
- package/lib/components/spinner/spinner.visual.test.ts +43 -0
- package/lib/components/tag/tag.a11y.test.ts +23 -0
- package/lib/components/tag/tag.visual.test.ts +46 -0
- package/lib/components/toast/toast.a11y.test.ts +35 -0
- package/lib/components/toast/toast.visual.test.ts +10 -6
- package/lib/components/user-card/user-card.less +2 -2
- package/lib/test/axe-apca/README.md +19 -0
- package/lib/test/axe-apca/src/axe-apca.test.ts +77 -1
- package/lib/test/axe-apca/src/axe-apca.ts +16 -8
- package/lib/test/test-utils.ts +8 -6
- package/package.json +10 -10
package/dist/css/stacks.css
CHANGED
|
@@ -3122,6 +3122,7 @@ body.theme-system .theme-dark__forced .s-modal .s-modal--dialog {
|
|
|
3122
3122
|
font-weight: normal;
|
|
3123
3123
|
line-height: var(--lh-sm);
|
|
3124
3124
|
margin-bottom: var(--su16);
|
|
3125
|
+
margin-right: var(--su24);
|
|
3125
3126
|
}
|
|
3126
3127
|
.s-navigation {
|
|
3127
3128
|
--_na-fd: row;
|
|
@@ -6562,8 +6563,8 @@ body.theme-highcontrast .s-uploader .s-uploader--preview-thumbnail {
|
|
|
6562
6563
|
font-size: var(--fs-caption);
|
|
6563
6564
|
grid-column: 1 / 3;
|
|
6564
6565
|
}
|
|
6565
|
-
.s-user-card .s-user-card--type a {
|
|
6566
|
-
color: inherit;
|
|
6566
|
+
.s-user-card .s-user-card--type a:not(.s-link) {
|
|
6567
|
+
color: inherit !important;
|
|
6567
6568
|
}
|
|
6568
6569
|
@font-face {
|
|
6569
6570
|
font-family: "Segoe UI Adjusted";
|