Replaced shitty paper-tooltip with custom css tooltip

This commit is contained in:
Stefan Zermatten
2017-07-21 11:01:18 +02:00
parent e89b877326
commit 15e6c12c03
4 changed files with 52 additions and 14 deletions

View File

@@ -0,0 +1,18 @@
.simple-tooltip:hover .tooltip {
opacity: 0.9;
}
.tooltip {
opacity: 0;
transition: opacity 200ms ease-in;
font-size: 12px;
line-height: 1;
background-color: #616161;
color: white;
padding: 8px;
border-radius: 2px;
position: absolute;
right: calc(100% + 8px);
pointer-events: none;
white-space: nowrap;
}