I've noticed a little annoying visual "bug".
I'm using the admin generator to administrate my users. I've also done a custom design for my backend (fixed witdh and so on).
Filter div doesn't display correctly (position absolute). "Ok, let's custom the style in my own css file."
It actually doesn't custom anything because the /sf/sf_admin/css/main.css loads after my own css.
It would be better if it loads BEFORE then we could adapt the sf_admin style with our own design.
Here is the actuel load order in dev mode:
<link rel="stylesheet" type="text/css" media="screen" href="/sf/sf_web_debug/css/main.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/css/main.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/css/layout.css" />
<link rel="stylesheet" type="text/css" media="screen" href="/sf/sf_admin/css/main.css" />