Fixed Multi-quote overlay gradient

Chris D

XenForo developer
Staff member
upload_2014-1-22_11-16-52.webp

The padding: 10px from primaryContent means the gradient is 10px shorter at the bottom.

Suggested fix:

Rich (BB code):
.MultiQuoteItem .messageArea {
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
}
 
The position of the gradient is mostly ok, as there actually needs to be an overflow hidden on that.
 
Top Bottom