blob: fe9d89ba5fc8e595d4bd88aa03f8f98a6ea4e20e (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | /* ==UserStyle==
@name        Highlight hovered message
@description Adds a background and underline to the Discord message under the mouse cursor
@match       https://discord.com/*
==/UserStyle== */
div[class*=cozyMessage]:hover {
    background-color: #ccc1;
    box-shadow: 0 1px 0px #eee5;
}
 |