Changeset 802

Show
Ignore:
Timestamp:
11/21/2007 11:44:18 AM (3 years ago)
Author:
OlivierBorowski
Message:

Add an additionnal "div" for textarea decorations, this fixes the "textarea-width:100%" bug, refs #576, #575

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/css/wikka.css

    r793 r802  
    402402} 
    403403 
     404/* editor textarea decorations */ 
     405/* (decorations can't be in "textarea#body" declaration, else the "width:100%" won't work) */ 
     406#textarea_container { 
     407        border: 1px solid #CCC; 
     408        padding: 2px; 
     409        margin-bottom: 2px; 
     410} 
     411 
    404412textarea#body{ 
    405413        width: 100%; 
    406414        height: 500px; 
    407         padding: 2px; 
     415        /* padding and border must be 0 for the "width:100%" to work */ 
     416        padding: 0; 
     417        border: 0; 
    408418} 
    409419