pan3793 commented on code in PR #56694:
URL: https://github.com/apache/spark/pull/56694#discussion_r3464114349
##########
sql/core/src/main/resources/org/apache/spark/sql/execution/ui/static/spark-sql-viz.css:
##########
@@ -243,3 +243,23 @@ svg g.cluster.search-dimmed {
.sql-cell-details[open] > summary {
margin-bottom: 0.25rem;
}
+
+/* Zoom hint overlay */
+.plan-viz-zoom-hint {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ background: rgba(0, 0, 0, 0.7);
+ color: #fff;
+ padding: 8px 16px;
+ border-radius: 6px;
+ font-size: 14px;
+ pointer-events: none;
+ opacity: 0;
+ transition: opacity 0.2s;
+ z-index: 10;
+}
+.plan-viz-zoom-hint.visible {
+ opacity: 1;
+}
Review Comment:
It might be a GitHub rendering issue, but I don't see it. Anyway, this is
not a big deal.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]