1
0
mirror of https://github.com/flarum/core.git synced 2025-08-09 01:46:35 +02:00

Hide mentions in inline spoilers

Fixes #2033
This commit is contained in:
Matthew Kilgore
2020-03-01 09:52:30 -05:00
parent 990201cb95
commit 8a71c6f17d
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
.PostMention, .UserMention {
.spoiler & {
background: #444;
color: transparent;
padding: 0;
}
}