I have some custom fields/modules in my Django admin template "app_index.html". Looking like this:

<tr>
    <th>Element 1</th>
    <th>Element 2</th>
</tr>

In firebug I can see that this field inherits from Django's base.css which says:

.dashboard .module table th{
    width:100%
}

I have by now understood that if a field inherits from width: 100%, then width:auto will not work.

In firebug, if I disable the width:100% property it works, but then other things in the admin interface is broken.

I have also tried defining my own .dashboard .module table th{width:auto} to override, but it does not work. Only if I in firebug disable it.

tl;dr: I want to disable CSS on elements, in django admin.

link|improve this question

62% accept rate
So, you want to apply width: auto to only certain th elements? Could you show some more of the surrounding HTML of that snippet you posted? – thirtydot Mar 19 '11 at 0:49
Could you just assign your own class or id? – wilbbe01 Mar 19 '11 at 0:57
This may be a good time to use !important, all though I'm sure I'll get verbally beaten for suggesting it. width:auto !important – Seth Mar 19 '11 at 0:58
feedback

1 Answer

Semi-solution I found:

Since I did not want the lines to break I added a

white-space: nowrap

on the th's.

I tried with !important, did not work. Assigning it's own ID did not work either.

Hmm, as with the Django admin customization remains hard. But thanks for comments!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.