Dafür müsste es doch Lösungen geben. Quasi skins. Legt das jede Instanz selbst fest? Dann kann man eine Instanz im alten Design eröffnen!
Meine Lösung zu diesem Problem hab ich mit Stylus für Firefox gelöst und ein bisschen Hand angelegt.
Jetzt hab ich stets die Menüleiste oben und den Ein-/Zuklapp Button nebem den Benutzer Avatar/Name. So kann es sich leben :)
Ja gerne. Man kann sicherlich noch mehr rausholen :)
/* makes the top navigation bar sticky, so it won't scroll out of view */
nav.navbar {
position: sticky;
top: 0;
background: var(--lt-color-background-default); /* default light-mode color */
z-index: 100;
}
/* Override to keep the bottom disclaimer bar at the bottom */
div+nav.navbar {
z-index: 100;
position: relative;
background: transparent !important;
bottom: 0;
}
/* On darkmode the topbar has a darker shade of gray */
@media (prefers-color-scheme: dark) {
nav.navbar {
background: #333 !important;
}
}
/* indents comments on comments further to keep the hierarchy more pronounced */
.comment-node {
position: relative;
margin-bottom: 4px;
}
/* Move the Collapse/Expand toggle in front of username/avatar */
button[aria-label="Collapse"],
button[aria-label="Expand"] {
position: absolute;
left: -30px;
}
/* hide the total "post value" from the user line */
.d-flex a.unselectable {
display: none;
}