Browse Source

ensure image placeholders' min width can take effect

pull/2/head
Raymond Hill 7 years ago
parent
commit
171552370a
No known key found for this signature in database GPG Key ID: 25E1490B761470C2
  1. 1
      src/js/contentscript.js

1
src/js/contentscript.js

@ -209,6 +209,7 @@ var collapser = (function() {
continue; continue;
} }
target.setAttribute(src1stProps[tag], placeholders[tag]); target.setAttribute(src1stProps[tag], placeholders[tag]);
target.style.setProperty('display', 'inline-block');
target.style.setProperty('min-width', '20px', 'important'); target.style.setProperty('min-width', '20px', 'important');
target.style.setProperty('min-height', '20px', 'important'); target.style.setProperty('min-height', '20px', 'important');
target.style.setProperty('border', placeholders.border, 'important'); target.style.setProperty('border', placeholders.border, 'important');

Loading…
Cancel
Save