Skip to content
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.

Commit

Permalink
removed tooltip class
Browse files Browse the repository at this point in the history
  • Loading branch information
retailcoder committed May 20, 2019
1 parent fb1620a commit 13d39de
Showing 1 changed file with 0 additions and 46 deletions.
46 changes: 0 additions & 46 deletions RubberduckWeb/RubberduckWeb/Content/Site.css
Expand Up @@ -2,52 +2,6 @@
padding-bottom: 20px;
}

.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

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

/* Position the tooltip text */
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -60px;

/* Fade in tooltip */
opacity: 0;
transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}

/* Set padding to keep content from hitting the edges */
.body-content {
padding-left: 15px;
Expand Down

0 comments on commit 13d39de

Please sign in to comment.