elky / django-flat-theme

A flat theme for Django admin interface. Modern, fresh, simple.
Other
413 stars 46 forks source link

Textareas cannot be resized horizontally #4

Closed aaugustin closed 9 years ago

aaugustin commented 9 years ago

The CSS contains:

textarea {
    resize: vertical;
}

Sometimes you want more horizontal space.

Why take control from the user? ;-)

elky commented 9 years ago

Why take control from the user?

Agree. I personally prefer to disable horizontal resize because sometimes it breaks layout. But it seems safe in Django admin.

aaugustin commented 9 years ago

I understand.

Speaking for myself, I don't care about "breaking" the layout if that helps me to type or read text comfortably.

Thanks for the fix!