Hi guys,

So I decided to change the default theme to cyberpunkish.css to make this instance look different from a default lemmy instance.

If a lot of people tell me this is a shitty idea and I should not do this, I will revert it. Just wanted to give this instance a style of its own. The default theme is still there under lemmy_default.css if you prefer it.

Let me know if you have strong feelings about it, one way or the other!

  • mrmanager@lemmy.todayOPM
    link
    fedilink
    arrow-up
    3
    ·
    9 days ago

    Hmm, interesting, the sort order is themed for me. You mean here?

    And I love that idea with cyberpunk visor, will need to look into that for sure!

      • Limitless_screaming@kbin.earth
        link
        fedilink
        arrow-up
        2
        ·
        9 days ago

        That is a select element, it gets rendered by the browser and can’t be themed fully using CSS without replacing it with a custom web component.

        If you’re using Firefox, the GTK theme of your OS specifies how it and other native components (e.g. color pickers) look.

        Some aspects can be customized, but it’s a pain and doesn’t work well across different browsers.

        • Durandal@lemmy.today
          link
          fedilink
          English
          arrow-up
          1
          ·
          9 days ago

          It’s not a huge deal really. I just noticed that it’s themed for the account profile menu but not that one.

          • Limitless_screaming@kbin.earth
            link
            fedilink
            arrow-up
            1
            ·
            9 days ago

            The profile menu is a List item Li element and it contains other Li elements for it’s options.

            To avoid writing more JS than necessary and to have more semantic HTML, Select elements are used (like in this drop down), so you can simply listen to their changed event and execute code.

            But the devs could’ve slightly modified that custom drop down and used it everywhere for consistency.