2021-05-10 17:35:22 -04:00
|
|
|
.MarkdownToolbar {
|
2021-05-12 20:28:40 -04:00
|
|
|
display: inline-block;
|
2021-05-10 17:35:22 -04:00
|
|
|
}
|
2020-03-01 09:52:30 -05:00
|
|
|
|
2020-04-24 11:58:38 -04:00
|
|
|
span.spoiler {
|
2020-04-24 22:10:36 +02:00
|
|
|
// Style the inline spoiler itself: a dark block, invisible font
|
2020-04-24 11:58:38 -04:00
|
|
|
background: #444;
|
|
|
|
color: transparent;
|
2020-04-24 22:10:36 +02:00
|
|
|
|
|
|
|
// Try to generically hide all possible children
|
2020-04-24 11:58:38 -04:00
|
|
|
* {
|
2020-04-24 22:10:36 +02:00
|
|
|
// Links and other interactive elements would give their presence
|
|
|
|
// away when hovering
|
2020-04-24 11:58:38 -04:00
|
|
|
pointer-events: none;
|
2020-04-24 22:10:36 +02:00
|
|
|
|
|
|
|
// Children can have special text or background colors
|
|
|
|
background: transparent;
|
2020-04-24 11:58:38 -04:00
|
|
|
color: transparent;
|
|
|
|
}
|
2020-04-24 22:10:36 +02:00
|
|
|
|
|
|
|
// Hide images visually
|
2020-04-24 11:58:38 -04:00
|
|
|
img {
|
|
|
|
visibility: hidden;
|
2020-03-01 09:52:30 -05:00
|
|
|
}
|
|
|
|
}
|