mozilla

Mozilla Nederland LogoDe Nederlandse
Mozilla-gemeenschap

Het standaardmenu van Firefox is een soort van compromis tussen de platte menu's van Windows XP en de 3D-weergave van oudere Windows-versies.
Als je de menu's zoals in de oudere Windows-versies wilt zien, dan kun je onderstaande code aan het userChrome.css bestand toevoegen:

/* Windows Classic (9x/Me/2000) menus */ 
menupopup, popup { 
   border: 2px solid !important; 
   -moz-border-top-colors: ThreeDLightShadow ThreeDHighlight; 
   -moz-border-right-colors: ThreeDDarkShadow ThreeDShadow; 
   -moz-border-bottom-colors: ThreeDDarkShadow ThreeDShadow; 
   -moz-border-left-colors: ThreeDLightShadow ThreeDHighlight; 
   padding: 1px !important; 
} 
menubar > menu[disabled="true"] { 
   border: 1px solid transparent !important; 
} 
menubar > menu[_moz-menuactive="true"] { 
   border-top: 1px solid ThreeDHighlight !important; 
   border-right: 1px solid ThreeDShadow !important; 
   border-bottom: 1px solid ThreeDShadow !important; 
   border-left: 1px solid ThreeDHighlight !important; 
   background-color: transparent !important; 
   color: MenuText !important; 
} 
menubar > menu[_moz-menuactive="true"][open="true"]  { 
   border-top: 1px solid ThreeDShadow !important; 
   border-right: 1px solid ThreeDHighlight !important; 
   border-bottom: 1px solid ThreeDHighlight !important; 
   border-left: 1px solid ThreeDShadow !important; 
}