Changeset 2032

Show
Ignore:
Timestamp:
06/16/09 07:48:37 (9 months ago)
Author:
JensDiemer
Message:

resize textarea width, too.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.9/pylucid_project/apps/pylucid/templates/admin/base_site.html

    r2022 r2032  
    2020    background: url('{{ PyLucid_media_url }}superfish/shadow.png') no-repeat bottom right; 
    2121} 
     22textarea { 
     23    width:85%; 
     24} 
    2225--> 
    2326</style> 
     
    3942  // Resize all textareas 
    4043  // 
    41   $("textarea").each(function (i) { 
     44  $("textarea").each(function() { 
    4245    rows = this.value.split("\n").length; 
    4346    if (rows > MAX_ROWS) {rows = MAX_ROWS;}