Fix link title icons causing links to be clipped in catalog in Chromium.

This commit is contained in:
ccd0 2016-09-21 01:34:30 -07:00
parent 1b3e59e852
commit 98d01c0d50

View File

@ -28,7 +28,8 @@ var icons = (names, data) => (
'/* Link Title Favicons */\n' +
names.map((file, i) =>
`.linkify.${file.split('.')[1]} {
`.linkify.${file.split('.')[1]}::before {
content: "";
background: transparent url('data:image/png;base64,${data[i]}') center left no-repeat!important;
padding-left: 18px;
}