Aleksander Machniak
2012-09-04 e8b9176031926532a764582812047281e4401352
Remove (too big) min-width on mail screen
5 files modified
13 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
skins/larry/addressbook.css 1 ●●●● patch | view | raw | blame | history
skins/larry/mail.css 3 ●●●● patch | view | raw | blame | history
skins/larry/styles.css 2 ●●● patch | view | raw | blame | history
skins/larry/ui.js 6 ●●●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
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)
skins/larry/addressbook.css
@@ -34,7 +34,6 @@
    position: absolute;
    top: -6px;
    left: 0;
    right: 260px;
    height: 40px;
    white-space: nowrap;
    z-index: 10;
skins/larry/mail.css
@@ -341,7 +341,6 @@
#messagetoolbar {
    position: absolute;
    top: -6px;
    right: 390px;
    left: 0;
    height: 40px;
    white-space: nowrap;
@@ -362,7 +361,7 @@
    position: absolute;
    right: 0;
    top: 0;
    width: 240px;
    width: 400px;
}
#mailpreviewtoggle {
skins/larry/styles.css
@@ -660,7 +660,7 @@
    left: 0;
    bottom: 0;
    width: 100%;
    min-width: 1150px;
    min-width: 1024px;
}
.scroller {
skins/larry/ui.js
@@ -163,6 +163,12 @@
      }
    }
    // 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); })