Fixed Nested quotes are not displayed correctly on iOS

It happens on desktop too.. it's just because there are too many nested quotes.. not sure what could be done about it really. Other than stripping too many nested quotes.
 
That would affect all quotes. Better solution is to change margin only for nested quotes:
Code:
.bbCodeBlock .bbCodeBlock
{
    margin-right: 1em;
}

will look like this...
nesting2.webp
Code:
.bbCodeBlock.bbCodeQuote {
    margin-right: 0;
}
will look like this...
nesting.webp
 

Attachments

  • nesting1.webp
    nesting1.webp
    115.8 KB · Views: 28
No, it won't. You pasted code incorrectly or posted wrong screenshot. That code doesn't affect first quote's right margin.
 
Top Bottom