File tree 6 files changed +9
-5
lines changed
fast-components/src/badge
fast-components-msft/src/badge
6 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export const BadgeStyles = css`
15
15
line-height: var(- - type-ramp- minus-1- height);
16
16
}
17
17
18
- .badge {
18
+ .control {
19
19
border-radius : calc (var (--corner-radius ) * 1px );
20
20
padding : calc (var (--design-unit ) * 0.5px ) calc (var (--design-unit ) * 1px );
21
21
}
Original file line number Diff line number Diff line change @@ -10,18 +10,18 @@ export const BadgeStyles = css`
10
10
line-height: var(- - type-ramp- minus-1- height);
11
11
}
12
12
13
- .badge {
13
+ .control {
14
14
border-radius : calc (var (--corner-radius ) * 1px );
15
15
padding : calc (var (--design-unit ) * 0.5px ) calc (var (--design-unit ) * 1px );
16
16
color : ${ accentForegroundRestBehavior . var } ;
17
17
font-weight : 600 ;
18
18
}
19
19
20
- .badge [style ] {
20
+ .control [style ] {
21
21
font-weight : 400 ;
22
22
}
23
23
24
- : host (.circular ) .badge {
24
+ : host (.circular ) .control {
25
25
border-radius : 100px ;
26
26
padding : 0 calc (var (--design-unit ) * 1px );
27
27
${
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ export const AccordionItemTemplate = html<AccordionItem>`
35
35
</div>
36
36
<div
37
37
class="region"
38
+ part="region"
38
39
id="${ x => x . id } -panel"
39
40
role="region"
40
41
aria-labelledby="${ x => x . id } "
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ export const AnchorTemplate = html<Anchor>`
6
6
<template class="${ x => x . appearance } ">
7
7
<a
8
8
class="control"
9
+ part="control"
9
10
download="${ x => x . download } "
10
11
href="${ x => x . href } "
11
12
hreflang="${ x => x . hreflang } "
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ import { Badge } from "./badge";
4
4
export const BadgeTemplate = html < Badge > `
5
5
<template class="${ x => ( x . circular ? "circular" : "" ) } ">
6
6
<div
7
- class="badge"
7
+ class="control"
8
+ part="control"
8
9
style="${ x =>
9
10
x . fill || x . color
10
11
? `background-color: var(--badge-fill-${ x . fill } ); color: var(--badge-color-${ x . color } )`
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ export const ButtonTemplate = html<Button>`
6
6
<template class="${ x => x . appearance } ">
7
7
<button
8
8
class="control"
9
+ part="control"
9
10
?autofocus=${ x => x . autofocus }
10
11
?disabled=${ x => x . disabled }
11
12
form=${ x => x . formId }
You can’t perform that action at this time.
0 commit comments