Make inactive icon larger on library/user page

This commit is contained in:
JonnyWong16 2020-04-10 14:41:14 -07:00
commit 752c7badd2
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
2 changed files with 3 additions and 3 deletions
data/interfaces/default

View file

@ -65,7 +65,7 @@ DOCUMENTATION :: END
<div class="library-info-poster-face" style="background-image: url(${page('pms_image_proxy', data['library_thumb'], None, 80, 80)});">
% if not data['is_active']:
<span class="inactive-library-tooltip" data-toggle="tooltip" title="Library not on Plex server">
<i class="fa fa-lg fa-exclamation-triangle"></i>
<i class="fa fa-2x fa-exclamation-triangle"></i>
</span>
% endif
</div>
@ -73,7 +73,7 @@ DOCUMENTATION :: END
<div class="library-info-poster-face svg-icon library-${data['section_type']}">
% if not data['is_active']:
<span class="inactive-library-tooltip" data-toggle="tooltip" title="Library not on Plex server">
<i class="fa fa-lg fa-exclamation-triangle"></i>
<i class="fa fa-2x fa-exclamation-triangle"></i>
</span>
% endif
</div>

View file

@ -54,7 +54,7 @@ DOCUMENTATION :: END
<div class="user-info-poster-face" style="background-image: url(${data['user_thumb']});">
% if not data['is_active']:
<span class="inactive-user-tooltip" data-toggle="tooltip" title="User not on Plex server">
<i class="fa fa-lg fa-exclamation-triangle"></i>
<i class="fa fa-2x fa-exclamation-triangle"></i>
</span>
% endif
</div>