From be47fc55a268d80308cb9354c0b9f3c7e78b24b3 Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Thu, 7 Feb 2013 11:05:54 +0100 Subject: Add a tooltip when login is required (#36) This needs a rebuild of the jquery-ui package. It has been applied to: - inline replies - like/dislike links - favorites --- hyperkitty/static/css/hyperkitty.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'hyperkitty/static/css/hyperkitty.css') diff --git a/hyperkitty/static/css/hyperkitty.css b/hyperkitty/static/css/hyperkitty.css index 447368a..b8f56b4 100644 --- a/hyperkitty/static/css/hyperkitty.css +++ b/hyperkitty/static/css/hyperkitty.css @@ -205,6 +205,14 @@ form.likeform { .youdislike { background: url("../img/youdislike.png") no-repeat scroll left; } +.youlike.disabled { + background: url("../img/youlike-disabled.png") no-repeat scroll left; + color: #999; +} +.youdislike.disabled { + background: url("../img/youdislike-disabled.png") no-repeat scroll left; + color: #999; +} @@ -861,6 +869,10 @@ a.reply { padding-left: 20px; margin-left: 1em; } +a.reply.disabled { + background: url("../img/reply-disabled.png") no-repeat left center; + color: #999; +} .reply-form { display: none; padding-top: 1em; -- cgit