From 11ea509870819897c46c99209666fb40a7123165 Mon Sep 17 00:00:00 2001 From: Roy Orbitson Date: Wed, 4 Oct 2023 14:45:19 +1030 Subject: [PATCH] Better diff for userChrome.css All rules & selectors have an unnecessary prefix that must be removed to be used. Better to remove only comment start and end lines, for cleaner diffs when comparing one's own version against updates. --- userChrome.css | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/userChrome.css b/userChrome.css index 996ecd78..c084b352 100644 --- a/userChrome.css +++ b/userChrome.css @@ -6,18 +6,18 @@ /* Enable option to edit bookmark URLs under Add Bookmark (blue star) menu */ /* - * .editBMPanel_locationRow { - * display: initial !important; - * } +.editBMPanel_locationRow { + display: initial !important; +} */ /* Disable Email Image/Audio/Video and Set as Desktop Background context menu items */ /* - * #context-sendimage, - * #context-sendvideo, - * #context-sendaudio, - * #context-sep-setbackground, - * #context-setDesktopBackground { - * display: none !important; - * } +#context-sendimage, +#context-sendvideo, +#context-sendaudio, +#context-sep-setbackground, +#context-setDesktopBackground { + display: none !important; +} */