LibWeb: Add rudimentary styling to <details> and <summary>

This commit is contained in:
Sam Atkins 2021-12-22 12:35:54 +00:00 committed by Andreas Kling
commit 2f3e24d71e
Notes: sideshowbarker 2024-07-17 22:41:14 +09:00

View file

@ -233,3 +233,13 @@ input[type=text] {
option {
display: none;
}
details {
display: block;
padding-left: 1em;
}
summary {
display: block;
font-weight: bold;
}