diff options
| author | Tom Christie | 2012-11-07 10:13:14 +0000 | 
|---|---|---|
| committer | Tom Christie | 2012-11-07 11:32:52 +0000 | 
| commit | b3bf887c6784b59fe3b1e4a9393d84476aa4990c (patch) | |
| tree | 4dca97eac49c37aaba07e8640506937b179ea83e | |
| parent | 5e5c8899e29eb076d0d39c4918bc9cf497ac96ee (diff) | |
| download | django-rest-framework-b3bf887c6784b59fe3b1e4a9393d84476aa4990c.tar.bz2 | |
Make textareas in browseable API same width as everything else
| -rw-r--r-- | rest_framework/static/rest_framework/css/default.css | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/rest_framework/static/rest_framework/css/default.css b/rest_framework/static/rest_framework/css/default.css index fdf45659..b2e41b99 100644 --- a/rest_framework/static/rest_framework/css/default.css +++ b/rest_framework/static/rest_framework/css/default.css @@ -36,7 +36,7 @@ ul.breadcrumb {    margin: 58px 0 0 0;  } -form select, form input { +form select, form input, form textarea {    width: 90%;  } | 
