Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions app/helpers/mascot_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# frozen_string_literal: true

module MascotHelper
def mascot_url
full_asset_url(instance_presenter.mascot&.file&.url || asset_pack_path('media/images/elephant_ui_plane.svg'))
end

private

def instance_presenter
@instance_presenter ||= InstancePresenter.new
end
end
13 changes: 11 additions & 2 deletions app/javascript/styles/mastodon/modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,19 @@
flex-direction: column;
justify-content: flex-end;

> * {
> div {
flex: 1;
max-height: 235px;
background: url('../images/elephant_ui_plane.svg') no-repeat left bottom / contain;
position: relative;

img {
max-height: 100%;
max-width: 100%;
height: 100%;
position: absolute;
bottom: 0;
left: 0;
}
}
}

Expand Down
1 change: 1 addition & 0 deletions app/views/layouts/modal.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,6 @@
.container-alt= yield
.modal-layout__mastodon
%div
%img{alt:'', draggable:'false', src:"#{mascot_url}"}

= render template: 'layouts/application'