From 36ee2e016f422dba06c989437a6d4dc2dd57e39d Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Tue, 19 Apr 2022 15:06:46 +0900 Subject: [PATCH] Fix: Replace userChrome and userContent with stubs which import lepton Co-authored-by: anzz1 <> --- userChrome.css | 22 ++++++++++++++++++++++ userContent.css | 4 ++++ 2 files changed, 26 insertions(+) create mode 100644 userChrome.css create mode 100644 userContent.css diff --git a/userChrome.css b/userChrome.css new file mode 100644 index 0000000..1836c86 --- /dev/null +++ b/userChrome.css @@ -0,0 +1,22 @@ +/** Import Lepton stylesheet (Chrome) *****************************************/ +@import url("css/leptonChrome.css"); + + +/** Add your custom styles below **********************************************/ + +/* Enable option to edit bookmark URLs under Add Bookmark (blue star) menu */ +/* + * #editBMPanel_locationRow { + * visibility: visible !important; + * } +*/ + +/* Disable Email Image/Audio/Video and Set as Desktop Background context menu items */ +/* + * #context-sendimage, + * #context-sendvideo, + * #context-sendaudio, + * #context-setDesktopBackground { + * display: none !important; + * } +*/ diff --git a/userContent.css b/userContent.css new file mode 100644 index 0000000..2fe02a6 --- /dev/null +++ b/userContent.css @@ -0,0 +1,4 @@ +/** Import Lepton stylesheet (Content) ****************************************/ +@import url("css/leptonContent.css"); + +/** Add your custom styles below **********************************************/