diff options
| author | Tom Christie | 2012-10-29 13:18:51 +0000 |
|---|---|---|
| committer | Tom Christie | 2012-10-29 13:18:51 +0000 |
| commit | 752f191a763b4375e6fa03f8bd88416d59226760 (patch) | |
| tree | 11a27d8f82a7ad7b923647c0f9776e423ab9bd76 | |
| parent | cf77fd6964c9f226a7c3f6dc5ec9d74a76cc1ab6 (diff) | |
| download | django-rest-framework-752f191a763b4375e6fa03f8bd88416d59226760.tar.bz2 | |
Fix breadcrumbs
| -rw-r--r-- | rest_framework/static/rest_framework/css/default.css | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/rest_framework/static/rest_framework/css/default.css b/rest_framework/static/rest_framework/css/default.css index 739b9300..b46f025e 100644 --- a/rest_framework/static/rest_framework/css/default.css +++ b/rest_framework/static/rest_framework/css/default.css @@ -32,6 +32,10 @@ h2, h3 { margin-right: 1em; } +ul.breadcrumb { + margin: 58px 0 0 0; +} + /* To allow tooltips to work on disabled elements */ .disabled-tooltip-shield { position: absolute; @@ -65,7 +69,7 @@ html{ background: none; } -body, .navbar .navbar-inner .container-fluid{ +body, .navbar .navbar-inner .container-fluid { max-width: 1150px; margin: 0 auto; } @@ -76,13 +80,14 @@ body{ } #content{ - margin: 40px 0 0 0; + margin: 0; } /* custom navigation styles */ .wrapper .navbar{ - width:100%; + width: 100%; position: absolute; - left:0; + left: 0; + top: 0; } .navbar .navbar-inner{ |
