From 5c5dc20c6dd5dda10117e91bf3a23326e28bcc87 Mon Sep 17 00:00:00 2001 From: Anmol Gautam Date: Fri, 16 Mar 2018 16:11:49 +0100 Subject: [PATCH] SpeedDial: Add 'overflow-y: auto' for '#overlay-edit' Summary: When Falkon is not in maximized state, the edit overlay didn't display full content (displays just the image) due to missing `overflow-y: auto` in `#overlay-edit` in speed-dial. Reviewers: drosca, #falkon Reviewed By: drosca, #falkon Tags: #falkon Differential Revision: https://phabricator.kde.org/D11317 --- src/lib/data/html/speeddial.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/data/html/speeddial.html b/src/lib/data/html/speeddial.html index ca728808e..c7139d803 100644 --- a/src/lib/data/html/speeddial.html +++ b/src/lib/data/html/speeddial.html @@ -178,6 +178,8 @@ div.entry:hover .edit, div.entry:hover .close, div.entry:hover .reload { #overlay-edit { outline: none; width: 500px; + height: auto; + max-height: 120%; margin-%LEFT_STR%: auto; margin-%RIGHT_STR%: auto; margin-top: 5%; @@ -187,6 +189,8 @@ div.entry:hover .edit, div.entry:hover .close, div.entry:hover .reload { box-shadow: 0 0 0 1px rgba(255,255,255, 0.6); padding: 15px; padding-bottom: 0; + overflow-x: hidden; + overflow-y: auto; } #overlay-edit img {