Changeset 802
- Timestamp:
- 11/21/2007 11:44:18 AM (3 years ago)
- Files:
-
- 1 modified
-
trunk/css/wikka.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/css/wikka.css
r793 r802 402 402 } 403 403 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 404 412 textarea#body{ 405 413 width: 100%; 406 414 height: 500px; 407 padding: 2px; 415 /* padding and border must be 0 for the "width:100%" to work */ 416 padding: 0; 417 border: 0; 408 418 } 409 419