diff options
| author | cash <cash.costello@gmail.com> | 2013-05-28 18:20:50 -0400 | 
|---|---|---|
| committer | cash <cash.costello@gmail.com> | 2013-05-28 18:20:50 -0400 | 
| commit | f766c76ba915af714bf6a8f1c71abfc9f7b5f097 (patch) | |
| tree | 357d89ae138b17ae495c80bdf550f0f05516c602 | |
| parent | e630f8ceb980ab40fbab57145eae68f592034266 (diff) | |
| download | elgg-f766c76ba915af714bf6a8f1c71abfc9f7b5f097.tar.gz elgg-f766c76ba915af714bf6a8f1c71abfc9f7b5f097.tar.bz2  | |
Fixes #5430 adds work around for IE8 for jumping avatars
| -rw-r--r-- | views/default/css/ie.php | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/views/default/css/ie.php b/views/default/css/ie.php index 4bddd4d55..34ececa89 100644 --- a/views/default/css/ie.php +++ b/views/default/css/ie.php @@ -6,3 +6,11 @@  .elgg-avatar {  	display: block;  } + +/* ie8 adds space to the top of .elgg-gallery which causes jumpiness if this is display: block; */ +.elgg-gallery .elgg-avatar > a > img { +    display: inline-block; +} +.elgg-gallery .elgg-avatar > .elgg-icon-hover-menu { +    bottom: 4px; +}  | 
