Commit 60e2aa65 authored by Venugopal Shivashankar's avatar Venugopal Shivashankar
Browse files

Doc: Add ordered list-specific styles


These additional styles enable the use of lower and uppercase
alphabets to number the list items. They are useful especially
in nested ordered lists where numbering all the list items
using decimal numbers could be confusing.

Change-Id: If1bdf98ff37c2c191d66dfb66a3e8f20d8fa83e5
Reviewed-by: default avatarVenugopal Shivashankar <venugopal.shivashankar@digia.com>
Showing with 27 additions and 2 deletions
...@@ -515,15 +515,26 @@ li { ...@@ -515,15 +515,26 @@ li {
margin-bottom: 10px; margin-bottom: 10px;
padding-left: 8px; padding-left: 8px;
list-style: outside; list-style: outside;
list-style-type: square;
text-align: left; text-align: left;
} }
ul > li {
list-style-type: square;
}
ol { ol {
margin: 10px; margin: 10px;
padding: 0; padding: 0;
} }
ol.A > li {
list-style-type: upper-alpha;
}
ol.a > li{
list-style-type: lower-alpha;
}
ol > li { ol > li {
margin-left: 30px; margin-left: 30px;
padding-left: 8px; padding-left: 8px;
......
...@@ -975,9 +975,23 @@ ol,ul { ...@@ -975,9 +975,23 @@ ol,ul {
margin-top:0.75em; margin-top:0.75em;
margin-left:20px margin-left:20px
} }
.context ol > li {
margin-left: 20px
}
.mainContent ol>li { .mainContent ol>li {
list-style-type:decimal list-style-type: decimal;
}
.mainContent ol.a >li {
list-style-type: lower-alpha;
}
.mainContent ol.A >li {
list-style-type: upper-alpha;
} }
blockquote,q { blockquote,q {
quotes:none quotes:none
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment