diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-05-30 10:40:43 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-05-30 10:40:43 +0200 |
commit | dcf23b931677a4016fbfc1d078b8e0943d187917 (patch) | |
tree | a06056e62e973370f3e6661c317ccd8fcc2bb74c | |
parent | 96077f631e179ba7648c62bfebd643a86627a0a5 (diff) |
Make folders with unread messages in subfolders bold again (#1486793); update CHANGELOG
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | skins/larry/mail.css | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -1,6 +1,8 @@ CHANGELOG Roundcube Webmail =========================== +- Make folders with unread messages in subfolders bold again (#1486793) +- Abbreviate long attachment file names with ellipsis (#1488499) - Fix html2text conversion of strong|b|a|th|h tags when used in upper case - Add listcontrols template container in Larry skin (#1488498) - Fix host autoselection when default_host is an array (#1488495) diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 885efc9c2..c0ceab076 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -186,6 +186,10 @@ a.iconbutton.threadmode.selected { background-position: 6px -1723px; } +#mailboxlist li.unread { + font-weight: bold; +} + #mailboxlist li.virtual > a { color: #aaa; } |