Fixed Padding on block Notices

Valhalla

Well-known member
In Safari web browser, the following CSS is not correct resulting in the text (when using a block notice) being too close to the dismiss button. In other browsers I tested in using, it did not seem to be a problem and it displayed correctly regardless.

Code:
#Notices .panel .noticeContent
{
     padding-right: 25px;
}

Screen Shot 2015-07-12 at 15.23.17.webp

The notices template was changed to render:

Code:
<div class="PanelScroller Notices"

It previously rendered:

Code:
<div class="PanelScroller" id="Notices"

The CSS above didn't change to reflect that.
 
Top Bottom