@primer/css 19.2.1-rc.34923704 → 19.2.1-rc.36602faf
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/CHANGELOG.md +5 -1
- package/color-modes/native.scss +11 -0
- package/dist/color-modes.css +1 -1
- package/dist/color-modes.css.map +1 -1
- package/dist/core.css +1 -1
- package/dist/core.css.map +1 -1
- package/dist/meta.json +99 -99
- package/dist/pagination.css +1 -1
- package/dist/pagination.css.map +1 -1
- package/dist/primer.css +2 -2
- package/dist/primer.css.map +1 -1
- package/dist/stats/color-modes.json +1 -1
- package/dist/stats/core.json +1 -1
- package/dist/stats/pagination.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/package.json +1 -1
- package/pagination/pagination.scss +38 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,11 @@
|
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
- [#
|
|
7
|
+
- [#1890](https://github.com/primer/css/pull/1890) [`74d0438b`](https://github.com/primer/css/commit/74d0438bd4dbaed447b553c5d3c8b945da282836) Thanks [@andrialexandrou](https://github.com/andrialexandrou)! - Adds --color-accent-emphasis and --color-fg-on-emphasis rules for Windows High Contrast Mode
|
|
8
|
+
|
|
9
|
+
* [#1882](https://github.com/primer/css/pull/1882) [`4a06aba1`](https://github.com/primer/css/commit/4a06aba1d3f80bcc228ff4360d0e02d5ace158ff) Thanks [@tqwewe](https://github.com/tqwewe)! - Fix layout gutter none styles
|
|
10
|
+
|
|
11
|
+
- [#1894](https://github.com/primer/css/pull/1894) [`d1adf595`](https://github.com/primer/css/commit/d1adf595308afb97f83c5ca172222944189a5961) Thanks [@simurai](https://github.com/simurai)! - Make `pagination` responsive by default
|
|
8
12
|
|
|
9
13
|
## 19.2.0
|
|
10
14
|
|
package/color-modes/native.scss
CHANGED
|
@@ -9,3 +9,14 @@
|
|
|
9
9
|
color: var(--color-fg-default);
|
|
10
10
|
background-color: var(--color-canvas-default);
|
|
11
11
|
}
|
|
12
|
+
|
|
13
|
+
// Windows High Contrast mode
|
|
14
|
+
|
|
15
|
+
// Improves focus state for various components when Windows High Contrast mode is enabled
|
|
16
|
+
// stylelint-disable selector-max-type
|
|
17
|
+
@media (forced-colors: active) {
|
|
18
|
+
body {
|
|
19
|
+
--color-accent-emphasis: Highlight;
|
|
20
|
+
--color-fg-on-emphasis: LinkText;
|
|
21
|
+
}
|
|
22
|
+
}
|