Closed

Description
The problem occurs in Firefox for Linux. I guess it's the same in Windows and MacOs.
In Firefox 65 (cur. Developer) and 66 (cur. Nightly) the folder icon (.ffavicon
) is displayed improperly. Curiously there (and only there) is a 3D inset-border around the icon:
A possible workaround is to set the frame to zero size and stretch the background-image to 16px.
.ffavicon {
display: inline-block;
width: 0;
height: 0;
padding: 8px;
vertical-align: text-bottom;
background-image: url("/icons/folder.png");
}