diff --git a/media/css/reader.css b/media/css/reader.css index c62029869..536e88997 100644 --- a/media/css/reader.css +++ b/media/css/reader.css @@ -7707,6 +7707,11 @@ form.opml_import_form input { max-height: 48px; border-radius: 3px; } +.NB-profile-badge.NB-profile-badge-embiggen .NB-profile-badge-photo-wrapper { + width: 108px; + height: 108px; + vertical-align: middle; +} .NB-profile-badge.NB-profile-badge-embiggen .NB-profile-badge-photo img { max-width: 108px; max-height: 108px; diff --git a/media/js/newsblur/views/social_profile_badge.js b/media/js/newsblur/views/social_profile_badge.js index 35fb05c68..3e19721a8 100644 --- a/media/js/newsblur/views/social_profile_badge.js +++ b/media/js/newsblur/views/social_profile_badge.js @@ -29,7 +29,7 @@ NEWSBLUR.Views.SocialProfileBadge = Backbone.View.extend({ var profile = this.model; this.$el.html($.make('table', {}, [ $.make('tr', [ - $.make('td', [ + $.make('td', { className: 'NB-profile-badge-photo-wrapper' }, [ $.make('div', { className: 'NB-profile-badge-photo' }, [ $.make('img', { src: profile.photo_url({'size': this.options.photo_size}) }) ])