38 lines
672 B
SCSS
38 lines
672 B
SCSS
.bowtie-graph-tooltip {
|
|
position: absolute;
|
|
background: rgba(#11131f, 0.95);
|
|
border-radius: 4px;
|
|
box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
|
|
color: #b1b1b1;
|
|
padding: 10px 15px;
|
|
text-align: left;
|
|
pointer-events: none;
|
|
max-width: 300px;
|
|
|
|
p {
|
|
margin: 0;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.address {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: baseline;
|
|
justify-content: flex-start;
|
|
|
|
.first {
|
|
flex-grow: 0;
|
|
flex-shrink: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-right: -2px;
|
|
}
|
|
|
|
.last-four {
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
}
|
|
}
|
|
} |