This happens not at, e.g.
/admin/structure/types/manage//fields
but at e.g.
http://head.dev/admin/structure/types/manage/
Will investigate at a later point, but wanted to post it in case anyone else has observed this, etc.
Hope this isn't already reported, but I *did* search...
| Comment | File | Size | Author |
|---|---|---|---|
| #8 | seven_tab.patch | 573 bytes | james.elliott |
| manage fields.png | 28.5 KB | tstoeckler |
Comments
Comment #1
yched commentedThe paths were garbled in the OP ?
Off hand, I'm not sure I see how that's a bug in field_ui.
Comment #2
tstoecklerOh yeah, that's correct. Anyways, when you're on the
/admin/structure/types/manage/article/fields
page or the same page for any other content type, and click on any link. You'll see that the tab is messed up.
That covers field settings, field instance settings, widget select, deletion.
field_ui.module was just a guess. Maybe it's even Seven theme. Don't know.
Comment #3
yched commentedI cannot reproduce, actually.
Win FF 3.6 here.
Although there *is* a difference in the markup for the tab
On /admin/structure/types/manage/article/fields, the
<li>and the<a>tags both have the 'active' classOn the subpages, only the
<li>is 'active', not the<a>- which is expected behavior.So I'd call that a Seven bug in [fill in your browser] :-)
Comment #4
yched commentedOddly enough, I could reproduce the bug on my 1st visit to admin/appearance/settings/seven
but everything back to normal if I reload the page...
Comment #5
tstoecklerYeah, you're right. I get it there too, so nothing to do with Field UI.
It doesn't disappear for me on a reload, though.
Are the ones on the Field UI pages gone then for you too?
If yes, maybe it's just something with my setup. (Weird though, it's a pretty fresh install, and clearing caches doesn't help either)
Comment #7
cosmicdreams commentedHmm........ I can't seem to be able to reproduce this bug. Maybe another patch as resolved it?
Comment #8
james.elliott commentedThere seems to be a problem with the reset.css file being more specific than style.css
reset.css selects the following on line 122
ul.primary li.active a,And then style.css adds padding to the active tab with the following selectors starting on line 292
The reset.css selector is more specific than the ul.primary li a in style.css which is the one that is applicable in this circumstance, therefore the padding gets set to 0.
This patch adds ul.primary li.active a to the list of selectors starting on line 292 so that the padding is applied correctly.
Comment #9
aspilicious commentedComment #10
cosmicdreams commentedwhile I still can't reproduce this bug I don't see anything wrong with the simple addition of this patch.
Comment #11
webchickOops. I accidentally committed this as part of #684610: IE BUG 2: No table-striping in Seven..
Comment #12
webchickComment #13
seutje commentedwell, it was pretty much RTBC as far as I'm concerned anyway