Jake Bunce
Well-known member
Confirmed in XF 1.3 on this forum.
In the rendered CSS (double semicolon after second background attribute):
Interestingly, this does not appear to be represented in xenforo_overlay.css:
Maybe a problem with the renderer.
In the rendered CSS (double semicolon after second background attribute):
Code:
#AjaxProgress.xenOverlay .content
{
background:rgb(0, 0, 0) url('styles/default/xenforo/widgets/ajaxload.info_FFFFFF_facebook.gif') no-repeat center center;
background:rgba(0,0,0, 0.5) url('styles/default/xenforo/widgets/ajaxload.info_FFFFFF_facebook.gif') no-repeat center center;;
-webkit-border-bottom-left-radius:10px;
-moz-border-radius-bottomleft:10px;
-khtml-border-bottom-left-radius:10px;
border-bottom-left-radius:10px;
float:right;
width:85px;
height:30px
}
Interestingly, this does not appear to be represented in xenforo_overlay.css:
Code:
#AjaxProgress.xenOverlay .content
{
@property "ajaxProgress";
background: rgba(0,0,0, 0.5) url('@imagePath/xenforo/widgets/ajaxload.info_FFFFFF_facebook.gif') no-repeat center center;
border-bottom-left-radius: 10px;
float: right;
width: 85px;
height: 30px;
@property "/ajaxProgress";
}
Maybe a problem with the renderer.