framework/extensions/markdown/less/forum.less
Alexander Skvortsov 0c0b3b2678 Fix display
2021-05-12 20:28:40 -04:00

27 lines
534 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;
}
}