Skip to content

Commit 85d6091

Browse files
committed
Added support for setting custom list styles
1 parent 22ff858 commit 85d6091

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

material/templates/assets/stylesheets/main.0c760da9.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

material/templates/assets/stylesheets/main.0c760da9.min.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

material/templates/assets/stylesheets/main.35f28582.min.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

material/templates/assets/stylesheets/main.35f28582.min.css.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

material/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
{% endif %}
4545
{% endblock %}
4646
{% block styles %}
47-
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.35f28582.min.css' | url }}">
47+
<link rel="stylesheet" href="{{ 'assets/stylesheets/main.0c760da9.min.css' | url }}">
4848
{% if config.theme.palette %}
4949
{% set palette = config.theme.palette %}
5050
<link rel="stylesheet" href="{{ 'assets/stylesheets/palette.06af60db.min.css' | url }}">

src/templates/assets/stylesheets/main/_typeset.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ kbd {
313313
}
314314

315315
// Unordered list
316-
ul {
316+
ul:not([type]) {
317317
list-style-type: disc;
318318
}
319319

@@ -329,11 +329,11 @@ kbd {
329329
}
330330

331331
// Nested ordered list
332-
ol {
332+
ol:not([type]) {
333333
list-style-type: lower-alpha;
334334

335335
// Triply nested ordered list
336-
ol {
336+
ol:not([type]) {
337337
list-style-type: lower-roman;
338338
}
339339
}

0 commit comments

Comments
 (0)