diff options
author | Per Jensen <admin@perjensen-online.dk> | 2012-12-22 09:35:47 +0100 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2013-01-08 11:55:14 -0500 |
commit | b800d4721c8dccb5bd0ad6a0d793219d27cf25bd (patch) | |
tree | 60cf04e9b803094ca347bd96cb683612b6e5447d | |
parent | 693928cf9f758da348ed7f11cf43442f1efcf435 (diff) | |
download | elgg-b800d4721c8dccb5bd0ad6a0d793219d27cf25bd.tar.gz elgg-b800d4721c8dccb5bd0ad6a0d793219d27cf25bd.tar.bz2 |
Prevent distortion of group icon
-rw-r--r-- | mod/groups/views/default/groups/css.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/groups/views/default/groups/css.php b/mod/groups/views/default/groups/css.php index 20cd947f8..f475f7d9e 100644 --- a/mod/groups/views/default/groups/css.php +++ b/mod/groups/views/default/groups/css.php @@ -9,7 +9,10 @@ .groups-profile > .elgg-image { margin-right: 10px; } - +.groups-profile img { + width: 100%; + height: auto; +} .groups-stats { background: #eeeeee; padding: 5px; @@ -74,4 +77,4 @@ .elgg-menu-groups-my-status li.elgg-state-selected > a { background-color: #4690D6; color: white; -}
\ No newline at end of file +} |