squidfunk / mkdocs-material

Documentation that simply works
https://squidfunk.github.io/mkdocs-material/
MIT License
20.24k stars 3.47k forks source link

Wrong Theming for Mermaid #5296

Closed Commandcracker closed 1 year ago

Commandcracker commented 1 year ago

Context

As the text getting out of bounds from my previous issue https://github.com/squidfunk/mkdocs-material/issues/5252 was resolved by updating mkdocs-material, I created this issue that only includes theming related things.

Description

Related links

Links are provided in the description.

Use Cases

Better Visibility

Visuals

grafik grafik

sequenceDiagram
    autonumber
    actor Client
    box rgb(33,66,99) Server
        participant Sanic
        participant YT-DLP
        participant Cache
        participant FFmpeg
        participant Sanjuuni
    end
    Note over Cache: Folder on server
    Note over Sanic: Web server
    Client-)Sanic: Sends a media request
    Note over Sanic: If the media is from spotify<br/>use spotipy to get information to<br/>create a serch term
    Sanic--)YT-DLP: Get information about the media
    Sanic-)Client: Tells the client<br/>inforamtion about the media
    Sanic--)YT-DLP: Downloads media
    YT-DLP-)Cache: Stores media in cache
    Sanic--)FFmpeg: Convert audio to dfpwm
    FFmpeg-)Cache: Stores audio in cache
    Sanic--)Sanjuuni: Convert video to 32vid
    Sanjuuni-)Cache: Stores video in cache
    Cache->Cache: Deletes original downloaded media
    loop Streaming
        Client-)Sanic: Request video and audio chunks
        Cache-)Sanic: Reads video and audio chunks
        Sanic-)Client: Sends video and audio chunks
        Note over Client: Receives and displays the media
    end

Before submitting

squidfunk commented 1 year ago

Thanks for reporting. This is not a change request but an incomplete bug report, as you're describing behavior that differs from what is expected. Please read our bug reporting guide, and most importantly, provide a minimal reproduction.

squidfunk commented 1 year ago

By the way, this is the second time you reported a bug as a feature request. Was my last comment unclear for some reason?

Commandcracker commented 1 year ago

By the way, this is the second time you reported a bug as a feature request. Was my last comment unclear for some reason?

I'm sorry, I thought you only meant that the Notes being out of bounds is a bug and not the wrong theming. I'll create a proper bug report tomorrow.