diff options
author | matthew.gregg <matthew.gregg@gmail.com> | 2008-06-24 13:46:13 -0400 |
---|---|---|
committer | matthew.gregg <matthew.gregg@gmail.com> | 2008-06-24 13:46:13 -0400 |
commit | 240989994dae2fffc2e06fb8a88356b4c8ebe4a0 (patch) | |
tree | 3706e191fd5d6750f7e3e5981189040813e0b39d /theme/default | |
parent | 5593d4a50ba09b47c99ba5608911d50d99d54f33 (diff) |
Char counter for notice update text area. http://laconi.ca/PITS/00094
Added a util.js and this uses JQuery.
darcs-hash:20080624174613-982e4-1a6f11365957e6f4ed70b87ce64fb9938441f01f.gz
Diffstat (limited to 'theme/default')
-rw-r--r-- | theme/default/display.css | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/theme/default/display.css b/theme/default/display.css index b2e703a03..98dad5d02 100644 --- a/theme/default/display.css +++ b/theme/default/display.css @@ -476,7 +476,7 @@ textarea { padding: 0; } #status_label { - display: block; + display: inline; clear: both; margin: 0; padding: 0 0 3px 0; @@ -510,10 +510,21 @@ textarea { color: #fff6d5; cursor: pointer; border: 0; - } + } #status_submit:hover { background-color: #d1451a; } +#counter { + position: relative; + color: black; + font-weight: bold; + font-size: 18px; + left: 255px; +} + +#counter.toomuch { + color: red; +} /* ----- Subscribe Form ----- */ #subscribe .button, #unsubscribe .button, #remotesubscribe .button { |