@primer/css 22.1.0-rc.6ded6343 → 22.1.0-rc.cd0adae5
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 +0 -3
- package/box/box-overlay.scss +1 -1
- package/dist/color-modes.css +1 -1
- package/dist/color-modes.css.map +1 -1
- package/dist/meta.json +33 -33
- package/dist/primer.css +1 -1
- package/dist/primer.css.map +1 -1
- package/dist/primitives.css +1 -1
- package/dist/primitives.css.map +1 -1
- package/dist/stats/color-modes.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/header/header.scss +1 -1
- package/marketing/buttons/button.scss +3 -3
- package/marketing/support/variables.scss +2 -2
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -230,7 +230,6 @@
|
|
|
230
230
|
### Major Changes
|
|
231
231
|
|
|
232
232
|
- [#2403](https://github.com/primer/css/pull/2403) [`256affcf`](https://github.com/primer/css/commit/256affcf3404c97d3db199a0b3cf32d3b864627c) Thanks [@lukasoppermann](https://github.com/lukasoppermann)! - ## Removed DiffStat component
|
|
233
|
-
|
|
234
233
|
- the diffStat component is removed from primer/css
|
|
235
234
|
- the component is very specific to this use-case, it is not generic enough to be part of the primer design system and was thus chosen for removal
|
|
236
235
|
- the component will be added to the github codebase directly so that it is still available
|
|
@@ -279,7 +278,6 @@
|
|
|
279
278
|
### Minor Changes
|
|
280
279
|
|
|
281
280
|
- [`d7a4c343`](https://github.com/primer/css/commit/d7a4c343ab1bc0d7f55ff85d735c93d9825419ae) Thanks [@jonrohan](https://github.com/jonrohan)! - Importing more styles from Primer View Components
|
|
282
|
-
|
|
283
281
|
- https://github.com/primer/view_components/pull/1587
|
|
284
282
|
- https://github.com/primer/view_components/pull/1590
|
|
285
283
|
- https://github.com/primer/view_components/pull/1592
|
|
@@ -871,7 +869,6 @@
|
|
|
871
869
|
- [#1575](https://github.com/primer/css/pull/1575) [`c7ea6448`](https://github.com/primer/css/commit/c7ea6448c114065627299db7ba65418799d4a59b) Thanks [@jonrohan](https://github.com/jonrohan)! - Replacing deprecated variables with color v2 variables
|
|
872
870
|
|
|
873
871
|
* [#1573](https://github.com/primer/css/pull/1573) [`386dfa01`](https://github.com/primer/css/commit/386dfa0145a64e2c6edbdf8ab09d9fc3f7151f6a) Thanks [@simurai](https://github.com/simurai)! - Improve the font stack on Windows
|
|
874
|
-
|
|
875
872
|
- `Segoe UI Variable` -> `Segoe UI Variable Text`.
|
|
876
873
|
- "Segoe UI Variable Text" seems to be the better option for a lot of text (markdown). In the future we might can consider having a UI and a "text" font stack.
|
|
877
874
|
- Add `Meiryo` before `system-ui`.
|
package/box/box-overlay.scss
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
background-clip: padding-box;
|
|
8
8
|
border-color: var(--borderColor-default, var(--color-border-default));
|
|
9
9
|
// stylelint-disable-next-line primer/box-shadow
|
|
10
|
-
box-shadow: 0 0 18px
|
|
10
|
+
box-shadow: 0 0 18px rgb(0, 0, 0, 0.4);
|
|
11
11
|
|
|
12
12
|
.Box-header {
|
|
13
13
|
margin: 0;
|