mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 15:56:07 -07:00
Merge pull request #1366 from felixbuenemann/fix-ipv6-display-in-activity
Fix display of IPv6 addresses in activity panes
This commit is contained in:
commit
533b8076e4
2 changed files with 7 additions and 2 deletions
|
@ -973,7 +973,7 @@ a .users-poster-face:hover {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
max-width: 140px;
|
max-width: 125px;
|
||||||
}
|
}
|
||||||
.dashboard-activity-info-time {
|
.dashboard-activity-info-time {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -3102,6 +3102,7 @@ div.dataTables_info {
|
||||||
border-left-color: #fff;
|
border-left-color: #fff;
|
||||||
}
|
}
|
||||||
.tooltip-inner {
|
.tooltip-inner {
|
||||||
|
max-width: 250px;
|
||||||
color: #000;
|
color: #000;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
|
@ -305,7 +305,11 @@ DOCUMENTATION :: END
|
||||||
% endif
|
% endif
|
||||||
<span id="location-${sk}">${data['location'].upper()}</span>:
|
<span id="location-${sk}">${data['location'].upper()}</span>:
|
||||||
% if data['ip_address'] != 'N/A':
|
% if data['ip_address'] != 'N/A':
|
||||||
<span class="ip-container"><span class="ip-address">${data['ip_address']}</span></span>
|
% if len(data['ip_address']) > 20:
|
||||||
|
<span class="ip-container"><span class="ip-address" data-toggle="tooltip" title="${data['ip_address']}">${data['ip_address']}</span></span>
|
||||||
|
% else:
|
||||||
|
<span class="ip-container"><span class="ip-address">${data['ip_address']}</span></span>
|
||||||
|
% endif
|
||||||
% if data['relayed']:
|
% if data['relayed']:
|
||||||
<span data-toggle="tooltip" title="Plex Relay"><i class="fa fa-exclamation-circle"></i></span>
|
<span data-toggle="tooltip" title="Plex Relay"><i class="fa fa-exclamation-circle"></i></span>
|
||||||
% else:
|
% else:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue