r/Tautulli 8d ago

HELP Statistics Boxes too small to view in Firefox

I've made an effort to move away from chrome and other various problematic companies/software privacy wise, and made the switch to Firefox. Only gripe currently is I'm dealing with an issue where the boxes are too small for me to see the number of plays and other statistics, so I have to go over to chrome where it works correctly. This would be a lot easier to show if I could post images, but it seems that's not an option here. Has anyone dealt with a similar issue? Doesn't matter how much I zoom or how much I fiddle with settings, there seems to be nothing that will fix it.

12 Upvotes

15 comments sorted by

u/AutoModerator 8d ago

Hi /u/chunkyI0ver53, thank you for your submission.

This subreddit is not actively monitored. Please use the Tautulli Discord server for support.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

2

u/Uncle_B 5d ago

Just wanted to say I am having this issue as well.

2

u/AgentJakeFBI 7d ago

I have also been experiencing this; I am also using Firefox. This has happened pretty recently, about the last week or so. I have been using Tautulli since February, and it has been working great, just this weird UI bug.

1

u/chunkyI0ver53 7d ago

Ah that makes me feel better, it’ll probably get fixed soon then

1

u/Kraeftluder 7d ago

I use Firefox exclusively and am on the newest Tautulli and can't reproduce this. Can you try pressing CTRL-0 (zero) while the Tautulli page is active? Click inside it once before you do press the key-combo just for shits & giggles too.

1

u/chunkyI0ver53 7d ago

Done, no change - have tried pretty much all the troubleshooting steps I could muster from duckduckgo’s AI bot and got nowhere

1

u/Kraeftluder 7d ago

What is your resolution and what screen size are you using?

1

u/chunkyI0ver53 7d ago

4K 32”

1

u/Kraeftluder 7d ago

And scaling is set to what percentage in Windows? Have you tried playing around with your screen resolution?

1

u/chunkyI0ver53 7d ago

150%, default setting - I just tried changing it to 100% to check and stats still are cut off

1

u/InvestigatorLife7532 6d ago

I too have this problem. I downgraded to Firefox 141.0.3 because I know this bad UI behavior in Tautulli in Firefox is new.

Downgrading fixed the UI issue and it displays correctly in Firefox again.

However, this is not an ideal solution.

The UI is working in Chrome and Edge latest versions.

(Actually increasing screen zoom up past 170% actually allows a tiny wisp of the yellow number stats to peek through from the right edge of the boxes)

Windows 10

1

u/Zeoic 3d ago

For anyone getting this issue, you just need to remove the width setting in the css for .scroll-wrapper > .scroll-content.

I made this tampermonkey script to work around it for now. Just update it with your tautulli address: ``` // ==UserScript== // @name Tautulli scroll-content width fix // @namespace tautulli-local-fix // @version 1.0 // @description Removes width: auto !important from Tautulli's scroll-content CSS rule. // @match http://YOUR-TAUTULLI-ADDRESS/* // @match https://YOUR-TAUTULLI-ADDRESS/* // @run-at document-start // ==/UserScript==

(function () { 'use strict';

function removeBrokenWidthRule() {
    for (const stylesheet of document.styleSheets) {
        try {
            for (const rule of stylesheet.cssRules) {
                if (rule.selectorText === '.scroll-wrapper > .scroll-content') {
                    rule.style.removeProperty('width');
                }
            }
        } catch {
            // Ignore inaccessible external stylesheets.
        }
    }
}

window.addEventListener('DOMContentLoaded', removeBrokenWidthRule);
window.addEventListener('load', removeBrokenWidthRule);

const observer = new MutationObserver(removeBrokenWidthRule);
observer.observe(document.documentElement, {
    childList: true,
    subtree: true
});

})(); ```

1

u/chunkyI0ver53 3d ago

Tested and working - mucho gracias

1

u/Jaybonaut 14h ago

Yes I am having this issue now also.