Bug #24714
closedCursor not changing to help over some labels
0%
Description
In the User Settings and the Scheduler (when creating/editing a task), the cursor does not change to a help cursor when the mouse is positioned over the label. It happens only in a very small range just above the label.
This was observed in FF 3.6 for Mac.
It's just a CSS issue, but I had no time to dit into it.
(issue imported from #M17202)
Files
Updated by Steffen Gebert almost 14 years ago
HTML structure in TCEforms:
<label> <span data-field="extendToSubpages" data-table="pages" class="t3-help-link"> <abbr class="t3-help-teaser">Extend to Subpages</abbr> </span> </label>
HTML in User Settings:
<span data-field="option_newPasswordAgain" data-table="_MOD_user_setup" class="t3-help-link"> <abbr class="t3-help-teaser"> <label for="field_password2">New password, again</label> </abbr> </span>
cursor: pointer is set for the
<abbr>, however the
<label>inside hides the abbr.
Updated by Francois Suter almost 14 years ago
Thanks for the pointer. It works nicely (just made a couple of tests in the Scheduler). Will finish tomorrow morning.
Updated by Francois Suter almost 14 years ago
Oh, I missed your attachment. Are you proposing to solve this by modifying the CSS? Isn't it better to fix the tag structure, so that it is shared all over the BE? I would rather do this even if it's a bit more work.
Updated by Steffen Gebert almost 14 years ago
Yes, it might be better to fix the HTML, of course. You probably know better, where the code is coming from. Could you take care? This one is already pending in core list, but I would also favor to streamline the code.
Updated by Steffen Gebert almost 14 years ago
This change was accidently included in rev. 10313.
I now added the ChangeLog entry in 10327, as we decided that the code in User Settings is too hard to change ATM.