From b3db0b5be1166712d4ade273782b8e801448b82a Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Thu, 12 Apr 2018 00:23:42 -0700 Subject: [PATCH] installer: Hide empty textbox if no extension tables were created The textarea is for extension update messages to go, but in some cases extensions don't create any tables so you're left with an empty, confusing textbox. Hide it with CSS if it's empty, since that's an expected condition. Bug: T48802 Change-Id: I798d07d1d6ed65011e9f2a2ac5cc77ad0595df7d --- mw-config/config.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mw-config/config.css b/mw-config/config.css index ea5835d487..2468c71563 100644 --- a/mw-config/config.css +++ b/mw-config/config.css @@ -174,6 +174,11 @@ min-width: 20em; } +/* Hide empty live-log textarea */ +#config-live-log textarea:empty { + display: none; +} + /* tooltip styles */ .config-help-field-hint { display: none; -- 2.20.1