Skip to content

Commit cd290ba

Browse files
committed
[css-counter-styles] Change decimal-leading-zero to use 'pad' rather than a fixed style.
1 parent b488d6e commit cd290ba

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

css-counter-styles/Overview.bs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1101,8 +1101,8 @@ Numeric: ''decimal'', ''decimal-leading-zero'', ''cjk-decimal'', ''lower-roman''
11011101
}
11021102

11031103
@counter-style decimal-leading-zero {
1104-
system: fixed -9;
1105-
symbols: '-09' '-08' '-07' '-06' '-05' '-04' '-03' '-02' '-01' '00' '01' '02' '03' '04' '05' '06' '07' '08' '09';
1104+
system: override decimal;
1105+
pad: 2 '0';
11061106
}
11071107

11081108
@counter-style cjk-decimal {

css-counter-styles/Overview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,8 +1135,8 @@ <h3 class="heading settled heading" data-level=6.1 id=simple-numeric><span class
11351135
}
11361136

11371137
@counter-style decimal-leading-zero {
1138-
system: fixed -9;
1139-
symbols: '-09' '-08' '-07' '-06' '-05' '-04' '-03' '-02' '-01' '00' '01' '02' '03' '04' '05' '06' '07' '08' '09';
1138+
system: override decimal;
1139+
pad: 2 '0';
11401140
}
11411141

11421142
@counter-style cjk-decimal {

0 commit comments

Comments
 (0)