diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-19 12:09:46 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-19 12:09:46 -0300 |
commit | e83be32ab336ae049e964f22ad4ead090ba01cde (patch) | |
tree | e58ead42832f708eb036fe45b579d529105c09ae /chrome | |
parent | 395058823101437cd5ae4d14ffa80d297be4fd0e (diff) | |
download | firefoxer-e83be32ab336ae049e964f22ad4ead090ba01cde.tar.gz firefoxer-e83be32ab336ae049e964f22ad4ead090ba01cde.tar.bz2 |
Feat: manage user.js
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/misc/include.css | 6 | ||||
-rw-r--r-- | chrome/misc/orig.css | 4 | ||||
-rw-r--r-- | chrome/status/panel.css | 11 | ||||
-rw-r--r-- | chrome/tabs/hide.css | 40 | ||||
-rw-r--r-- | chrome/tabs/tree.css | 13 | ||||
-rw-r--r-- | chrome/tridactyl/main.css | 30 | ||||
-rw-r--r-- | chrome/userChrome.css | 6 |
7 files changed, 0 insertions, 110 deletions
diff --git a/chrome/misc/include.css b/chrome/misc/include.css deleted file mode 100644 index 6bb46df..0000000 --- a/chrome/misc/include.css +++ /dev/null @@ -1,6 +0,0 @@ -/** - * Example userChrome.css to include another one. - * - * You might also be interested in using symbolic links. - */ -@import url("../../../firefoxer/userChrome/userChrome.css"); diff --git a/chrome/misc/orig.css b/chrome/misc/orig.css deleted file mode 100644 index 90a2e64..0000000 --- a/chrome/misc/orig.css +++ /dev/null @@ -1,4 +0,0 @@ -/** - * Old original userChrome.css - */ -@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); diff --git a/chrome/status/panel.css b/chrome/status/panel.css deleted file mode 100644 index 0ef0368..0000000 --- a/chrome/status/panel.css +++ /dev/null @@ -1,11 +0,0 @@ -/** - * Some old status panel thing. - */ - -/* -#statuspanel { - right: 0; - display: inline; -} -*/ - diff --git a/chrome/tabs/hide.css b/chrome/tabs/hide.css deleted file mode 100644 index db68534..0000000 --- a/chrome/tabs/hide.css +++ /dev/null @@ -1,40 +0,0 @@ -/** - * Hiding the tab bar. - * - * Works best with Tree Style Tab addon: - * https://github.com/piroor/treestyletab - */ - -/** - * Hide horizontal tabs at the top of the window #1349, #1672, #2147 - * https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#hide-horizontal-tabs-at-the-top-of-the-window-1349-1672-2147 - */ - -/* -#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar > .toolbar-items { - opacity: 0; - pointer-events: none; -} -*/ - -/** - * Always hide the tab bar. - */ -#main-window:not([tabsintitlebar="true"]) #TabsToolbar { - visibility: collapse !important; -} - -/** - * Only hide horizontal tabs if Tree Style Tabs sidebar is visible - * Only works in Firefox if layout.css.has-selector.enabled is set to true in about:config. - * https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#only-hide-horizontal-tabs-if-tree-style-tabs-sidebar-is-visible - */ -/* -html#main-window body:has(#sidebar-box[sidebarcommand=treestyletab_piro_sakura_ne_jp-sidebar-action][checked=true]:not([hidden=true])) #TabsToolbar { - visibility: collapse !important; -} -*/ -/*#main-window body:has(#browser vbox[id="sidebar-box"][hidden=false]) #TabsToolbar {/* - visibility: collapse !important; -} -*/ diff --git a/chrome/tabs/tree.css b/chrome/tabs/tree.css deleted file mode 100644 index c41206a..0000000 --- a/chrome/tabs/tree.css +++ /dev/null @@ -1,13 +0,0 @@ -/** - * Tree Style Tab customizations - * https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules - */ - -/** - * Hide the "Tree Style Tab" header at the top of the sidebar - * https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules#hide-the-tree-style-tab-header-at-the-top-of-the-sidebar - */ - -#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header { - display: none; -} diff --git a/chrome/tridactyl/main.css b/chrome/tridactyl/main.css deleted file mode 100644 index d636594..0000000 --- a/chrome/tridactyl/main.css +++ /dev/null @@ -1,30 +0,0 @@ -/** - * Tridactyl customizations. - * https://github.com/tridactyl/tridactyl - */ - -:root:not([customizing]) #navigator-toolbox:not(:hover):not(:focus-within) #TabsToolbar { - visibility: collapse; -} - -statuspanel[type="overLink"], -#statuspanel[type="overLink"] { - display: none !important; -} - -#TabsToolbar { - visibility: collapse; -} - -#navigator-toolbox:not(:hover):not(:focus-within) #toolbar-menubar > * { - background-color: rgb(232, 232, 231); -} - -#main-window[sizemode="maximized"] #content-deck { - padding-top: 8px; -} - -#statuspanel { - right: 0; - display: inline; -} diff --git a/chrome/userChrome.css b/chrome/userChrome.css deleted file mode 100644 index 6ebfd6f..0000000 --- a/chrome/userChrome.css +++ /dev/null @@ -1,6 +0,0 @@ -/** - * userChrome.css for Firefoxer - */ - -@import "tabs/hide.css"; -@import "tabs/tree.css"; |