Set list-style-type for list items in markdown-body (#15827) (#15830)

* fix markdown list style broken by EUI

* apply style to list element instead of item element
This commit is contained in:
Nathan Reese 2018-01-03 13:09:49 -07:00 committed by GitHub
parent 5edc0f0705
commit 170a735915
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -197,6 +197,14 @@
margin-bottom: 0;
}
// Kibana sets list-style: none. Set list styles for markdown content
.markdown-body ul {
list-style-type: disc;
}
.markdown-body ol {
list-style-type: decimal;
}
.markdown-body ol ol,
.markdown-body ul ol {
list-style-type: lower-roman;