I try to install admin-tools for django. I've got strange css and it's evident that something is wrong. But what? Google and css analyzing didn't help.
Thanks!
Update and solution:
I did the homework and solved the problem. What I got:
When I add admin-tools.theming, base.css is missing. The reason is wrong path. Instead of /static/admin/css/base.css it is /admin-media/css/base.css. "admin-media" was my admin media prefix. I left it when I tried to set up my apache server and then I changed static path.
So, it was necessary only to define right admin media prefix as "/static/admin/"