mirror of
https://github.com/flarum/framework.git
synced 2024-12-01 14:20:47 +08:00
26 lines
533 B
Plaintext
26 lines
533 B
Plaintext
.MarkdownToolbar {
|
|
display: inline-block;
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|