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