In Linux, I was having a problem when using Firefox. After some version update, the menu separator lines simply disappear. After searching around after a solution to this very annoying problem, I found another userChrome.css customization:
/* Make separators in menus easier to see */
menuseparator {
-moz-appearance: none !important; /* nothing changes without this */
background: #d4d2d1 !important;
height: 1px !important;
padding: 0 !important;
margin: 3px 5px !important;
}
Make sure it’s loading is enabled. After restarting Firefox, the menu separators were back in all their glory.
No comments:
Post a Comment