From 0113705cb6a398223c9332ebaf80e4ed2ed92232 Mon Sep 17 00:00:00 2001 From: Drew Willcoxon Date: Thu, 31 Jan 2019 18:57:23 +0000 Subject: [PATCH] Bug 1523774 - Hide the secondary separator em dash when the title is empty. r=dao Seems like we want to hide it whenever the title is empty, not only in the search @alias case that this bug was filed about. Differential Revision: https://phabricator.services.mozilla.com/D18004 --HG-- extra : moz-landing-system : lando --- browser/themes/shared/urlbar-autocomplete.inc.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/browser/themes/shared/urlbar-autocomplete.inc.css b/browser/themes/shared/urlbar-autocomplete.inc.css index 77aaf0564e23..3883cb2d9022 100644 --- a/browser/themes/shared/urlbar-autocomplete.inc.css +++ b/browser/themes/shared/urlbar-autocomplete.inc.css @@ -106,6 +106,10 @@ margin: 0 .4em; } +.urlbarView-title:empty + .urlbarView-secondary::before { + display: none; +} + .urlbarView-secondary { color: var(--urlbar-popup-action-color); font-size: 0.9em;