I’m using the Proton theme of TST, and I really want these X buttons to only appear on hover. I know that’s possible: It’s how the Xs function in the Sidebar theme of TST. However, I don’t like the Sidebar theme otherwise.

Does anyone know how to change the TST Proton theme to make the X button only appear on hover?

Thank you!

  • Jumuta@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    7 months ago

    follow the live testing guide here

    use the remote debugging thing to find the X element, then add something like

    .my_x_button's_class {
        opacity: 0 !important;
    }
    .my_x_button's_class:hover {
        opacity: 1 !important;
    }
    

    to userchrome.css