diff --git a/js/util.js b/js/util.js index c43af23337..35d69310bf 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/base/css/display.css b/theme/base/css/display.css index 2892ca4f1a..b8b260266c 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -638,7 +638,7 @@ margin-right:11px; .notice .author a { } .notice .author:after { -content:":"; +/*content:":";*/ } .vcard .photo { diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 1eba97a459..c2eb4ef655 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 {