messagerie-melanie2 / Roundcube-Skin-Melanie2-Larry-Mobile

Mobile Skin for Roundcube
GNU General Public License v3.0
73 stars 18 forks source link

Formatting - settings panel - items exceeding the screen limit #1

Closed twisterbr closed 9 years ago

twisterbr commented 9 years ago

On my Galaxy S4 some items are exceeding the screen limit. See the attached image.

settings_

tpayen commented 9 years ago

This is because Roundcube is using a 2 columns HTML table for settings. This requires some css to improve the display.

Add:

#preferences-details table.propform tr,
#preferences-details table.propform td,
#preferences-details table.propform {
    width: 100%;
    overflow: hidden;
    display: block;
}

#preferences-details table.propform .ui-select {
    max-width: 100%;
    max-width: 99%;
    overflow: hidden;
}

in settings.css file seems to solve the problem

twisterbr commented 9 years ago

Yeah that did the trick. Thanks!