diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index c42ad126400..7baf6dfc2c9 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -64,6 +64,25 @@ button:hover, input[type=submit]:hover, input[type=button]:hover, input[type=res background-color: -libweb-palette-hover-highlight; } +input[type=checkbox] { + display: inline-block; + width: 12px; + height: 12px; + margin: 2px; + border: 1px solid -libweb-palette-threed-shadow1; +} + +input[type=checkbox]:checked { + /* + This roughly resembles ClassicStylePainter's paint_check_box() while uncoupling the styling from LibGfx, similar to +