Remove (too big) min-width on mail screen
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Remove (too big) min-width on mail screen |
| | | - Add full headers view in message preview window (#1488538) |
| | | - Fix message display page issues - unified with message preview (#1488590, #1488642) |
| | | - Fix identity selection on reply (#1488101) |
| | |
| | | position: absolute; |
| | | top: -6px; |
| | | left: 0; |
| | | right: 260px; |
| | | height: 40px; |
| | | white-space: nowrap; |
| | | z-index: 10; |
| | |
| | | #messagetoolbar { |
| | | position: absolute; |
| | | top: -6px; |
| | | right: 390px; |
| | | left: 0; |
| | | height: 40px; |
| | | white-space: nowrap; |
| | |
| | | position: absolute; |
| | | right: 0; |
| | | top: 0; |
| | | width: 240px; |
| | | width: 400px; |
| | | } |
| | | |
| | | #mailpreviewtoggle { |
| | |
| | | left: 0; |
| | | bottom: 0; |
| | | width: 100%; |
| | | min-width: 1150px; |
| | | min-width: 1024px; |
| | | } |
| | | |
| | | .scroller { |
| | |
| | | } |
| | | } |
| | | |
| | | // set min-width to show all toolbar buttons |
| | | var screen = $('.minwidth'); |
| | | if (screen.length) { |
| | | screen.css('min-width', $('.toolbar').width() + $('#quicksearchbar').parent().width() + 20); |
| | | } |
| | | |
| | | // turn a group of fieldsets into tabs |
| | | $('.tabbed').each(function(idx, elem){ init_tabs(elem); }) |
| | | |