From 55f7bf00f826e816a1bf12e21bf33152cc7c809f Mon Sep 17 00:00:00 2001 From: "E.Smith" <31170571+azlm8t@users.noreply.github.com> Date: Sun, 9 Dec 2018 17:23:11 +0000 Subject: [PATCH] ui: Enable scrollbar for dialog info, fixes #5405 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 | 2 +- src/webui/static/app/ext.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui/static/app/dvr.js b/src/webui/static/app/dvr.js index 2420f28c4..9fb069052 100644 --- a/src/webui/static/app/dvr.js +++ b/src/webui/static/app/dvr.js @@ -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 diff --git a/src/webui/static/app/ext.css b/src/webui/static/app/ext.css index aa953969c..840a3e7aa 100644 --- a/src/webui/static/app/ext.css +++ b/src/webui/static/app/ext.css @@ -842,7 +842,7 @@ /* Details in here are overridden by code */ } .dvr-details-dialog-content { - position: absolute; + position: relative; top: 0; left: 0; } -- 2.47.2