Skip to content

Commit

Permalink
Better diff for userChrome.css
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Roy-Orbison committed Oct 4, 2023
1 parent 89382e1 commit 11ea509
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
*/

0 comments on commit 11ea509

Please sign in to comment.