Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

Disable animation on hover over inactive tab

  • 2 απαντήσεις
  • 2 έχουν αυτό το πρόβλημα
  • 5 προβολές
  • Τελευταία απάντηση από LiamM

more options

When I hover the mouse over an inactive tab, there is a distracting animation. I want to disable this. I am familiar with userChrome.css. I just need to know what to add to it or if there is another way. I have tried various about:config changes and none have worked.

When I hover the mouse over an inactive tab, there is a distracting animation. I want to disable this. I am familiar with userChrome.css. I just need to know what to add to it or if there is another way. I have tried various about:config changes and none have worked.

Επιλεγμένη λύση

Do you mean the gray "tab line" along the top of the tab which appears and expands outwards when you hover? Try:

.tabbrowser-tab .tab-line:not([selected="true"]),
.tabbrowser-tab:hover .tab-line:not([selected="true"]){
  background-color: transparent !important;
}

Depending on your theme, there may be a more "specific" rule you need to override.

Ανάγνωση απάντησης σε πλαίσιο 👍 1

Όλες οι απαντήσεις (2)

more options

Επιλεγμένη λύση

Do you mean the gray "tab line" along the top of the tab which appears and expands outwards when you hover? Try:

.tabbrowser-tab .tab-line:not([selected="true"]),
.tabbrowser-tab:hover .tab-line:not([selected="true"]){
  background-color: transparent !important;
}

Depending on your theme, there may be a more "specific" rule you need to override.

more options

Yes, that solves it. Thanks very much!