diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-07-13 20:31:15 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-07-13 20:31:15 +0200 |
commit | 7938312aaa802122e7740bcd789b8469919bc875 (patch) | |
tree | 1e9f7216da454036733eae390c0786fafc2abef2 /skins/larry/mail.css | |
parent | 384948886c4a1bedb17318af63c944c33ae0b3b6 (diff) |
Show contact photos in mail view and preview
Diffstat (limited to 'skins/larry/mail.css')
-rw-r--r-- | skins/larry/mail.css | 41 |
1 files changed, 38 insertions, 3 deletions
diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 3fe451c0d..695697f6b 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -811,7 +811,7 @@ div.hide-headers { } #all-headers { - position: relative; + position: relative; margin: 0 10px; padding: 0; height: 180px; @@ -837,7 +837,7 @@ div.hide-headers { position: relative; height: auto; margin: 0 8px 0 0; - padding: 0 0 6px 26px; + padding: 0 0 6px 72px; border-bottom: 2px solid #f0f0f0; } @@ -845,12 +845,47 @@ div.hide-headers { padding: 8px 8px 2px 0; } +#messagepreviewheader #contactphoto { + display: block; + position: absolute; + top: 11px; + left: 30px; + width: 32px; + height: 32px; + overflow: hidden; + background: url(images/contactpic_32px.png) center center no-repeat #fff; + border-radius: 3px; +} + +#messagepreviewheader #contactphoto img { + width: 32px; + height: auto; + border-radius: 3px; +} + +#messageheader #contactphoto { + display: block; + position: absolute; + top: 40px; + right: 10px; + width: 48px; + height: 48px; + overflow: hidden; + border-radius: 4px; +} + +#messageheader #contactphoto img { + width: 48px; + height: auto; + border-radius: 4px; +} + #messagepreviewheader #countcontrols, #messageheader #countcontrols { position: absolute; top: 8px; right: 8px; - width: 18em; + width: 20em; text-align: right; white-space: nowrap; } |