To add more info to this, you can still do [CODE=rich][/CODE].
There’s no syntax highlighting in that mode but you can control the formatting yourself with bbcode.
happy?Very minor, but can the beer glyph/emoji be moved to the end (or the start) of the list? This is the only one that have a different shape.
Thank you for all the work you do!I guess this bug should be gone.
[BGCOLOR=transparent][/BGCOLOR][BGCOLOR=transparent]I believe it was caused by one of the addons that I installed ...[/BGCOLOR]
We should submit patch Interesting, may be there are some free workplaces in Xenforo?
Is there any chance of adding a new section for virtualization to this forum? See (https://forums.freebsd.org/threads/add-forum-section-for-everything-related-to-virtualization.64224/), a high proportion of people who are polled seem to think that it should happen.
Nine votes isn't exactly a quorum. If we get like 90/100 we may reconsider.
This[BGCOLOR=transparent] issue happens with other desktop browsers?[/BGCOLOR]
No. Midori works well. Firefox ESR works well.This[BGCOLOR=transparent] issue happens with other desktop browsers?[/BGCOLOR]
Maybe it is a firefox 58.0_2,1 issue?No. Midori works well. Firefox ESR works well.
Screenshot is a firefox-58.0.2,1.
code
blocks do not scroll at all vertically in mobile iOS browsers so the bottom part of code
cannot be viewed. For example Thread 61291.That is interesting, because the issue you said doesn't occur in my mobile Android browsers Chrome and LightningThe longcode
blocks do not scroll at all vertically in mobile iOS browsers so the bottom part ofcode
cannot be viewed. For example Thread 61291.
/********* public:bb_code.less ********/
.bbCodeCode {
overflow: auto;
}
/********* public:freebsd_org_top_navigation_menu.css ********/
/* FreeBSD banner css
--------------------------------------*/
body {
background-image: url('styles/freebsd/xenforo/freebsd_hdr_fill.png');
}
I believe this needs to stay, otherwise the code blocks with very long lines do not collapse.danger@
I found the culprit in CSS. This overflow-property should be disabled or removed. That fixes the codeblock-scrolling with iOS Safari. It is currently set like this:
Code:/********* public:bb_code.less ********/ .bbCodeCode { overflow: auto; }
fixedWhile looking into that I also found another error. This url /styles/freebsd/xenforo/freebsd_hdr_fill.png should start with a slash:
Code:/********* public:freebsd_org_top_navigation_menu.css ********/ /* FreeBSD banner css --------------------------------------*/ body { background-image: url('styles/freebsd/xenforo/freebsd_hdr_fill.png'); }
Better safe than sorry.I believe this needs to stay, otherwise the code blocks with very long lines do not collapse.
/********* public:bb_code.less ********/
.bbCodeBlock {
-webkit-overflow-scrolling: touch;
}
It should work if it would be in the right place.swegen I have added it, hopefully it fixes your issue.
Thanks! Now the vertical scrolling works with iOS too.like this?