1
0
mirror of git://f0xx.org/ac/ac-be-hub synced 2026-08-09 20:59:23 +03:00

Hub globe v2: mercator wrap, GPU path, landing layout updates.

Refine 3D globe rendering, layer CSS, landing page wiring and TOC UX.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-08-07 22:15:46 +02:00
parent 78d5911e48
commit c54919189c
7 changed files with 1404 additions and 199 deletions

View File

@@ -36,7 +36,30 @@
border-radius: 50%;
}
.hub-globe-canvas.is-dragging {
/* v11 fog halo extends outside the disk — square canvas, no circular CSS clip */
.hub-globe-canvas--halo {
border-radius: 0;
}
.hub-globe-canvas--body,
.hub-globe-canvas--land {
pointer-events: none;
}
.hub-globe-canvas--overlay {
z-index: 2;
}
.hub-globe-canvas--land {
z-index: 1;
}
.hub-globe-canvas--body {
z-index: 0;
}
.hub-globe-canvas.is-dragging,
.hub-globe-canvas--overlay.is-dragging {
pointer-events: auto;
cursor: grabbing;
}