v2.26.6: fix oversized branded 'i' logo on dashboard pages (#189)

.logo span { display: inline } in dashboard CSS had specificity (0,1,1),
overriding .brand-i { display: inline-block } at (0,1,0). Inline elements
ignore width/height, so the SVG rendered at intrinsic size (~80px tall).
Added .logo .brand-i selector at (0,2,0) to retain inline-block display.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-03-14 15:57:25 +00:00
parent 2bbf896e7c
commit dc0850d339
4 changed files with 21 additions and 4 deletions

View File

@@ -7,10 +7,17 @@ import os
import sys
# Application version
VERSION = "2.26.5"
VERSION = "2.26.6"
# Changelog - latest release notes (shown on welcome screen)
CHANGELOG = [
{
"version": "2.26.6",
"date": "March 2026",
"highlights": [
"Fix oversized branded 'i' logo on Aircraft & Vessel dashboards",
]
},
{
"version": "2.26.5",
"date": "March 2026",