|
23 | 23 | border-radius: 0;
|
24 | 24 |
|
25 | 25 | &:first-child {
|
26 |
| - // stylelint-disable-next-line primer/borders |
27 |
| - border-top-left-radius: $border-radius; |
28 |
| - // stylelint-disable-next-line primer/borders |
29 |
| - border-bottom-left-radius: $border-radius; |
| 26 | + border-top-left-radius: var(--borderRadius-default); |
| 27 | + border-bottom-left-radius: var(--borderRadius-default); |
30 | 28 | }
|
31 | 29 |
|
32 | 30 | &:last-child {
|
33 |
| - // stylelint-disable-next-line primer/borders |
34 |
| - border-right-width: $border-width; |
35 |
| - // stylelint-disable-next-line primer/borders |
36 |
| - border-top-right-radius: $border-radius; |
37 |
| - // stylelint-disable-next-line primer/borders |
38 |
| - border-bottom-right-radius: $border-radius; |
| 31 | + border-right-width: var(--borderWidth-default); |
| 32 | + border-top-right-radius: var(--borderRadius-default); |
| 33 | + border-bottom-right-radius: var(--borderRadius-default); |
39 | 34 | }
|
40 | 35 |
|
41 | 36 | &.selected,
|
42 | 37 | &[aria-selected='true'],
|
43 | 38 | &:focus,
|
44 | 39 | &:active,
|
45 | 40 | &:hover {
|
46 |
| - // stylelint-disable-next-line primer/borders |
47 |
| - border-right-width: $border-width; |
| 41 | + border-right-width: var(--borderWidth-default); |
48 | 42 |
|
49 | 43 | + .BtnGroup-item,
|
50 | 44 | + .BtnGroup-parent .BtnGroup-item {
|
|
57 | 51 | float: left;
|
58 | 52 |
|
59 | 53 | &:first-child .BtnGroup-item {
|
60 |
| - // stylelint-disable-next-line primer/borders |
61 |
| - border-top-left-radius: $border-radius; |
62 |
| - // stylelint-disable-next-line primer/borders |
63 |
| - border-bottom-left-radius: $border-radius; |
| 54 | + border-top-left-radius: var(--borderRadius-default); |
| 55 | + border-bottom-left-radius: var(--borderRadius-default); |
64 | 56 | }
|
65 | 57 |
|
66 | 58 | &:last-child .BtnGroup-item {
|
67 |
| - // stylelint-disable-next-line primer/borders |
68 |
| - border-right-width: $border-width; |
69 |
| - // stylelint-disable-next-line primer/borders |
70 |
| - border-top-right-radius: $border-radius; |
71 |
| - // stylelint-disable-next-line primer/borders |
72 |
| - border-bottom-right-radius: $border-radius; |
| 59 | + border-right-width: var(--borderWidth-default); |
| 60 | + border-top-right-radius: var(--borderRadius-default); |
| 61 | + border-bottom-right-radius: var(--borderRadius-default); |
73 | 62 | }
|
74 | 63 |
|
75 | 64 | .BtnGroup-item {
|
|
83 | 72 | &:active,
|
84 | 73 | &:hover {
|
85 | 74 | .BtnGroup-item {
|
86 |
| - // stylelint-disable-next-line primer/borders |
87 |
| - border-right-width: $border-width; |
| 75 | + border-right-width: var(--borderWidth-default); |
88 | 76 | }
|
89 | 77 |
|
90 | 78 | + .BtnGroup-item,
|
|
0 commit comments