Αυτός ο ιστότοπος θα έχει περιορισμένη λειτουργικότητα, όσο εκτελούμε εργασίες συντήρησης για να βελτιώσουμε την εμπειρία σας. Αν ένα άρθρο δεν επιλύει το ζήτημά σας και θέλετε να κάνετε μια ερώτηση, η κοινότητα υποστήριξής μας είναι έτοιμη να σας βοηθήσει στο Twitter (@FirefoxSupport) και στο Reddit (/r/firefox).

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

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

Μάθετε περισσότερα

Hover Higlighting for Firefox

  • 4 απαντήσεις
  • 1 έχει αυτό το πρόβλημα
  • 15 προβολές
  • Τελευταία απάντηση από click_click

more options

I found the following css for highlighting all context menu items for Firefox 91 ESR . I couldn't figure out why the entries from the hamburger menu were not affected. Anyone?

/* Highlight context menu items */

menu[_moz-menuactive="true"], menuitem[_moz-menuactive="true"] {

 background-color: #e8eefd !important;  /* blue 95% lighter */
 color: #3d3dff !important; /* blue 62% darker */

}

How do I apply the same highlighting shown by the red arrow to the text where grey and heavy blue is used for highlighting? I find css very convoluted and it's hard for me to know what ids/parameters to use to get the desired effects. Any help appreciated.

I found the following css for highlighting all context menu items for Firefox 91 ESR . I couldn't figure out why the entries from the hamburger menu were not affected. Anyone? /* Highlight context menu items */ menu[_moz-menuactive="true"], menuitem[_moz-menuactive="true"] { background-color: #e8eefd !important; /* blue 95% lighter */ color: #3d3dff !important; /* blue 62% darker */ } How do I apply the same highlighting shown by the red arrow to the text where grey and heavy blue is used for highlighting? I find css very convoluted and it's hard for me to know what ids/parameters to use to get the desired effects. Any help appreciated.
Συνημμένα στιγμιότυπα

Τροποποιήθηκε στις από το χρήστη click-click

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

more options

Why can't I edit my post above? The three dots for the above post only shows QUOTE This post shows QUOTE and Edit

Nevermind.. Geeez move Edit off to the side where it's most least to be expected.

Τροποποιήθηκε στις από το χρήστη click-click

more options

Hi, in CSS-speak, what you need are selectors. Selectors are the references that apply the rules to the correct elements. Browsers choose among selectors based on a bunch of precedence rules. In short, !important isn't always enough, you might need more selectors.

When I check Firefox 94 on Windows 10 (no special system theme), this works for the menu bar:

@media (-moz-windows-default-theme){
  #menubar-items > #main-menubar > menu[_moz-menuactive="true"] {
    background-color: #e8eefd !important;  /* blue 95% lighter */
    color: #3d3dff !important; /* blue 62% darker */
  }  
}


This was determined by using the Browser Toolbox to inspect the area (it's a bit messy because when the main window loses focus, different rules apply...). https://developer.mozilla.org/docs/Tools/Browser_Toolbox

more options

jscher2000 said

When I check Firefox 94 on Windows 10 (no special system theme), this works for the menu bar:

Perfect. I really need a tutorial on selectors and elements. Any pointers to some good info and examples?

Any magic for the bookmarks toolbar in my 2nd image above? Some of the icons are folders with urls and others are single urls

Τροποποιήθηκε στις από το χρήστη click-click

more options

Managed to get the same highlighting on the Bookmarks toolbar with this: /* Highlight Bookmark Toolbar text */

.bookmark-item:hover {

 background-color: #e8eefd !important; /* blue 95% lighter */
 color: #3d3dff !important; /* blue 62% darker */

}