I have a kendo notification like so:
<span id="notification"></span>
var notificationWidget = $("#notification").kendoNotification({
autoHideAfter: 300000
}).data("kendoNotification");
I then display several notifications in quick succession like so:
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
notificationWidget.show("foo text", "warning");
The kendo widgets are stacked vertically; however, there is an increasing horizontal indentation. I want all the notifications displayed to be vertically-aligned and maintain their current vertical stacking. How can I achieve this?