Fix YouTube Watch Flexible Menu Items

To fix YouTube Watch Flexible Menu Items

目前为 2023-09-12 提交的版本。查看 最新版本

/* ==UserStyle==
@name           Fix YouTube Watch Flexible Menu Items
@namespace      github.com/openstyles/stylus
@version        1.1.0
@description    To fix YouTube Watch Flexible Menu Items
@author         CY Fung
@license        MIT
@preprocessor   stylus
==/UserStyle== */
@-moz-document domain("youtube.com") {

    #primary.ytd-watch-flexy #below ytd-video-owner-renderer.style-scope.ytd-watch-metadata,
    #primary.ytd-watch-flexy #below #owner {
        flex-basis: 90%;
        max-width: max-content;
    }

    ytd-watch-metadata #owner ~ #actions.item.style-scope.ytd-watch-metadata {
        flex-basis: 260px;
        min-width: 260px !important;
    }
    /* Insert code here... */
}