mirror of
https://github.com/flarum/core.git
synced 2025-07-20 08:11:27 +02:00
29 lines
656 B
Plaintext
29 lines
656 B
Plaintext
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
span.spoiler {
|
|
// Style the inline spoiler itself: a dark block, invisible font
|
|
background: #444;
|
|
color: transparent;
|
|
|
|
// Try to generically hide all possible children
|
|
* {
|
|
// Links and other interactive elements would give their presence
|
|
// away when hovering
|
|
pointer-events: none;
|
|
|
|
// Children can have special text or background colors
|
|
background: transparent;
|
|
color: transparent;
|
|
}
|
|
|
|
// Hide images visually
|
|
img {
|
|
visibility: hidden;
|
|
}
|
|
}
|