clue / quasselio

Quassel I/O, the lightweight web interface for Quassel IRC in a single PHP file
5 stars 0 forks source link

Add option to show only chat messages (hide joins, quits etc.) #3

Open clue opened 6 years ago

clue commented 6 years ago

This can be implemented in pure CSS which makes this super fast. The question is if and where we want to save this setting. The interface is currently entirely stateless.

input[type=checkbox] {
    /* … */
}
input:checked ~ article {
    display: none;
}
input:checked ~ article.chat {
    display: block;
}