From e34efca7f326d794be5398abae8cbb7363bcfb9c Mon Sep 17 00:00:00 2001 From: sarven Date: Fri, 16 Jan 2009 18:14:20 +0000 Subject: Update to notice form character count warning --- js/util.js | 6 +++--- theme/identica/css/display.css | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/js/util.js b/js/util.js index c43af2333..35d69310b 100644 --- a/js/util.js +++ b/js/util.js @@ -22,13 +22,13 @@ $(document).ready(function(){ var maxLength = 140; var currentLength = $("#notice_data-text").val().length; var remaining = maxLength - currentLength; - var counter = $("#counter"); + var counter = $("#notice_text-count"); counter.text(remaining); if (remaining <= 0) { - $("#form_notice").addClass("response_error"); + $("#form_notice").addClass("warning"); } else { - $("#form_notice").removeClass("response_error"); + $("#form_notice").removeClass("warning"); } } diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 1eba97a45..c2eb4ef65 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -41,12 +41,12 @@ color:#88171A; #notice_text-count { color:#333; } -#notice_text-count.warning { -color:#FDFF00; -background-color:#000; +#form_notice.warning #notice_text-count { +color:#000; +background-color:#A9BF4F; } -#notice_data-text.warning { -border-color:#FDFF00; +#form_notice.warning #notice_data-text { +border-color:#A9BF4F; } #form_notice #notice_data-attach_view { -- cgit v1.2.3-54-g00ecf