With my poor eyesight it is like playing mouse hunt to click the tiny collapse comment button. Are there extensions or user scripts to make the entire comment clickable?

  • @rtxn
    link
    English
    5
    edit-2
    1 year ago

    If you can install a userstyle, this CSS rule seems to work well. It enlarges the icon-only buttons on comments and the text editor:

    .btn-sm {
        font-size: x-large;
    }
    

    What browser are you on?

      • @rtxn
        link
        English
        1
        edit-2
        1 year ago

        Then you can use the Stylus addon (not Stylish, it’s apparently spyware) to load the userstyle. Once you’ve installed the addon, open its menu and click on “Manage”. On the left side panel, under “Actions”, find “Write new style” to open the editor. Still on the left panel, click on “Import” and copy-paste the following:

        @-moz-document domain("lemmy.world") {
        .comment-node .flex-wrap .btn-sm {
            font-size: large;
            border: 1px solid;
            margin: 0.2em;
        }
        }
        

        Give it a name, save it, and it should be applied immediately.

        Unfortunately Stylus isn’t available for mobile, but you can use wefwef.app as an alternative web front-end. It is designed handheld-first, the buttons are much nicer, and you can collapse comment threads by tapping on the text.