Change navigation logo to account for non-SVGs' collapsed width

Created on 25 December 2024, 3 months ago

Currently SVGs are not allowed when uploading custom logos at /admin/config/user-interface/navigation/settings, but the current CSS only restrains SVGs to a smaller, appropriate width when the navigation menu is collapsed. Other image formats will still attempt to be at "var(--admin-toolbar-space-40)", even though that breaks the logo container when collapsed (attached screenshot).

A simple solution would be to change the current CSS to account for a max-width of 100% and change the "var(--admin-toolbar-space-40)" to being max-height instead, which should be fine as the logos appear to be square.

Before:
.admin-toolbar__logo img {
display: block;
max-width: var(--admin-toolbar-space-40);
}

After:
.admin-toolbar__logo img {
display: block;
max-height: var(--admin-toolbar-space-40);
max-width: 100%;
}

πŸ› Bug report
Status

Active

Version

10.5 ✨

Component

navigation.module

Created by

πŸ‡ΊπŸ‡ΈUnited States w01f

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024