popup many height to validate button and no scroll

popup many height to validate button and no scroll

aimericaimeric Posts: 5Questions: 2Answers: 0

Hi,
when add new row in editor, my popup is too long to validate and no scroll is activate
see screen.

please are you idea?
thx

Answers

  • allanallan Posts: 61,690Questions: 1Answers: 10,101 Site admin

    Can you link to the page showing the issue please? Editor's lightbox should not expand beyond the boundary of the window.

    Thanks,
    Allan

  • Rob BrunRob Brun Posts: 56Questions: 2Answers: 14
    edited April 2017

    Hi aimeric, have you tried using a multi-column lay out for your editor? https://editor.datatables.net/examples/styling/columns.html

    try adding this to the bottom of your css

    div.DTE_Body div.DTE_Body_Content div.DTE_Field {
        width: 50%;
        padding: 5px 20px;
        box-sizing: border-box;
    }
     
    div.DTE_Body div.DTE_Form_Content {
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
  • aimericaimeric Posts: 5Questions: 2Answers: 0

    Hi,
    Thank you for your answers.
    I finally used the display of an additional scroll whith :

    div.DTED.DTED_Lightbox_Wrapper  {
                overflow-y: auto;
                padding: 55px 5px;
                
            }
    

    If you have another solution...
    Look at what this gives in attachement

This discussion has been closed.