diff options
| author | Tom Christie | 2014-10-15 15:13:28 +0100 |
|---|---|---|
| committer | Tom Christie | 2014-10-15 15:13:28 +0100 |
| commit | b4f3379c7002f0c80a26605fdd9c69d7cef2f16f (patch) | |
| tree | 2a4939cc2c46c9fdfab4284ec29aa9be8925d710 /rest_framework/static | |
| parent | e8ea365c15b13185efc2ba03e57a3302f783d538 (diff) | |
| download | django-rest-framework-b4f3379c7002f0c80a26605fdd9c69d7cef2f16f.tar.bz2 | |
Support fields that reference a simple callable
Diffstat (limited to 'rest_framework/static')
| -rw-r--r-- | rest_framework/static/rest_framework/css/bootstrap-tweaks.css | 4 | ||||
| -rw-r--r-- | rest_framework/static/rest_framework/css/default.css | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/rest_framework/static/rest_framework/css/bootstrap-tweaks.css b/rest_framework/static/rest_framework/css/bootstrap-tweaks.css index 6a37cae2..36c7be48 100644 --- a/rest_framework/static/rest_framework/css/bootstrap-tweaks.css +++ b/rest_framework/static/rest_framework/css/bootstrap-tweaks.css @@ -115,10 +115,6 @@ html, body { margin-bottom: 0; } -.well form .help-block { - color: #999999; -} - .nav-tabs { border: 0; } diff --git a/rest_framework/static/rest_framework/css/default.css b/rest_framework/static/rest_framework/css/default.css index 82c6033b..4f52cc56 100644 --- a/rest_framework/static/rest_framework/css/default.css +++ b/rest_framework/static/rest_framework/css/default.css @@ -36,6 +36,10 @@ ul.breadcrumb { margin: 70px 0 0 0; } +.breadcrumb li.active a { + color: #777; +} + form select, form input, form textarea { width: 90%; } |
