Changeset 790

Show
Ignore:
Timestamp:
11/14/2007 04:33:35 PM (3 years ago)
Author:
OlivierBorowski
Message:

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

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.1.6.4/css/wikka.css

    r788 r790  
    398398} 
    399399 
     400/* editor textarea decorations */ 
     401/* (decorations can't be in "textarea#body" declaration, else the "width:100%" won't work) */ 
     402#textarea_container { 
     403        border: 1px solid #CCC; 
     404        padding: 2px; 
     405        margin-bottom: 2px; 
     406} 
     407 
    400408textarea#body{ 
    401409        width: 100%; 
    402410        height: 500px; 
    403         padding: 2px; 
     411        /* padding and border must be 0 for the "width:100%" to work */ 
     412        padding: 0; 
     413        border: 0; 
    404414} 
    405415