Thomas Bruederli
2012-06-20 7dad5945a0c70bc8388a6bd818f464ce5140079c
Better icons with distinct shapes for priority columns (#1488377); fix overflow in decorated drop-downs
5 files modified
19 ■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
skins/larry/images/listicons.png patch | view | raw | blame | history
skins/larry/mail.css 13 ●●●●● patch | view | raw | blame | history
skins/larry/styles.css 3 ●●●●● patch | view | raw | blame | history
skins/larry/ui.js 2 ●●● patch | view | raw | blame | history
CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Better icons with distinct shapes for priority columns (#1488377)
- Show dedicated icon for multipart/report messages (#1488524)
- Properly hide text of icon links/buttons (#1488534)
- Fix handling of unitless CSS size values in HTML message (#1488535)
skins/larry/images/listicons.png

skins/larry/mail.css
@@ -491,25 +491,20 @@
    background-position: -24px -1116px;
}
#messagelist tr td.priority {
    padding-right: 0;
    text-align: right;
}
#messagelist tr td.priority span.prio5 {
    background-position: right -1905px;
    background-position: 0 -1905px;
}
#messagelist tr td.priority span.prio4 {
    background-position: right -1885px;
    background-position: 0 -1885px;
}
#messagelist tr td.priority span.prio2 {
    background-position: right -1865px;
    background-position: 0 -1865px;
}
#messagelist tr td.priority span.prio1 {
    background-position: right -1845px;
    background-position: 0 -1845px;
}
#messagelist tbody tr td.flag span.flagged {
skins/larry/styles.css
@@ -1487,6 +1487,9 @@
    margin: -1px 0;
    padding-top: 5px;
    min-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
select.decorated {
skins/larry/ui.js
@@ -184,7 +184,7 @@
        .css('position', 'absolute')
        .offset(select.position())
        .insertAfter(select)
        .children().width(select.outerWidth() - 40);
        .children().width(select.outerWidth() - 10);
      select.parent().css('position', 'relative');
    });