mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
46 lines
785 B
CSS
46 lines
785 B
CSS
.d3-flame-graph rect {
|
|
stroke: #EEEEEE;
|
|
fill-opacity: .8;
|
|
}
|
|
|
|
.d3-flame-graph rect:hover {
|
|
stroke: #474747;
|
|
stroke-width: 0.5;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.d3-flame-graph-label {
|
|
pointer-events: none;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
font-size: 12px;
|
|
font-family: Verdana;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
line-height: 1.5;
|
|
padding: 0 0 0;
|
|
font-weight: 400;
|
|
color: black;
|
|
text-align: left;
|
|
}
|
|
|
|
.d3-flame-graph .fade {
|
|
opacity: 0.6 !important;
|
|
}
|
|
|
|
.d3-flame-graph .title {
|
|
font-size: 20px;
|
|
font-family: Verdana;
|
|
}
|
|
|
|
.d3-flame-graph-tip {
|
|
background-color: black;
|
|
border: none;
|
|
border-radius: 3px;
|
|
padding: 5px 10px 5px 10px;
|
|
min-width: 250px;
|
|
text-align: left;
|
|
color: white;
|
|
z-index: 10;
|
|
} |