make it a div to prevent extra borders in some browsers after click

This commit is contained in:
marijus 2014-06-26 19:08:16 +02:00
parent 4d093e0e6d
commit c6cae8e0c2
2 changed files with 8 additions and 4 deletions

View File

@ -46,9 +46,9 @@
obj.after('<p class="divgrow-brackets">[&hellip;]</p><a href="#" class="divgrow-showmore' + " divgrow-obj-" + divgrowid + '"' + '></a>'); obj.after('<p class="divgrow-brackets">[&hellip;]</p><a href="#" class="divgrow-showmore' + " divgrow-obj-" + divgrowid + '"' + '></a>');
} }
else { else {
obj.after('<a href="#" class="divgrow-showmore' + " divgrow-obj-" + divgrowid + '"' + '></a>'); obj.after('<div class="divgrow-showmore' + " divgrow-obj-" + divgrowid + '"' + '></div>');
} }
$("a.divgrow-showmore").html(options.moreText); $("div.divgrow-showmore").html(options.moreText);
$("." + "divgrow-obj-" + divgrowid).toggle(function () { $("." + "divgrow-obj-" + divgrowid).toggle(function () {
//alert(obj.attr('class')); //alert(obj.attr('class'));
@ -61,7 +61,7 @@
if (options.showBrackets) { if (options.showBrackets) {
$(this).nextAll("p.divgrow-brackets:first").fadeOut(); $(this).nextAll("p.divgrow-brackets:first").fadeOut();
} }
$(this).nextAll("a.divgrow-showmore:first").html(options.lessText); $(this).nextAll("div.divgrow-showmore:first").html(options.lessText);
}); });
@ -74,7 +74,7 @@
if (options.showBrackets) { if (options.showBrackets) {
$(this).nextAll("p.divgrow-brackets:first").stop(true, false).fadeIn(); $(this).nextAll("p.divgrow-brackets:first").stop(true, false).fadeIn();
} }
$(this).nextAll("a.divgrow-showmore:first").stop(true, false).html(options.moreText); $(this).nextAll("div.divgrow-showmore:first").stop(true, false).html(options.moreText);
}); });
}); });

View File

@ -2062,10 +2062,14 @@ img.mail-list-sender-photo {
border-bottom-right-radius: $radiuspx; border-bottom-right-radius: $radiuspx;
border-bottom-left-radius: $radiuspx; border-bottom-left-radius: $radiuspx;
text-align: center; text-align: center;
font-weight: bold;
color: $link_colour;
cursor: pointer;
} }
.divgrow-showmore:hover { .divgrow-showmore:hover {
border-top: 1px dashed #adadad; border-top: 1px dashed #adadad;
text-decoration: underline;
} }