Commit a12a7a3e9c4797c5d3ddaef23766a89c3ecc8040

Authored by bernard
1 parent a87b44bb

Added div with style clear:both to clear icon float in notify.

@@ -88,6 +88,9 @@ html > body .rf-ny { @@ -88,6 +88,9 @@ html > body .rf-ny {
88 .rf-ny-te { 88 .rf-ny-te {
89 display: block; 89 display: block;
90 } 90 }
  91 +.rf-ny-fcl {
  92 + clear: both;
  93 +}
91 .rf-ny-ic { 94 .rf-ny-ic {
92 display: none; 95 display: none;
93 float: left; 96 float: left;
@@ -572,6 +572,9 @@ @@ -572,6 +572,9 @@
572 if (opts.pnotify_text === false) 572 if (opts.pnotify_text === false)
573 pnotify.text_container.hide(); 573 pnotify.text_container.hide();
574 574
  575 + //Append div with clear:both class
  576 + $14("<div />", {"class":"rf-ny-fcl"}).appendTo(pnotify.container);
  577 +
575 // Set width and min height. 578 // Set width and min height.
576 if (typeof opts.pnotify_width == "string") 579 if (typeof opts.pnotify_width == "string")
577 pnotify.css("width", opts.pnotify_width); 580 pnotify.css("width", opts.pnotify_width);
Please register or login to post a comment