1
0
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:
Sujit Kumar
2022-03-10 06:23:33 +05:30
committed by GitHub
parent 547cce9799
commit 16d5cc11e3
9 changed files with 120 additions and 107 deletions

View 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;
}
}