]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
ui: Enable scrollbar for dialog info, fixes #5405
authorE.Smith <31170571+azlm8t@users.noreply.github.com>
Sun, 9 Dec 2018 17:23:11 +0000 (17:23 +0000)
committerJaroslav Kysela <perex@perex.cz>
Mon, 10 Dec 2018 20:06:22 +0000 (21:06 +0100)
When the dvr info dialog has a lot of text it was overflowing
on to the buttons in the bbar.

src/webui/static/app/dvr.js
src/webui/static/app/ext.css

index 2420f28c46287cdbf267766f1b6b9d30bb1edcff..9fb069052da0c01ce85b85e125fbe0f0e3395304 100644 (file)
@@ -233,7 +233,7 @@ tvheadend.dvrDetails = function(grid, index) {
           fanart_div.applyStyles({
               'background' : 'url(' + fanart + ') center center no-repeat',
               'opacity': 0.15,
-              'position': 'relative',
+              'position': 'absolute',
               'width' : '100%',
               'height': '100%',
               // This causes background image to scale on css3 with aspect ratio, image
index aa953969c6731cc3deeb32092a7aac59abd80664..840a3e7aa8e2db506beb910799cb0f8bac3856d5 100644 (file)
     /* Details in here are overridden by  code */
 }
 .dvr-details-dialog-content {
-    position: absolute;
+    position: relative;
     top: 0;
     left: 0;
 }