mirror of
https://github.com/flarum/core.git
synced 2025-08-06 08:27:42 +02:00
Add toolbar support for admin panel (#36)
This commit is contained in:
25
extensions/markdown/less/common.less
Normal file
25
extensions/markdown/less/common.less
Normal file
@@ -0,0 +1,25 @@
|
||||
.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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user