Skip to content

Sudonix and fediverse

Solved Customisation

Did this solution help you?
Did you find the suggested solution useful? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation 💗

Related Topics
  • NodeBB recent cards customisation

    Solved Customisation
    3
    2 Votes
    3 Posts
    62 Views

    @phenomlab thank you very much for the assistance Mark, massively appreciated as always.

    The great thing about this is it’s all documented for other NodeBB users that come looking for solutions 😃.

    Looks far better 🤝👍🏻.

  • CSS code customization for the link preview plugin

    Solved Customisation
    4
    3 Votes
    4 Posts
    547 Views

    @crazycells said in CSS code customization for the link preview plugin:

    does OGProxy show the pdf previews as well?

    Not yet, but it could with a bit of additional code.

  • Page control arrows for PWA

    Solved Customisation
    27
    25 Votes
    27 Posts
    1k Views

    @crazycells it is, yes - I think I’ll leave it as there is no specific PWA CSS classes I know of. Well, you could use something like the below, but this means multiple CSS files for different operating systems.

    /** * Determine the mobile operating system. * This function returns one of 'iOS', 'Android', 'Windows Phone', or 'unknown'. * * @returns {String} */ function getMobileOperatingSystem() { var userAgent = navigator.userAgent || navigator.vendor || window.opera; // Windows Phone must come first because its UA also contains "Android" if (/windows phone/i.test(userAgent)) { return "Windows Phone"; } if (/android/i.test(userAgent)) { return "Android"; } if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) { return "iOS"; } return "unknown"; // return “Android” - one should either handle the unknown or fallback to a specific platform, let’s say Android }

    Once you’re in that rabbit hole, it’s impossible to get out of it.

  • how to hide "moved" badge with CSS?

    Solved Customisation
    12
    3 Votes
    12 Posts
    403 Views

    @crazycells ah, I see. That makes sense.

  • Ubuntu Upgrade All Packages

    Solved Linux
    3
    3 Votes
    3 Posts
    342 Views

    @phenomlab Upgraded, everything works 🙂

  • 1 Votes
    2 Posts
    229 Views

    Closing this in favour of https://sudonix.com/topic/357/post-style-view/28

  • CSS codes for fa-info icon

    Solved Customisation
    9
    6 Votes
    9 Posts
    602 Views

    I have just figured it out…

    it can be targeted with text-decoration-color:

    I was mistakenly using color

  • Nav Drop-down [Sudonix]

    Moved Bugs
    3
    1 Votes
    3 Posts
    310 Views

    @phenomlab said in Nav Drop-down [Sudonix]:

    @jac Fixed

    d2e5410b-fa82-4fc9-a861-7913d3c560ab-image.png

    Thanks for reporting.

    Thanks mate, not a problem 😁.