diff options
-rw-r--r-- | library/jquery.divgrow/jquery.divgrow-1.3.1.js | 8 | ||||
-rw-r--r-- | view/theme/redbasic/css/style.css | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/library/jquery.divgrow/jquery.divgrow-1.3.1.js b/library/jquery.divgrow/jquery.divgrow-1.3.1.js index e79c7928c..780d0ab82 100644 --- a/library/jquery.divgrow/jquery.divgrow-1.3.1.js +++ b/library/jquery.divgrow/jquery.divgrow-1.3.1.js @@ -46,9 +46,9 @@ obj.after('<p class="divgrow-brackets">[…]</p><a href="#" class="divgrow-showmore' + " divgrow-obj-" + divgrowid + '"' + '></a>');
}
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 () {
//alert(obj.attr('class'));
@@ -61,7 +61,7 @@ if (options.showBrackets) {
$(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) {
$(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);
});
});
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 4ee8a7477..50e698e48 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2062,10 +2062,14 @@ img.mail-list-sender-photo { border-bottom-right-radius: $radiuspx; border-bottom-left-radius: $radiuspx; text-align: center; + font-weight: bold; + color: $link_colour; + cursor: pointer; } .divgrow-showmore:hover { border-top: 1px dashed #adadad; + text-decoration: underline; } |