Skip to main content

Show Posts

This section allows you to view all Show Posts made by this member. Note that you can only see Show Posts made in areas you currently have access to.

Messages - Usman

1
Bugs / Re: tooltip disabling buttons
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;
}