1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-28 09:39:42 +02:00

Change CSS ul/ol/li default styling

Should support custom bullet styles eminating from add-ons.
This commit is contained in:
Harvey Kandola 2019-01-07 14:44:58 +00:00
parent 9206e9aaa1
commit fb391d49a5
2 changed files with 4 additions and 4 deletions

View file

@ -32,8 +32,8 @@ ul {
padding: 0; padding: 0;
li { li {
list-style: none; // list-style: none;
list-style-type: none; // list-style-type: none;
} }
} }

View file

@ -32,14 +32,14 @@
ol { ol {
li { li {
list-style-type: decimal; // list-style-type: decimal;
line-height: 20px; line-height: 20px;
} }
} }
ul { ul {
li { li {
list-style-type: disc; // list-style-type: disc;
line-height: 20px; line-height: 20px;
} }
} }