by default, the user agent's css sets `margin-block-end` of "ul ul" to
"0", which renders the unordered lists in release notes cluttered. as we
are using nested unordered list to present the changes in different
components.
in this change a customized css is added to reset the begin and end
margin of ul to 1em, which is the default value of top level ul.
Signed-off-by: Kefu Chai <kchai@redhat.com>
--- /dev/null
+ul.simple > li {
+ margin-block-begin : 1em;
+ margin-block-end : 1em;
+}
html_sidebars = {
'**': ['smarttoc.html', 'searchbox.html'],
}
-
+html_css_files = [
+ 'css/custom.css',
+]
sys.path.insert(0, os.path.abspath('_ext'))
extensions = [