Timvde / UserChrome-Tweaks

A community maintained repository of userChrome.css tweaks for Firefox

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

show bookmarks only on newtab issues

tkhquang opened this issue · comments

Shortly after opening any link, be it on a new tab or not, you can see the bookmarks bar for some seconds before it dissapears.

On FF 59

@andreicristianpetcu: that was your style, wasn't it?

Yeah.... it was my style but I do not use it anymore on my machines :(

@andreicristianpetcu

Well, did you have this problem when you used it?

https://puu.sh/zYUMp/a3b377cfd1.gif

Even if I use a new fresh profile with the style, I still face this problem, maybe the newer FF versions broke the style?

Would it work to put a delay of maybe one second before the bookmarks toolbar appears?

@Timvde

Thanks for the suggestion! I've just tried making some changes and it seems to work ok for now


#main-window #PersonalToolbar {
  visibility: collapse !important;
  opacity:0 !important;
  margin-top: -23px !important;
  transition: all 0.2s ease 0.2s !important;
}

#main-window[title^="Mozilla Firefox"] #PersonalToolbar,
#main-window[title^="about:newtab"] #PersonalToolbar,
#main-window[title^="New Tab"] #PersonalToolbar,
#main-window[title^="Firefox"] #PersonalToolbar,
#main-window[title^="Nightly"] #PersonalToolbar {
  visibility: visible !important;
  margin-top: 0px !important;
  transition: all 1.0s ease 1.0s !important;
  opacity: 1 !important;
}

But still, 1s seems too short (maybe because my network is so slow), sometimes I still see the bar appearing for short time. I'll try to increase it to 2s to see if it works better.