diff --git a/src/main/webapp/WEB-INF/tags/image.tag b/src/main/webapp/WEB-INF/tags/image.tag index 9a4b4a7fe..e86eb6926 100644 --- a/src/main/webapp/WEB-INF/tags/image.tag +++ b/src/main/webapp/WEB-INF/tags/image.tag @@ -28,7 +28,6 @@ - <%-- width продублирован Pale Moon и других для браузеров, не умеющих min() --%>
diff --git a/src/main/webapp/WEB-INF/tags/imageslider.tag b/src/main/webapp/WEB-INF/tags/imageslider.tag index 2b5f404a2..d5375285a 100644 --- a/src/main/webapp/WEB-INF/tags/imageslider.tag +++ b/src/main/webapp/WEB-INF/tags/imageslider.tag @@ -22,8 +22,7 @@ <%@ attribute name="additional" required="true" type="java.util.List" %> <%@ attribute name="heightLimit" required="false" type="java.lang.String" %> -<%-- width продублирован Pale Moon и других для браузеров, не умеющих min() --%> -
+
diff --git a/src/main/webapp/js/lor.js b/src/main/webapp/js/lor.js index 5c402f463..5bae5e21e 100644 --- a/src/main/webapp/js/lor.js +++ b/src/main/webapp/js/lor.js @@ -522,6 +522,18 @@ $(document).ready(function() { initCodeSpoilers(); initReactionsUI(); + // fix images on Pale Moon + $('.medium-image-container').each(function() { + if ($(this).width() == 0) { + $(this).css('width', 'var(--image-width)') + } + }); + $('.slider-parent').each(function() { + if ($(this).height() <= 48) { + $(this).css('width', 'var(--image-width)') + } + }); + $script.ready('plugins', function () { if (window.matchMedia("(min-width: 70em)").matches) { $(".msg_body .swiffy-slider").addClass("slider-nav-outside-expand").addClass("slider-nav-visible");