mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 18:56: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:
parent
674a0e78f6
commit
5c5dc20c6d
@ -178,6 +178,8 @@ div.entry:hover .edit, div.entry:hover .close, div.entry:hover .reload {
|
|||||||
#overlay-edit {
|
#overlay-edit {
|
||||||
outline: none;
|
outline: none;
|
||||||
width: 500px;
|
width: 500px;
|
||||||
|
height: auto;
|
||||||
|
max-height: 120%;
|
||||||
margin-%LEFT_STR%: auto;
|
margin-%LEFT_STR%: auto;
|
||||||
margin-%RIGHT_STR%: auto;
|
margin-%RIGHT_STR%: auto;
|
||||||
margin-top: 5%;
|
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);
|
box-shadow: 0 0 0 1px rgba(255,255,255, 0.6);
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
|
overflow-x: hidden;
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#overlay-edit img {
|
#overlay-edit img {
|
||||||
|
Loading…
Reference in New Issue
Block a user