Skip to content
Snippets Groups Projects
Commit d987f110 authored by Chris Lawton's avatar Chris Lawton
Browse files

show project title as a tooltip on hover

parent 83782723
No related branches found
No related tags found
No related merge requests found
......@@ -84,6 +84,28 @@ $table-breakpoint: 'tablet-portrait';
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
&::before {
position: absolute;
z-index: -1;
width: 200px;
padding: 5px;
margin-top: 25px;
font-size: 12px;
white-space: normal;
background: #f0fbff;
border: 1px solid #a6ccdd;
content: attr(data-tooltip);
opacity: 0;
transition: opacity $transition;
}
&:hover {
&::before {
z-index: 10;
opacity: 1;
}
}
}
a {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment