We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f9281ac + 73c31b8 commit 6c0365bCopy full SHA for 6c0365b
js/noty/themes/bootstrap.js
@@ -23,7 +23,7 @@
23
this.$closeButton.append('<span aria-hidden="true">×</span><span class="sr-only">Close</span>');
24
this.$closeButton.addClass('close');
25
26
- this.$bar.addClass( "list-group-item" );
+ this.$bar.addClass( "list-group-item" ).css('padding', '0px');
27
28
switch (this.options.type) {
29
case 'alert': case 'notification':
@@ -42,6 +42,15 @@
42
this.$bar.addClass( "list-group-item-success" );
43
break;
44
}
45
+
46
+ this.$message.css({
47
+ fontSize: '13px',
48
+ lineHeight: '16px',
49
+ textAlign: 'center',
50
+ padding: '8px 10px 9px',
51
+ width: 'auto',
52
+ position: 'relative'
53
+ });
54
},
55
callback: {
56
onShow: function() { },
0 commit comments