From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id 4BC599565B for ; Tue, 27 Feb 2024 09:53:48 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 2A60619E27 for ; Tue, 27 Feb 2024 09:53:18 +0100 (CET) Received: from proxmox-new.maurer-it.com (proxmox-new.maurer-it.com [94.136.29.106]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS for ; Tue, 27 Feb 2024 09:53:16 +0100 (CET) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 68B154769E for ; Tue, 27 Feb 2024 09:53:16 +0100 (CET) From: Dominik Csapak To: pmg-devel@lists.proxmox.com Date: Tue, 27 Feb 2024 09:53:15 +0100 Message-Id: <20240227085315.1009635-1-d.csapak@proxmox.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.019 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pmg-devel] [PATCH pmg-gui] objects: add separator between match field selector and description X-BeenThere: pmg-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Mail Gateway development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Feb 2024 08:53:48 -0000 to make it easier to see they are separate for that we have to make the top level docked item a 'toolbar' Signed-off-by: Dominik Csapak --- js/ObjectGroup.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/js/ObjectGroup.js b/js/ObjectGroup.js index 8c72dd2..4fc74ed 100644 --- a/js/ObjectGroup.js +++ b/js/ObjectGroup.js @@ -40,6 +40,7 @@ Ext.define('PMG.ObjectGroup', { if (me.ogdata === undefined) { me.down('#oginfo').update(me.emptyText); + me.down('#separator').setHidden(true); me.down('#modeBox').setHidden(true); me.down('#whatWarning').setHidden(true); } else { @@ -49,6 +50,7 @@ Ext.define('PMG.ObjectGroup', { me.down('#oginfo').update(html); me.down('#ogdata').setHidden(false); + me.down('#separator').setHidden(false); let modeSelector = me.down('#modeSelector'); modeSelector.suspendEvents(); me.down('#modeSelector').setValue(mode); @@ -228,9 +230,13 @@ Ext.define('PMG.ObjectGroup', { me.dockedItems.push({ dock: 'top', border: 1, - layout: 'hbox', + layout: { + type: 'hbox', + align: 'stretch', + }, hidden: !!me.hideGroupInfo, itemId: 'ogdata', + xtype: 'toolbar', items: [ { xtype: 'container', @@ -274,6 +280,11 @@ Ext.define('PMG.ObjectGroup', { }, ], }, + { + xtype: 'tbseparator', + itemId: 'separator', + hidden: true, + }, { xtype: 'component', flex: 1, -- 2.30.2