diff options
author | Tomas Popela <tpopela@redhat.com> | 2014-07-16 16:55:48 +0800 |
---|---|---|
committer | Tomas Popela <tpopela@redhat.com> | 2014-07-16 16:56:56 +0800 |
commit | 968a7477c72124fc0f7af837b4894db6ee4553d2 (patch) | |
tree | f65c61ba0d735d2f686017905bbb3be799a2430c /data | |
parent | 65e07523570f20a4500bc7c1ff8acf7c4dd36a03 (diff) | |
download | gsoc2013-evolution-968a7477c72124fc0f7af837b4894db6ee4553d2.tar gsoc2013-evolution-968a7477c72124fc0f7af837b4894db6ee4553d2.tar.gz gsoc2013-evolution-968a7477c72124fc0f7af837b4894db6ee4553d2.tar.bz2 gsoc2013-evolution-968a7477c72124fc0f7af837b4894db6ee4553d2.tar.lz gsoc2013-evolution-968a7477c72124fc0f7af837b4894db6ee4553d2.tar.xz gsoc2013-evolution-968a7477c72124fc0f7af837b4894db6ee4553d2.tar.zst gsoc2013-evolution-968a7477c72124fc0f7af837b4894db6ee4553d2.zip |
Bug 732892 - Scale-down contact images in message preview
Set the maximal width and height of the contact image to 96 px. Also do
the same in the contact preview in addressbook.
Diffstat (limited to 'data')
-rw-r--r-- | data/webview.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/data/webview.css b/data/webview.css index 6a5eb1b00f..5c0877c916 100644 --- a/data/webview.css +++ b/data/webview.css @@ -23,6 +23,11 @@ span.navigable, div.navigable, p.navigable { color: #003399; } +img#__evo-contact-photo { + max-width: 96px; + max-height: 96px; +} + img.navigable { cursor: pointer; margin-right: 4px; |