Skip to content

Commit 3033cc0

Browse files
authored
Merge pull request mdn#69 from NiedziolkaMichal/counter
counter-style-demo fixes
2 parents 06747a3 + e07b932 commit 3033cc0

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

counter-style-demo/css/style.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ body {
5959

6060
@counter-style cs-fixed {
6161
system: fixed;
62-
symbols:          ;
62+
symbols: 😀 👻 👽 👾 🤖 🎃 😹 👋 👀 💋;
6363
suffix: " ";
6464
}
6565

@@ -91,6 +91,7 @@ body {
9191
@counter-style cs-numeric {
9292
system: numeric;
9393
symbols: A B C D E;
94+
suffix: " ";
9495
}
9596

9697
.demo-numeric {

counter-style-demo/js/script.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
code: [
2121
'@counter-style circled-digits {\n',
2222
' system: fixed;\n',
23-
' symbols:          ;\n',
23+
' symbols: 😀 👻 👽 👾 🤖 🎃 😹 👋 👀 💋;\n',
2424
' suffix: " ";\n',
2525
'}\n\n',
2626
'ul {\n',
@@ -33,7 +33,7 @@
3333
code: [
3434
'@counter-style cs-symbolic {\n',
3535
' system: symbolic;\n',
36-
" symbols: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9';\n",
36+
" symbols: '*' ⁑ † ‡;\n",
3737
' range: 1 15;\n',
3838
' suffix: " ";\n',
3939
'}\n\n',
@@ -74,7 +74,7 @@
7474
'@counter-style cs-additive-roman {\n',
7575
' system: additive;\n',
7676
" range: 1 100;\n",
77-
' additive-symbols: 100 C, 90 XC, 50 L, 40 XL, 10 X, 9 IX, 5 V, 4 IV, 1 I;\n',
77+
' additive-symbols: 1000 M, 900 CM, 500 D, 400 CD, 100 C, 90 XC, 50 L, 40 XL, 10 X, 9 IX, 5 V, 4 IV, 1 I;\n',
7878
'}\n\n',
7979
'ul {\n',
8080
' list-style: cs-additive-roman;\n',

0 commit comments

Comments
 (0)