We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0370244 commit 12355f8Copy full SHA for 12355f8
.changeset/beige-files-move.md
@@ -0,0 +1,5 @@
1
+---
2
+"@primer/css": patch
3
4
+
5
+Add upper-roman and upper-alpha list types
src/markdown/lists.scss
@@ -14,18 +14,26 @@
14
}
15
16
17
- ol[type='1'] {
18
- list-style-type: decimal;
19
- }
20
-
21
ol[type='a'] {
22
list-style-type: lower-alpha;
23
24
+ ol[type='A'] {
+ list-style-type: upper-alpha;
+ }
25
ol[type='i'] {
26
list-style-type: lower-roman;
27
28
29
+ ol[type='I'] {
30
+ list-style-type: upper-roman;
31
32
33
+ ol[type='1'] {
34
+ list-style-type: decimal;
35
36
37
// Reset <ol> style to decimal (HTML default) specifically for AsciiDoc
38
// <div><ol> construction (doesn't affect MarkDown)
39
div > ol:not([type]) {
0 commit comments