From: E.Smith <31170571+azlm8t@users.noreply.github.com> Date: Sun, 9 Dec 2018 17:23:11 +0000 (+0000) Subject: ui: Enable scrollbar for dialog info, fixes #5405 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55f7bf00f826e816a1bf12e21bf33152cc7c809f;p=thirdparty%2Ftvheadend.git 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. --- 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; }