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)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id C5D0572C22 for ; Wed, 26 May 2021 11:20:03 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id BF3C1F7B1 for ; Wed, 26 May 2021 11:20:03 +0200 (CEST) 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)) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 7C760F76C for ; Wed, 26 May 2021 11:20:02 +0200 (CEST) Received: from proxmox-new.maurer-it.com (localhost.localdomain [127.0.0.1]) by proxmox-new.maurer-it.com (Proxmox) with ESMTP id 1E1D546676 for ; Wed, 26 May 2021 11:13:13 +0200 (CEST) From: Dominik Csapak To: pmg-devel@lists.proxmox.com Date: Wed, 26 May 2021 11:13:09 +0200 Message-Id: <20210526091312.20930-2-d.csapak@proxmox.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20210526091312.20930-1-d.csapak@proxmox.com> References: <20210526091312.20930-1-d.csapak@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-SPAM-LEVEL: Spam detection results: 0 AWL 0.036 Adjusted score from AWL reputation of From: address 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 Subject: [pmg-devel] [PATCH pmg-gui 1/4] change ui to 'pve-nav' 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: Wed, 26 May 2021 09:20:03 -0000 since 'nav' contains some styling we do not want (in extjs 7.0) Signed-off-by: Dominik Csapak --- css/ext6-pmg.css | 2 +- js/ConfigPanel.js | 2 +- js/MainView.js | 2 +- js/NavigationTree.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/css/ext6-pmg.css b/css/ext6-pmg.css index 68b008b..b9d916f 100644 --- a/css/ext6-pmg.css +++ b/css/ext6-pmg.css @@ -138,7 +138,7 @@ table:not(.x-grid-item-selected) tr.x-grid-row.disabled { color: #000; } -.x-treelist-nav { +.x-treelist-pve-nav { background-color: #f5f5f5; border-right: 1px solid #cfcfcf; } diff --git a/js/ConfigPanel.js b/js/ConfigPanel.js index c7148cb..f6aaaad 100644 --- a/js/ConfigPanel.js +++ b/js/ConfigPanel.js @@ -58,7 +58,7 @@ Ext.define('PMG.panel.Config', { items: { xtype: 'treelist', itemId: 'menu', - ui: 'nav', + ui: 'pve-nav', expanderOnly: true, expanderFirst: false, animation: false, diff --git a/js/MainView.js b/js/MainView.js index 01b9658..9ebd065 100644 --- a/js/MainView.js +++ b/js/MainView.js @@ -233,7 +233,7 @@ Ext.define('PMG.MainView', { }, }, { xtype: 'box', - cls: 'x-treelist-nav', + cls: 'x-treelist-pve-nav', flex: 1, }], }, diff --git a/js/NavigationTree.js b/js/NavigationTree.js index 63f8e94..2c4d5a5 100644 --- a/js/NavigationTree.js +++ b/js/NavigationTree.js @@ -224,5 +224,5 @@ Ext.define('PMG.view.main.NavigationTree', { expanderOnly: true, expanderFirst: false, store: 'NavigationStore', - ui: 'nav', + ui: 'pve-nav', }); -- 2.20.1