diff options
| author | Tom Christie | 2014-10-02 16:24:24 +0100 | 
|---|---|---|
| committer | Tom Christie | 2014-10-02 16:24:24 +0100 | 
| commit | df7b6fcf58417fd95e49655eb140b387899b1ceb (patch) | |
| tree | a4a7d932bb3ef7c8e326b0248662fd31edcc2658 /rest_framework/static | |
| parent | ffc6aa3abcb0f823b43b63db1666913565e6f934 (diff) | |
| download | django-rest-framework-df7b6fcf58417fd95e49655eb140b387899b1ceb.tar.bz2 | |
First pass on incorperating the form rendering into the browsable API
Diffstat (limited to 'rest_framework/static')
| -rw-r--r-- | rest_framework/static/rest_framework/css/bootstrap-tweaks.css | 18 | 
1 files changed, 12 insertions, 6 deletions
diff --git a/rest_framework/static/rest_framework/css/bootstrap-tweaks.css b/rest_framework/static/rest_framework/css/bootstrap-tweaks.css index 6fa1e6cb..84389b1d 100644 --- a/rest_framework/static/rest_framework/css/bootstrap-tweaks.css +++ b/rest_framework/static/rest_framework/css/bootstrap-tweaks.css @@ -10,6 +10,12 @@ a single block in the template.    background: transparent;    border-top-color: transparent;    padding-top: 0; +  text-align: right; +} + +#generic-content-form textarea { +  font-family:Consolas,Monaco,Lucida Console,Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,Courier New, monospace; +  font-size: 80%;  }  .navbar-inverse .brand a { @@ -29,7 +35,7 @@ a single block in the template.    z-index: 3;  } -.navbar .navbar-inner { +.navbar {    background: #2C2C2C;    color: white;    border: none; @@ -37,7 +43,7 @@ a single block in the template.    border-radius: 0px;  } -.navbar .navbar-inner .nav li, .navbar .navbar-inner .nav li a, .navbar .navbar-inner .brand:hover { +.navbar .nav li, .navbar .nav li a, .navbar .brand:hover {    color: white;  } @@ -45,11 +51,11 @@ a single block in the template.    background: #2C2C2C;  } -.navbar .navbar-inner .dropdown-menu li a, .navbar .navbar-inner .dropdown-menu li { +.navbar .dropdown-menu li a, .navbar .dropdown-menu li {    color: #A30000;  } -.navbar .navbar-inner .dropdown-menu li a:hover { +.navbar .dropdown-menu li a:hover {    background: #EEEEEE;    color: #C20000;  } @@ -61,10 +67,10 @@ html {    background: none;  } -body, .navbar .navbar-inner .container-fluid { +/*body, .navbar .container-fluid {    max-width: 1150px;    margin: 0 auto; -} +}*/  body {    background: url("../img/grid.png") repeat-x;  | 
