mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Prevent flickering of large tooltips on the Graphical EXPLAIN canvas. Fixes #4224 EXPLAIN options should be Query Tool instance-specific. Fixes #4395
74 lines
1.1 KiB
CSS
74 lines
1.1 KiB
CSS
.pg-explain-zoom-area {
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 5px;
|
|
opacity: 0.5;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.pg-explain-zoom-btn,
|
|
.pg-explain-download-btn {
|
|
top: 5px;
|
|
min-width: 25px;
|
|
cursor: pointer;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.pg-explain-zoom-area:hover,
|
|
.pg-explain-stats-area:hover,
|
|
.pg-explain-download-area:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
.pg-explain-stats-area {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 25px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.pg-explain-stats-btn {
|
|
top: 5px;
|
|
min-width: 25px;
|
|
pointer-events: none;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.explain-tooltip {
|
|
display: table-cell;
|
|
text-align: left;
|
|
white-space: nowrap;
|
|
padding: 2px !important;
|
|
font-size: small;
|
|
}
|
|
|
|
td.explain-tooltip-val {
|
|
display: table-cell;
|
|
text-align: left;
|
|
white-space: pre-wrap;
|
|
padding: 2px !important;
|
|
font-size: small;
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
.pgadmin-tooltip-table {
|
|
border-collapse: collapse;
|
|
border-spacing: 1px;
|
|
top: auto;
|
|
left: auto;
|
|
}
|
|
|
|
.pgadmin-explain-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.pg-explain-download-area {
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 79px;
|
|
opacity: 0.5;
|
|
}
|