Is there any way to have css treat popped out sheets slightly differently than non-popped out sheets? I was unhappy with the amount of white space on the sides of my character sheet. .charsheet gives a 10px padding on each side, which is not bad, but then .ui-dialog-content puts ANOTHER 20px on each side! That is 60 px of wasted whitespace before my character sheet puts a colored boarder and a background color. So I just used a negative margin to reclaim that space and now my colored boarder and background go all the way to the edge. I am very happy with it and I think it looks much better. Or at least I was happy until one of my players popped the character sheet out. It seems that when popped out, .ui-dialog-content tag is not there, so the popped out versions don't have the extra 20px on each side, and my sheets are cut off on the left and right. So what I want to do, is that when the ui.dialog-content tag is there, I want to have a negative margin that reclaims the relativly large swath of whitespace that tag is wasting. When the tag is not there, I don't want the negative margin. I tried putting in css to do that, but when it did not work remembered that the system puts a sheet- in front of every tag, so it was converting my ui-widget-content .sheet-header { css tags to sheet-ui-widget-content .sheet-header { which of course did not match anything. Is there anything at all that can be done other than leaving the 40px of whitespace on all non-popped-out character sheets? Thank you.