summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2012-06-20 11:59:14 +0200
committerThomas Bruederli <thomas@roundcube.net>2012-06-20 12:00:20 +0200
commitfd41f7d500cbd80ed27c706a7f966934efc3dea7 (patch)
tree722796d09a6e8a730f577c44066cac54ad09c09e /skins
parente186a7ac8078641cab31c06e807bf696830aa153 (diff)
Better icons with distinct shapes for priority columns (#1488377); fix overflow in decorated drop-downs
Diffstat (limited to 'skins')
-rw-r--r--skins/larry/images/listicons.pngbin27008 -> 27068 bytes
-rw-r--r--skins/larry/mail.css13
-rw-r--r--skins/larry/styles.css3
-rw-r--r--skins/larry/ui.js2
4 files changed, 8 insertions, 10 deletions
diff --git a/skins/larry/images/listicons.png b/skins/larry/images/listicons.png
index 809358cfd..9554658b6 100644
--- a/skins/larry/images/listicons.png
+++ b/skins/larry/images/listicons.png
Binary files differ
diff --git a/skins/larry/mail.css b/skins/larry/mail.css
index b738dfef3..a749c6d12 100644
--- a/skins/larry/mail.css
+++ b/skins/larry/mail.css
@@ -491,25 +491,20 @@ a.iconbutton.threadmode.selected {
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 {
diff --git a/skins/larry/styles.css b/skins/larry/styles.css
index 3c061352b..49e39e361 100644
--- a/skins/larry/styles.css
+++ b/skins/larry/styles.css
@@ -1487,6 +1487,9 @@ a.dropdownselector .handle {
margin: -1px 0;
padding-top: 5px;
min-height: 20px;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
}
select.decorated {
diff --git a/skins/larry/ui.js b/skins/larry/ui.js
index be0ca6aa6..32cf467d2 100644
--- a/skins/larry/ui.js
+++ b/skins/larry/ui.js
@@ -186,7 +186,7 @@ function rcube_mail_ui()
.css('position', 'absolute')
.offset(select.position())
.insertAfter(select)
- .children().width(select.outerWidth() - 40);
+ .children().width(select.outerWidth() - 10);
select.parent().css('position', 'relative');
});