Completed
Last Updated: 29 Sep 2015 10:58 by ADMIN
ADMIN
Danail Vasilev
Created on: 15 Jul 2015 12:07
Category: Notification
Type: Bug Report
0
Content icon of RadNotification in Lightweight RenderMode is larger in IE
For the time being you can use the following workaround:
CSS:
	<style>
	 .RadNotification .rnContentWrapper .rnIcon:before {
			font-size: 0.7em\9;
		}
		_:-ms-fullscreen, :root .RadNotification .rnContentWrapper .rnIcon:before {
			font-size: 0.7em;
		}
	</style>
ASPX:
		<telerik:RadNotification ID="RadNotification1" runat="server" AutoCloseDelay="99999" ShowInterval="1000" Position="Center" RenderMode="Lightweight" Text="Project deleted successfully!" VisibleTitlebar="false">
		</telerik:RadNotification>
0 comments