1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 02:36:34 +01:00

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
This commit is contained in:
Anmol Gautam 2018-03-16 16:11:49 +01:00 committed by David Rosca
parent 674a0e78f6
commit 5c5dc20c6d
No known key found for this signature in database
GPG Key ID: EBC3FC294452C6D8

View File

@ -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 {