From ac3ccf57a8b70a73c8eedebcf5f532673bdba30d Mon Sep 17 00:00:00 2001 From: Karl Stolley Date: Fri, 19 Jul 2024 10:24:23 -0400 Subject: [PATCH] navbar_description: Refactor help-widget icon display. --- web/styles/message_view_header.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/web/styles/message_view_header.css b/web/styles/message_view_header.css index b88382bade..057cf0308a 100644 --- a/web/styles/message_view_header.css +++ b/web/styles/message_view_header.css @@ -97,5 +97,20 @@ .fa { margin: 0; } + + .fa-question-circle-o { + /* Override relative position for sake of + Chrome paint bug that keeps the circle + visible when ellipses are showing. */ + position: static; + } + + .help_link_widget { + /* With relative positioning no longer + in effect, we vertically align the + help icon with an inline-block assist, + which is present on the .fa class. */ + vertical-align: middle; + } } }