Skip to main content
Topic: tooltip disabling buttons (Read 1350 times) previous topic - next topic

tooltip disabling buttons

New day, new bug:

On a database list-page, the buttons are covered by a tooltip. so the user cannot use the buttons.

could you repair that, so that we can continue testing?


Re: tooltip disabling buttons

Reply #1
Add another row of data. This is a bootstrap issue not a phprad issue as it is reported on several forums related to bootstrap.

You can also change from icons to drop down for the options.

Re: tooltip disabling buttons

Reply #2
New day, new bug:

On a database list-page, the buttons are covered by a tooltip. so the user cannot use the buttons.

could you repair that, so that we can continue testing?

remove with:

$("a").attr("data-original-title", "");
DougBack

Re: tooltip disabling buttons

Reply #3
Someone resolve this issue I discover work correct only with IE but Chrome, Firefox Opera has still the same problem

 

Re: tooltip disabling buttons

Reply #4
In list page of PHPRad Classic, Button tooltip blinking problem is solved by adding below code in (Custom CSS) code editor.

Code: [Select]
.tooltip {
  position: relative;
  display: none;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: hidden;
}