aboutsummaryrefslogtreecommitdiff
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/misc/include.css6
-rw-r--r--chrome/misc/orig.css4
-rw-r--r--chrome/status/panel.css11
-rw-r--r--chrome/tabs/hide.css40
-rw-r--r--chrome/tabs/tree.css13
-rw-r--r--chrome/tridactyl/main.css30
-rw-r--r--chrome/userChrome.css6
7 files changed, 110 insertions, 0 deletions
diff --git a/chrome/misc/include.css b/chrome/misc/include.css
new file mode 100644
index 0000000..6bb46df
--- /dev/null
+++ b/chrome/misc/include.css
@@ -0,0 +1,6 @@
+/**
+ * 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
new file mode 100644
index 0000000..90a2e64
--- /dev/null
+++ b/chrome/misc/orig.css
@@ -0,0 +1,4 @@
+/**
+ * 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
new file mode 100644
index 0000000..0ef0368
--- /dev/null
+++ b/chrome/status/panel.css
@@ -0,0 +1,11 @@
+/**
+ * Some old status panel thing.
+ */
+
+/*
+#statuspanel {
+ right: 0;
+ display: inline;
+}
+*/
+
diff --git a/chrome/tabs/hide.css b/chrome/tabs/hide.css
new file mode 100644
index 0000000..db68534
--- /dev/null
+++ b/chrome/tabs/hide.css
@@ -0,0 +1,40 @@
+/**
+ * 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
new file mode 100644
index 0000000..c41206a
--- /dev/null
+++ b/chrome/tabs/tree.css
@@ -0,0 +1,13 @@
+/**
+ * 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
new file mode 100644
index 0000000..d636594
--- /dev/null
+++ b/chrome/tridactyl/main.css
@@ -0,0 +1,30 @@
+/**
+ * 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
new file mode 100644
index 0000000..b5b7aee
--- /dev/null
+++ b/chrome/userChrome.css
@@ -0,0 +1,6 @@
+/**
+ * userChrome.css for Firefoxer
+ */
+
+@import url("tabs/hide.css");
+@import url("tabs/tree.css");