Viewing a single comment thread. View all comments

emma OP wrote (edited )

Reply to comment by J7383 in [META] A word on feature requests by emma

https://coinsh.red/p/Screenshot-2018-4-15_Raddle.png

For the record, this needs to be fixed so I can add more sorting/filtering options. Without a proper UI that doesn't occupy all the space, I won't be adding things like the linear view that was discussed some time ago, or options for limiting top/controversial/most commented to the last [your selection here] days.

6

J7383 wrote (edited )

For now you could rename controversial to 'heated' (and hot to 'top' or 'busy') and rename most commented to 'Active'?

Edit: realized there's already a 'top'. Could probably make that 'Ever' instead.

2

leftous wrote (edited )

So far the best I've found that works acceptably is making the overflow scroll (screenshot).

@media screen and (max-width: 767px) {
    .tabs__bar {
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .tabs__tab {
       margin-bottom: 2%;
    }
    ::-webkit-scrollbar {
        width: 0px;
        background: transparent; /* make scrollbar transparent */
    }
}

The y overflow is annoying because of the way "most commented" sorting is named. Maybe u/Dunde's suggestion would help.

2