summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Lee <me@xiangyangli.com>2018-04-30 05:26:18 +0800
committerSteve Lee <me@xiangyangli.com>2018-04-30 05:26:18 +0800
commit6e9929ae5add4149a87de3ccfcd71ddd5e1268e4 (patch)
tree2f6e7879c99e9444f1d3baee71b2eefd7ca56f14
parent6103efa9cda22a3364d1186ea519b8b9384afde3 (diff)
downloaddotfiles-6e9929ae5add4149a87de3ccfcd71ddd5e1268e4.tar.xz
dotfiles-6e9929ae5add4149a87de3ccfcd71ddd5e1268e4.zip
update:
set address bar auto hide
-rw-r--r--.mozilla/firefox/qifdumt4.default/chrome/userChrome.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/.mozilla/firefox/qifdumt4.default/chrome/userChrome.css b/.mozilla/firefox/qifdumt4.default/chrome/userChrome.css
index 36d0135..c025e4e 100644
--- a/.mozilla/firefox/qifdumt4.default/chrome/userChrome.css
+++ b/.mozilla/firefox/qifdumt4.default/chrome/userChrome.css
@@ -19,3 +19,17 @@
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
display: none;
}
+
+#navigator-toolbox {
+ position: relative;
+ z-index: 1;
+ height: 3px;
+ margin-bottom: -3px;
+ overflow: hidden;
+ transition-property: height;
+}
+
+#navigator-toolbox:hover {
+ height: 42px;
+ transition-property: height;
+}