From 2f3e24d71ec9797a8c770d4920f74de5bf69f4a4 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 22 Dec 2021 12:35:54 +0000 Subject: [PATCH] LibWeb: Add rudimentary styling to `
` and `` --- Userland/Libraries/LibWeb/CSS/Default.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index d0ff729b4b..3ba22059cf 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -233,3 +233,13 @@ input[type=text] { option { display: none; } + +details { + display: block; + padding-left: 1em; +} + +summary { + display: block; + font-weight: bold; +}