From 43036de6508a8f4b5d06ccdb9a3d98eb57ccffd4 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sun, 13 Dec 2020 16:40:34 +0000 Subject: [PATCH] Initial commit --- install | 4 ++++ userChrome.css | 14 ++++++++++++++ 2 files changed, 18 insertions(+) create mode 100755 install create mode 100644 userChrome.css diff --git a/install b/install new file mode 100755 index 0000000..50b8eb5 --- /dev/null +++ b/install @@ -0,0 +1,4 @@ +#!/bin/sh -e + +install -Dm644 userChrome.css \ + "/usr/lib/firefox/browser/defaults/preferences/chrome/userChrome.css" diff --git a/userChrome.css b/userChrome.css new file mode 100644 index 0000000..9836d55 --- /dev/null +++ b/userChrome.css @@ -0,0 +1,14 @@ +:root { + --panel-separator-color: transparent !important; + --urlbar-separator-color: ThreeDFace !important; + --chrome-content-separator-color: unset !important; +} + +#tabbrowser-tabs { + --tab-line-color: transparent !important; + --tab-loading-fill: #9059ff !important; +} + +#urlbar:not(:-moz-lwtheme):not([focused="true"]) > #urlbar-background, #searchbar:not(:-moz-lwtheme):not(:focus-within) { + border-color: ThreeDFace !important; +}