I honestly don't know whether to call this a bug or not however on the path "maestro/taskconsole" the table column "Task Name" has a link in it yet you would never know until you hover over it. From a standpoint of what's common I would call this a bug but it really doesn't stop anything from working.

However, for a newbie to the system it is misleading and can waste time.

Comments

_randy’s picture

Status: Active » Postponed (maintainer needs more info)

Parking this one - Sounds like this could be a css issue for a theme or specific browser. The task names are clickable to execute the task by end users.

Reg’s picture

Unfortunately it is the CSS from maestro causing this. It's specifying black with no other attributes such as underline just as you would expect from normal text without a link. When you hover it goes underlining and blue as you would expect from a link.

File: maestro.css
Line: 227
Rule:

* Older tooltip or on-hover css styles */
a.info{
  position:relative; /*this is the key*/
  z-index:24;
  color: #000;
  text-decoration:none
}

Which I changed to:

* Older tooltip or on-hover css styles */
a.info{
  position:relative; /*this is the key*/
  z-index:24;
  color: #016FAF;
  text-decoration:none
}