diff options
author | Frederic Marec <frederic.marec@iot.bzh> | 2021-01-26 14:33:44 +0100 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-02-03 10:54:38 +0000 |
commit | bd8431bd11df669dabd0f73d6dd75cd3bdd960dd (patch) | |
tree | 02c0a7cbffcdc82c2ad0a98bae68670b554dd7a8 /theme/mkdocs_windmill/css | |
parent | ad234d02f4675c3f0f7182a3679e1be4139dc17a (diff) |
Fix documentation CSS style
Specify display for summary tag for firefox
Bug-AGL: SPEC-3708
Signed-off-by: Frederic Marec <frederic.marec@iot.bzh>
Change-Id: Ic290665c4ecf8e2060eb11162839b9ca6275cb3c
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/documentation/+/25964
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'theme/mkdocs_windmill/css')
-rw-r--r-- | theme/mkdocs_windmill/css/base.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/theme/mkdocs_windmill/css/base.css b/theme/mkdocs_windmill/css/base.css index f07ff35..74cf0ee 100644 --- a/theme/mkdocs_windmill/css/base.css +++ b/theme/mkdocs_windmill/css/base.css @@ -453,6 +453,10 @@ pre, .rst-content tt { overflow-x: auto; } +summary { + display: list-item; +} + code.code-large, .rst-content tt.code-large { font-size: 90%; } |