It's not broken in currently supported themes. I suspect you are using the skin "StarMade Dock OLD" ?Is this still working as intended? I can't get longer quotes to expand, is it just me or did it break again?
That is correct, the "new" skin is too gadgety for my taste. I don't need a scroll thingy, or a message number indicator, when my desktop browser window already brings a scroll bar (that I can configure to be left-handed, as a bonus), and the message number is part of every post... that kind of stuff may(?) be nice if you're on mobile, but I find it distracting.It's not broken in currently supported themes. I suspect you are using the skin "StarMade Dock OLD" ?
The skin isn't supported. You can continue to use it, but it's on an old theme framework that no longer works.That is correct, the "new" skin is too gadgety for my taste. I don't need a scroll thingy, or a message number indicator, when my desktop browser window already brings a scroll bar (that I can configure to be left-handed, as a bonus), and the message number is part of every post... that kind of stuff may(?) be nice if you're on mobile, but I find it distracting.
The "new" skin also has working post preview which I have been sorely missing, too.
Does that mean it's nobug/wontfix?
Well, that's deplorable.The skin isn't supported. You can continue to use it, but it's on an old theme framework that no longer works.
It's still there as the new skin has only recently come out. We left it in case some features weren't working in the new skin; it's still available to provide feedback and allow people to have a phase out period.Well, that's deplorable.
Out of curiosity - why even offer it if it isn't compatible with the current framework, and supposedly will work even less as time goes by?
Do you have plans to update it to the current framework eventually? As you might guess, I'd love to see a functional no-frills alternative to the "not-old" skin... all that newfangled bling just isn't my cup of tea ;)
LIST is closest to old.Well, that's deplorable.
Out of curiosity - why even offer it if it isn't compatible with the current framework, and supposedly will work even less as time goes by?
Do you have plans to update it to the current framework eventually? As you might guess, I'd love to see a functional no-frills alternative to the "not-old" skin... all that newfangled bling just isn't my cup of tea ;)
PS.: No idea how much effort it would take, but simply not truncating quoted posts might restore at least part of its functionality?
'Fixed' it via GreaseMonkey, thanks. Finally a good enough reason to wrap my head around it...LIST is closest to old.
// ==UserScript==
// @name StarMade Dock "OLD" style
// @namespace SMD_OLDstyle
// @include https://starmadedock.net/*
// @version 1
// @grant none
// ==/UserScript==
var uixRemove = document.getElementById("uix_jumpToFixed");
if(null != uixRemove){
console.log("removing jumpToFixed: "+uixRemove);
uixRemove.parentNode.removeChild(uixRemove);
}
var ppRemove = document.getElementById("audentio_postPagination");
if(null != ppRemove){
console.log("removing postPagination: "+ppRemove);
ppRemove.parentNode.removeChild(ppRemove);
}