mirror of
https://github.com/open-webui/open-webui.git
synced 2026-09-07 08:27:05 +00:00
refac
This commit is contained in:
parent
65834432a3
commit
f485309fd6
1 changed files with 7 additions and 2 deletions
|
|
@ -260,10 +260,15 @@ select {
|
|||
display: none;
|
||||
}
|
||||
|
||||
/* Hide leaked Mermaid temp containers if render cleanup misses */
|
||||
/* Hide leaked Mermaid temp containers if render cleanup misses.
|
||||
Use visibility:hidden (not display:none) so mermaid can still
|
||||
measure the SVG layout before extracting its HTML. */
|
||||
body > div[id^='dmermaid-'],
|
||||
body > iframe[id^='imermaid-'] {
|
||||
display: none !important;
|
||||
position: fixed !important;
|
||||
visibility: hidden !important;
|
||||
height: 0 !important;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
|
||||
.scrollbar-hidden:active::-webkit-scrollbar-thumb,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue