@primer/css 20.8.4-rc.f69d46b3 → 21.0.0-rc.641fcfda
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 +10 -1
- package/dist/labels.css +1 -1
- package/dist/labels.css.map +1 -1
- package/dist/meta.json +44 -44
- package/dist/primer.css +1 -1
- package/dist/primer.css.map +1 -1
- package/dist/product.css +1 -1
- package/dist/product.css.map +1 -1
- package/dist/stats/labels.json +1 -1
- package/dist/stats/primer.json +1 -1
- package/dist/stats/product.json +1 -1
- package/labels/index.scss +0 -1
- package/package.json +1 -1
- package/labels/diffstat.scss +0 -37
package/labels/diffstat.scss
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
// diffstat
|
|
2
|
-
//
|
|
3
|
-
// Green/red blocks showing additions and deletions
|
|
4
|
-
|
|
5
|
-
.diffstat {
|
|
6
|
-
font-size: $h6-size;
|
|
7
|
-
font-weight: $font-weight-bold;
|
|
8
|
-
color: var(--color-fg-muted);
|
|
9
|
-
white-space: nowrap;
|
|
10
|
-
cursor: default;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.diffstat-block-deleted,
|
|
14
|
-
.diffstat-block-added,
|
|
15
|
-
.diffstat-block-neutral {
|
|
16
|
-
display: inline-block;
|
|
17
|
-
width: $spacer-2;
|
|
18
|
-
height: $spacer-2;
|
|
19
|
-
// stylelint-disable-next-line primer/spacing
|
|
20
|
-
margin-left: 1px;
|
|
21
|
-
outline-offset: -1px; // Support Firefox custom colors
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
.diffstat-block-deleted {
|
|
25
|
-
background-color: var(--color-danger-emphasis);
|
|
26
|
-
outline: 1px solid var(--color-border-subtle); // Support Firefox custom colors
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.diffstat-block-added {
|
|
30
|
-
background-color: var(--color-diffstat-addition-bg);
|
|
31
|
-
outline: 1px solid var(--color-border-subtle); // Support Firefox custom colors
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
.diffstat-block-neutral {
|
|
35
|
-
background-color: var(--color-neutral-muted);
|
|
36
|
-
outline: 1px solid var(--color-border-subtle); // Support Firefox custom colors
|
|
37
|
-
}
|