1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 06:58:51 +03:00

BE sync / gitea

This commit is contained in:
Anton Afanasyeu
2026-06-10 20:22:08 +02:00
parent 10fade4a4d
commit 5e4f208d83
14 changed files with 781 additions and 17 deletions

View File

@@ -151,7 +151,7 @@
right: 0;
bottom: var(--landing-footer-h);
display: flex;
z-index: 2;
z-index: 5;
pointer-events: none;
}
@@ -410,12 +410,20 @@
}
/* (5) Footer stays platform-footer; lift above globe */
.hub-landing .platform-footer {
.hub-landing .bottom-bar.platform-footer {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 12;
height: var(--landing-footer-h);
min-height: var(--landing-footer-h);
max-height: var(--landing-footer-h);
pointer-events: none;
}
.hub-landing .bottom-bar.platform-footer a,
.hub-landing .bottom-bar.platform-footer button {
pointer-events: auto;
}
/* Clock widget below header */

View File

@@ -29,14 +29,15 @@
/* Interactive globe canvas replaces globe + continents + gridOverlay when globe3d=1 */
.hub-globe-canvas {
position: fixed;
z-index: 3;
pointer-events: auto;
z-index: 1;
pointer-events: none;
cursor: grab;
touch-action: none;
border-radius: 50%;
}
.hub-globe-canvas.is-dragging {
pointer-events: auto;
cursor: grabbing;
}

View File

@@ -904,11 +904,19 @@
inset: 0;
z-index: 20;
}
.hub-docs-modal[hidden] {
display: none !important;
pointer-events: none !important;
}
.hub-docs-backdrop {
position: absolute;
inset: 0;
background: rgba(4, 8, 14, 0.66);
pointer-events: auto;
}
.hub-docs-modal[hidden] .hub-docs-backdrop {
pointer-events: none;
}
.hub-docs-panel {

View File

@@ -36,9 +36,9 @@ function hub_h(string $s): string {
})();
</script>
<link rel="stylesheet" href="/app/androidcast_project/crashes/assets/css/app.css">
<link rel="stylesheet" href="hub.css?v=20260606landing">
<link rel="stylesheet" href="hub-logo-layers.css?v=20260606landing">
<link rel="stylesheet" href="hub-landing.css?v=20260606landing">
<link rel="stylesheet" href="hub.css?v=20260610overlay">
<link rel="stylesheet" href="hub-logo-layers.css?v=20260610overlay">
<link rel="stylesheet" href="hub-landing.css?v=20260610overlay">
<script type="importmap">
{
"imports": {
@@ -415,10 +415,13 @@ function hub_h(string $s): string {
var docsPanelsById = {};
function closeDocs() {
if (!docsModal) return;
docsModal.hidden = true;
docsModal.setAttribute('aria-hidden', 'true');
}
closeDocs();
function openDocs() {
docsModal.hidden = false;
docsModal.setAttribute('aria-hidden', 'false');