Changeset 790
- Timestamp:
- 11/14/2007 04:33:35 PM (3 years ago)
- Files:
-
- 1 modified
-
branches/1.1.6.4/css/wikka.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1.6.4/css/wikka.css
r788 r790 398 398 } 399 399 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 400 408 textarea#body{ 401 409 width: 100%; 402 410 height: 500px; 403 padding: 2px; 411 /* padding and border must be 0 for the "width:100%" to work */ 412 padding: 0; 413 border: 0; 404 414 } 405 415