diff options
author | bptato <nincsnevem662@gmail.com> | 2024-02-25 18:26:57 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-02-25 18:26:57 +0100 |
commit | 7d8304925d693054e17baabeac664f182a9def82 (patch) | |
tree | f668abe7e253e36ed7cb43d04f3927144411b187 /res | |
parent | d4e96dcca1521a716324f74e360b3cf798732256 (diff) | |
download | chawan-7d8304925d693054e17baabeac664f182a9def82.tar.gz |
ua.css: fix details element display
no open/closed logic yet, but at least this fixes the display: property
Diffstat (limited to 'res')
-rw-r--r-- | res/ua.css | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/res/ua.css b/res/ua.css index 389936d1..45559e99 100644 --- a/res/ua.css +++ b/res/ua.css @@ -7,8 +7,8 @@ noframes, param, rp, script, style, template, title { display: block !important; } -address, article, aside, blockquote, body, center, dd, dialog, dir, div, -dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, +address, article, aside, blockquote, body, center, dd, details, dialog, dir, +div, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, legend, listing, main, menu, nav, noframes, noscript, ol, p, plaintext, pre, search, section, ul, xmp { display: block; @@ -169,7 +169,7 @@ textarea { white-space: pre; } -li { +li, summary { display: list-item; } |