PHPRad Classic Initial 2.7.3 Forum

PHPRad Forum => Bugs => Topic started by: wurzelsepp1 on March 18, 2020, 12:28:57 PM

Title: tooltip disabling buttons
Post by: wurzelsepp1 on March 18, 2020, 12:28:57 PM
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?

Title: Re: tooltip disabling buttons
Post by: Robhawlor on April 10, 2020, 05:31:23 PM
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.
Title: Re: tooltip disabling buttons
Post by: Douglas on May 18, 2020, 02:27:58 AM
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", "");
Title: Re: tooltip disabling buttons
Post by: robertinog on March 16, 2021, 03:38:19 PM
Someone resolve this issue I discover work correct only with IE but Chrome, Firefox Opera has still the same problem
Title: Re: tooltip disabling buttons
Post by: Usman on December 20, 2021, 12:51:06 PM
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;
}