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 88 .rf-ny-te {
89 89 display: block;
90 90 }
  91 +.rf-ny-fcl {
  92 + clear: both;
  93 +}
91 94 .rf-ny-ic {
92 95 display: none;
93 96 float: left;
... ...
... ... @@ -572,6 +572,9 @@
572 572 if (opts.pnotify_text === false)
573 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 578 // Set width and min height.
576 579 if (typeof opts.pnotify_width == "string")
577 580 pnotify.css("width", opts.pnotify_width);
... ...
Please register or login to post a comment