1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-03 00:18:31 +00:00
* Fixed: Bug with new @media badges for Firefox causing certain globally available Twitch badges to become invisible.
This commit is contained in:
SirStendec 2019-12-10 22:07:48 -05:00
parent 5f8ebc9085
commit 5f27045b9f
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{
"name": "frankerfacez",
"author": "Dan Salvato LLC",
"version": "4.17.3",
"version": "4.17.4",
"description": "FrankerFaceZ is a Twitch enhancement suite.",
"license": "Apache-2.0",
"scripts": {

View file

@ -839,10 +839,10 @@ export default class Badges extends Module {
if ( use_media ) {
out.push(`@media (min-resolution: 100dpi) and (max-resolution:199dpi) { ${selector} {
background-image: url("${data.image2x});
background-image: url("${data.image2x}");
}}`);
out.push(`@media (min-resolution: 200dpi) { ${selector} {
background-image: url("${data.image4x});
background-image: url("${data.image4x}");
}}`);
}
}