Does anyone know of a simple way to remove the grippies from Mozilla? Is there a userChrome.css hack to disable or remove them?
update: well, a Google query gives me this userChrome.css change:
/* minimise grippies */
toolbargrippy {
width:0px !important; padding:0 !important;
}
or this one:
toolbargrippy { display: none !important; }
It sure is nice being able to customize Mozilla's chrome that easily.