diff --git a/data/interfaces/default/css/tautulli.css b/data/interfaces/default/css/tautulli.css index a3865497..59182e37 100644 --- a/data/interfaces/default/css/tautulli.css +++ b/data/interfaces/default/css/tautulli.css @@ -711,7 +711,6 @@ fieldset[disabled] .form-control { box-shadow: 0 0 4px rgba(0,0,0,.3),inset 0 0 0 1px rgba(255,255,255,.1); } .users-poster-face { - overflow: hidden; float: left; background-size: cover; background-position: center; @@ -3119,6 +3118,20 @@ div.dataTables_info { font-weight: bold; border-radius: 2px; } +.inactive-library-tooltip, +.inactive-user-tooltip { + display: inline-block; + position: relative; + width: 100%; + height: 100%; +} +.inactive-library-tooltip i.fa, +.inactive-user-tooltip i.fa { + position: absolute; + right: 0; + bottom: 0; + text-shadow: 0 0 2px rgba(0,0,0,.5); +} .history-thumbnail-popover { z-index: 2000; padding: 0; @@ -3808,9 +3821,8 @@ a:hover .overlay-refresh-image:hover { } .svg-icon { - padding: 10px; + background-size: calc(100% - 20px) calc(100% - 20px) !important; background-origin: content-box !important; - background-size: contain !important; background-repeat: no-repeat !important; background-position: center !important; } diff --git a/data/interfaces/default/js/tables/users.js b/data/interfaces/default/js/tables/users.js index fdbc0449..58918d46 100644 --- a/data/interfaces/default/js/tables/users.js +++ b/data/interfaces/default/js/tables/users.js @@ -59,10 +59,12 @@ users_list_table_options = { "targets": [1], "data": "user_thumb", "createdCell": function (td, cellData, rowData, row, col) { + var inactive = ''; + if (!rowData['is_active']) { inactive = ''; } if (cellData === '') { - $(td).html('
'); + $(td).html('
' + inactive + '
'); } else { - $(td).html('
'); + $(td).html('
' + inactive + '
'); } }, "orderable": false, diff --git a/data/interfaces/default/user.html b/data/interfaces/default/user.html index d25cdf51..3e0bf406 100644 --- a/data/interfaces/default/user.html +++ b/data/interfaces/default/user.html @@ -51,7 +51,13 @@ DOCUMENTATION :: END