Popup fixes

This commit is contained in:
2026-06-27 17:47:38 -04:00
parent 34c52ffb9f
commit 835856e74c
6 changed files with 13 additions and 21 deletions

View File

@@ -247,7 +247,7 @@ const navball = computed(() => {
<style scoped>
.aircraft-popup {
position: fixed;
z-index: 9999;
z-index: 100;
pointer-events: auto;
background: rgba(0,0,0,0.88);
border: 1px solid rgba(200,200,220,0.3);

View File

@@ -255,7 +255,7 @@ const compass = computed(() => {
<style scoped>
.ship-popup {
position: fixed;
z-index: 9999;
z-index: 100;
pointer-events: auto;
background: rgba(0,0,0,0.88);
border: 1px solid rgba(200,200,220,0.3);
@@ -342,7 +342,7 @@ const compass = computed(() => {
}
.sp-gauge:hover { border-color: #0f0; }
.sp-gauge-val { font-size: 20px; font-weight: bold; color: #0ff; }
.sp-gauge-unit { font-size: 11px; color: #0ff; margin-bottom: 2px; }
.sp-gauge-unit { font-size: 11px; color: #0ff; margin-bottom: 5px; }
.sp-compass { flex: 1; }
</style>