Can I load a custom CSS file when in "EDIT" mode?

Permalink
As per the title really. When editing, I'd like things like the header shifted down.

Conkreet
 
mesuva replied on at Permalink Reply
mesuva
Normally I have something like this in my theme's header:
<body class="<?php echo ($c->isEditMode() ? 'ineditmode' : ''); ?>">

Then in my styles, I can prefix anything that I only want to apply when in edit mode with the class .ineditmode
Conkreet replied on at Permalink Reply
Conkreet
That's a good idea, thank you.
OKDnet replied on at Permalink Reply
OKDnet
Nice :-)