n0x-styles / wikipedia-dark

https://userstyles.world/style/1691/wikipedia-deep-dark-theme
44 stars 20 forks source link

Small change to toc box width #20

Open Splike opened 5 years ago

Splike commented 5 years ago

Currently, the toc box on articles, has a max width of 300 px. This forces longer toc entries to wrap to the next line. Since there is already a lot of blank space to the right of the toc, I propose changing this

.toc {
    background: transparent !important;
    border-color: #444 !important;
    border-style: solid !important;
    display: block !important;
    max-width: 300px !important;
}

to this

.toc {
    background: transparent !important;
    border-color: #444 !important;
    border-style: solid !important;
    display: inline-block !important;
}