eoger / tabcenter-redux

Vertical Tabs extension for Firefox
Mozilla Public License 2.0
381 stars 67 forks source link

Is there a way to disable throbber animation? #320

Closed sprnza closed 6 years ago

sprnza commented 6 years ago

Hi there! Thanks for the extension, it made me switched back to FF. Just a little question: is there a way to disable tab-throbber animation? userChrome.css doesn't affect tabcenter-redux.

.tab-throbber { visibility: hidden !important; }
eoger commented 6 years ago

Check out the extension settings page, you can input custom CSS there.

Here's a solution:

.tab-icon::before {
  display: none;
}

This one will hide the tab throbber, but you'll see a blank favicon while loading. And then you can add this:

.tab.loading .tab-icon {
  background-image: url("img/defaultFavicon.svg") !important;
}

Which will show a static default favicon (well, you could provide your own!) during loading.

sprnza commented 6 years ago

Thank you @eoger