Hey I saw you mention this on IRC and I've run into it now too with a narrower theme, so I thought I'd throw in a suggestion. There's an easy way in CSS to fix the whole text-fields-hanging-off-the-side thing for most people at least.

.views-edit-view input,
.views-edit-view textarea {
  max-width: 95%;
}

I stuck that in our theme and it's working great so far. Not sure if there are any
s or other elements that would need to be put into that CSS. Also I assume that view edit screens always have the views-edit-view class around them.

Unfortunately IE6 does not support max-width (and even with a workaround fix for it, it still won't do percentage based max-widths), so the only workaround there would be to guess at something px based, conditionally for IE6. I assume the number of people administering views in IE6 is fairly limited though.

Comments

merlinofchaos’s picture

Status: Active » Fixed

Applied and committed. Thanks!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.