Revert "Removed an outdated workaround in dialogs for Chrome"
authorAlexander Ebert <ebert@woltlab.com>
Thu, 4 Apr 2019 09:07:29 +0000 (11:07 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Thu, 4 Apr 2019 09:07:29 +0000 (11:07 +0200)
This reverts commit c33729b9a32cc421db3495f1e695a950ff1c68dc.

wcfsetup/install/files/js/WoltLabSuite/Core/Ui/Dialog.js

index f25b31da26509ff604510c07f063d201cb711393..d43a14dc95b485b8e4aa43eb9bd784163c794298 100644 (file)
@@ -579,6 +579,16 @@ define(
                        var maximumHeight = (window.innerHeight * (_dialogFullHeight ? 1 : 0.8)) - unavailableHeight;
                        contentContainer.style.setProperty('max-height', ~~maximumHeight + 'px', '');
                        
+                       // fix for a calculation bug in Chrome causing the scrollbar to overlap the border
+                       if (Environment.browser() === 'chrome') {
+                               if (data.content.scrollHeight > maximumHeight) {
+                                       data.content.style.setProperty('margin-right', '-1px', '');
+                               }
+                               else {
+                                       data.content.style.removeProperty('margin-right');
+                               }
+                       }
+                       
                        // Chrome and Safari use heavy anti-aliasing when the dialog's width
                        // cannot be evenly divided, causing the whole text to become blurry
                        if (Environment.browser() === 'chrome' || Environment.browser() === 'safari') {