diff --git a/Userland/Libraries/LibWeb/CSS/Default.css b/Userland/Libraries/LibWeb/CSS/Default.css index 8224e05ad8..c42ad12640 100644 --- a/Userland/Libraries/LibWeb/CSS/Default.css +++ b/Userland/Libraries/LibWeb/CSS/Default.css @@ -64,33 +64,6 @@ 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; - background-repeat: no-repeat; - background-size: cover; -} - -input[type=checkbox]:checked { - /* - This roughly resembles ClassicStylePainter's paint_check_box() while uncoupling the styling from LibGfx, similar to -