mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-08-15 21:55:56 +00:00
objects: add separator between match field selector and description
Make it easier to see that match-field selector and its description are separate. For that we have to make the top level docked item a 'toolbar'. Reported-by: Thomas Lamprecht <t.lamprecht@proxmox.com> Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
443e7de1f4
commit
758ddf0639
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user