a bug
when you've saved a message and then open it again to edit, you may press buttons above for actions.
the button for a spoiler "Collapsible section: [details]text[/details]" should input the text according to the said description
[details][/details]
but it does the other. it inputs
[details][summary][/summary][/details]
Snover if you addressed the font issue previously I did not see it. The current font is really not a very easy to read font especially for numbers. Could you change the font to something that is more horizontally consistent at keast for the Old Skool theme?
There’s no plan to replace the current default font with a different font. There’s also no plan to switch to using lining figures in body text unless you can point me to some research which demonstrates a clear benefit. The only research I can find on this topic (DOI 10.1037/h0069888) supports the current approach. I understand this may not be true for you in particular, and I am sorry that this is causing a problem, since my aim is to make things better. In this case I would recommend for right now that you override the font on your computer so that you can pick exactly what works best for you. More discussions regarding this I believe are in this topic, but just in case, all you should need to put in Stylus is:
1:root { font-family: "Whatever Font You Like", sans-serif; }
I like this feature, but I think it'd be a little more intuitive if it displayed the first line or ~15-20 words of the collapsed quote. Makes it easier to identify what people are responding to without expanding the whole thing.
phpBB uses some custom parser based on XSLT (😩👎) which doesn’t even support all the XSLT 1.0 features so it is unreasonably difficult to make it do smart things. I’ve done my best to add a snippet from the first paragraph of the quote. It will not always be correct since as far as I can tell I can’t filter away undesirable data from nested tags at all, nor can I break on word boundaries. Hopefully this is better now. Let me know.
At the very least, I would use the new DETAILS tag as a button to theme the link to Show Quote or something.
As formatted, it's not especially clear that you can click "Show Quote" to have it display the rest of the text.
The full detail button felt too big in the area and a simple treatment with a normal link colour would let malicious users masquerade links as truncated quote buttons so I didn’t want to do that either. I’ve tried to find a middle ground; hopefully this works better. Let me know.
Tertzwrote on 2020-01-26, 02:35:a bug
when you've saved a message and then open it again to edit, you may press buttons above for actions.
the button for a spoi […] Show full quote
a bug
when you've saved a message and then open it again to edit, you may press buttons above for actions.
the button for a spoiler "Collapsible section: [details]text[/details]" should input the text according to the said description
[details][/details]
but it does the other. it inputs
[details][summary][/summary][/details]
I’ve updated the tooltip to more accurately reflect the available options for the details tag. Thanks!
Snoverwrote on 2020-01-26, 21:35:There’s no plan to replace the current default font with a different font. There’s also no plan to switch to using lining figure […] Show full quote
Snover if you addressed the font issue previously I did not see it. The current font is really not a very easy to read font especially for numbers. Could you change the font to something that is more horizontally consistent at keast for the Old Skool theme?
There’s no plan to replace the current default font with a different font. There’s also no plan to switch to using lining figures in body text unless you can point me to some research which demonstrates a clear benefit. The only research I can find on this topic (DOI 10.1037/h0069888) supports the current approach. I understand this may not be true for you in particular, and I am sorry that this is causing a problem, since my aim is to make things better. In this case I would recommend for right now that you override the font on your computer so that you can pick exactly what works best for you. More discussions regarding this I believe are in this topic, but just in case, all you should need to put in Stylus is:
1:root { font-family: "Whatever Font You Like", sans-serif; }
Thanks for the response Snover.
I can not provide you with academia on lining figures vs oldstyle figures, it is probably more preference than objective legibility that is at discussion here. All I can say is that oldstyle numerals were used with Serif fonts back in the day (Oldstyle for a reason) because several numerals (most importantly 0 and 1) were often confused with letters (most commonly O and l). This is not a major consideration for Sans Serif fonts such as MerriweatherSans that this page uses.
As a last exercise I want to share the front page rendered in Merriweather Sans (default) vs Ubuntu on my Lubuntu box. Just for your consideration and evaluation. If you really feel the oldstyle numeral fonts have a reason to be used on this page, so be it, I can override them. They are a major distractor to me when posting technical stuff that include alphanumerics..
Last edited by appiah4 on 2020-01-27, 12:59. Edited 2 times in total.
I have to admit, I am not a fan of the numerals in this font too. I have OCD, I try not to get disturbed by that thing, but it's almost impossible to ignore how the numbers aren't lined up correctly in this font.
I have to admit, I am not a fan of the numerals in this font too. I have OCD, I try not to get disturbed by that thing, but it's almost impossible to ignore how the numbers aren't lined up correctly in this font.
So much this. The numbers are horrible with the current font. It makes it harder to read. It is just bad form.
Ok, so to disable the custom cursor, you can enter this in Stylus:
1body * { 2 cursor: auto !important; 3}
This will let your cursor stay however you have it set in your OS.
And if you want a pointer hand instead of the text selection cursor for links, add this: (This is only for "a" links. Not working for the buttons or other "span" links such as the username links). Adding one for span elements makes it have the pointer hand cursor on things that are not links though.
1a:hover { 2 cursor: pointer !important; 3}
Here is an animated gif of the different mouse cursor styles available. You will need to click on it for it to open up and be animated. That sure would be a nice feature to have.
The attachment mouse pointer css styles.gif is no longer available
Ok, so to disable the custom cursor, you can enter this in Stylus:
1body * { 2 cursor: auto !important; 3}
This will let your cursor stay however you have it set in your OS.
And if you want a pointer hand instead of the text selection cursor for links, add this: (This is only for "a" links. Not working for the buttons or other "span" links such as the username links). Adding one for span elements makes it have the pointer hand cursor on things that are not links though.
1a:hover { 2 cursor: pointer !important; 3}
Here is an animated gif of the different mouse cursor styles available. You will need to click on it for it to open up and be animated. That sure would be a nice feature to have.
mouse pointer css styles.gif
I provided CSS overrides for mouse in this post, you should’t need to figure it out on your own. 😀
Ok, so to disable the custom cursor, you can enter this in Stylus:
1body * { 2 cursor: auto !important; 3}
This will let your cursor stay however you have it set in your OS.
And if you want a pointer hand instead of the text selection cursor for links, add this: (This is only for "a" links. Not working for the buttons or other "span" links such as the username links). Adding one for span elements makes it have the pointer hand cursor on things that are not links though.
1a:hover { 2 cursor: pointer !important; 3}
Here is an animated gif of the different mouse cursor styles available. You will need to click on it for it to open up and be animated. That sure would be a nice feature to have.
mouse pointer css styles.gif
I provided CSS overrides for mouse in this post, you should’t need to figure it out on your own. 😀
Ok, cool. I looked a bit and didn't see anything posted already so I started messing with it myself.
I think cursor: auto is better than cursor: default though. That way it acts like normal (text select cursor) when mousing over regular text.
When edit a message, there is a button "Delete this post".
It would be more comfortable to have this button/option on a distance from "Submit" button, but not close to it. On far left or right side or below through an empty line, for example. It's not often used button to have it near "Submit" and even brighter colored. Also it's the closest to the center of the screen, where more appropriate would be to place "Submit" as the most used.
The easiest fix is to place it to the left from "Preview" button and with common colors, without red border.
Personally, the old-style figures are the least of what bothers me with the default font. The horrible hinting takes that particular cake. 😉
Oh hey, just noticed that the hinting looks *much* better in Windows now. Happy to see it fixed! (What was changed? A different/auto-hinted version of the same font?)