From f06b629eaa173c66283773b1f6631a625305a523 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Wed, 18 Sep 2024 15:34:51 -0700 Subject: [PATCH] Enhancements for better wrapping of Status Area icons - Add code and CSS for toggling single/multiline display of indicators. - Add code to detect overflow state of indicators. --- src/ui/layout/AppLayout.vue | 22 +++++++++---------- src/ui/layout/layout.scss | 18 +++++++++------ src/ui/layout/status-bar/StatusIndicators.vue | 19 ++++++++++++++-- 3 files changed, 39 insertions(+), 20 deletions(-) diff --git a/src/ui/layout/AppLayout.vue b/src/ui/layout/AppLayout.vue index d662f0aed9..608c52d526 100644 --- a/src/ui/layout/AppLayout.vue +++ b/src/ui/layout/AppLayout.vue @@ -33,7 +33,7 @@ :class="{ 'l-shell__head--expanded': headExpanded, 'l-shell__head--minify-indicators': !headExpanded, - 'l-shell__head--can-wrap': headCanWrap + 'l-shell__head--indicators-single-line': !indicatorsMultiline }" > @@ -41,10 +41,10 @@