When the description of an option in the admin pages pops up on mouseover it often hides the option underneath and prohibits the user from accessing the input field or other parts of that option. There should be a better way of displaying the description or at least a way of turning the description-in-tooltip off.

Comments

saltednut’s picture

I am also experiencing this problem.

It would be great if there were additional theme settings to turn the 'description' portions of fields back to normal.

A checkbox on the theme configuration that says "Show field descriptions as tooltips" that is turned on by default would be fine.

pixelsweatshop’s picture

StatusFileSize
new56.42 KB

I agree. This is very obtrusive. Here is a screenshot where the help text actually displays over top of the actual content.

screenshot

saltednut’s picture

Yeah... I had to set seven as the theme for views_ui because ember makes it almost unusable. No screenshots but I'll bump (troll) +1 etc...

pixelsweatshop’s picture

I needed a temp fix so in my subtheme I added the following to override.

.form-item .description{
	display:block;
}

.form-item:hover > .description {
    background: none;
    border: none;
    box-shadow: none;
    left: 0;
    margin-top: 5px;
    padding: 0;
    position: static;
    top: 0;
}
pixelsweatshop’s picture

Title: Less obtrusive tooltips » Less obtrusive tooltips (Field Help text)

Upon further investigation, the approach of having the help text appear when hovering is awful for touch devices as well. Since, there is no "hover" state in touch, the help text inconsistently appears/disappears. I can see the benefit of simplifying the UI by moving the help text out, but it adds a whole other level of UXWTF by doing so. I would recommend scrapping this feature altogether.

tkoleary’s picture

@brantwynn : If you have a patch that entirely removes this behavior I'll commit it. This is causing a lot of people problems.

saltednut’s picture

Assigned: Unassigned » saltednut

I'll work on a patch this week.

tkoleary’s picture

@brantwynn

Awesome, thx.

tkoleary’s picture

@brantwynn Went ahead and patched it myself

Pushed to 7.x-1.x branch

tkoleary’s picture

Assigned: saltednut » tkoleary
Status: Active » Fixed
saltednut’s picture

Oh, word...Thanks tkoleary!

Status: Fixed » Closed (fixed)

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