From 7c8e4ef49d21e3f79b60f6546cfb5181bb3b2592 Mon Sep 17 00:00:00 2001 From: Michael Howell Date: Thu, 15 Sep 2022 17:16:59 -0700 Subject: [PATCH] rustdoc: remove no-op CSS `.block { padding: 0 }` This rule was changed in 8fb1250aba8135679463351a3813c04ae45bf311 from the original version that had a non-zero padding. It's not needed, because it's not overriding anything that would've given `.block` a padding. --- src/librustdoc/html/static/css/rustdoc.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/librustdoc/html/static/css/rustdoc.css b/src/librustdoc/html/static/css/rustdoc.css index 8bfaaf21c8e57..ad1fd738a2037 100644 --- a/src/librustdoc/html/static/css/rustdoc.css +++ b/src/librustdoc/html/static/css/rustdoc.css @@ -498,9 +498,6 @@ img { font-weight: 500; } -.block { - padding: 0; -} .block ul, .block li { padding: 0; margin: 0;