diff options
| author | Tim Graham <timograham@gmail.com> | 2014-03-11 06:56:27 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-03-11 06:56:27 -0400 |
| commit | 6f470650d097abbc06021efd50b2bdc3c9ce4d3b (patch) | |
| tree | 5862ae446e98463b145068af07a159a5a3fe5356 /django | |
| parent | 107c9f545346149b03354678f53a177709edaced (diff) | |
Fixed #21293 -- Adjusted admin header CSS to fix admin password reset template.
By removing the absolute positioning of the usertools div and using
float positioning, the #header div will expand based on the height of
its content.
Thanks EvilDMP for the report.
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/admin/static/admin/css/base.css | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/django/contrib/admin/static/admin/css/base.css b/django/contrib/admin/static/admin/css/base.css index 30bd36283c..995183e23f 100644 --- a/django/contrib/admin/static/admin/css/base.css +++ b/django/contrib/admin/static/admin/css/base.css @@ -796,6 +796,9 @@ table#change-history tbody th { text-decoration: underline; } +#branding { + float: left; +} #branding h1 { padding: 0 10px; font-size: 18px; @@ -820,9 +823,7 @@ table#change-history tbody th { } #user-tools { - position: absolute; - top: 0; - right: 0; + float: right; padding: 1.2em 10px; font-size: 11px; text-align: right; |
