diff --git a/static/js/importExportDialog.js b/static/js/importExportDialog.js index 6d2fe86..703b018 100644 --- a/static/js/importExportDialog.js +++ b/static/js/importExportDialog.js @@ -14,7 +14,8 @@ oml.ui.importExportDialog = function(selected) { min: 1, max: 1, selectable: true, - selected: selected + selected: selected, + style: 'squared' }) .css({ width: '768px', @@ -50,6 +51,7 @@ oml.ui.importExportDialog = function(selected) { buttons: [ Ox.Button({ id: 'hide', + style: 'squared', title: Ox._('Hide') }) .bindEvent({ @@ -161,6 +163,7 @@ oml.ui.importExportDialog = function(selected) { $progress[data.activity] = Ox.Progressbar({ progress: -1, showTooltips: true, + style: 'squared', width: 480 }) .css({margin: '4px 16px'}) @@ -174,6 +177,7 @@ oml.ui.importExportDialog = function(selected) { .appendTo($element); $progressButton[data.activity] = Ox.Button({ + style: 'squared', title: '', width: 128 }) @@ -219,6 +223,7 @@ oml.ui.importExportDialog = function(selected) { id: 'path', label: 'Source Path', labelWidth: 128, + style: 'squared', width: 480 }), Ox.SelectInput({ @@ -230,6 +235,7 @@ oml.ui.importExportDialog = function(selected) { labelWidth: 128, max: 1, min: 1, + style: 'squared', value: '', width: 480 }), @@ -241,6 +247,7 @@ oml.ui.importExportDialog = function(selected) { ], label: Ox._('Import Mode'), labelWidth: 128, + style: 'squared', width: 480 }) ] : [ @@ -249,6 +256,7 @@ oml.ui.importExportDialog = function(selected) { id: 'path', label: 'Destination Path', labelWidth: 128, + style: 'squared', width: 480 }), Ox.Select({ @@ -256,6 +264,7 @@ oml.ui.importExportDialog = function(selected) { items: getListItems('export'), label: 'Source', labelWidth: 128, + style: 'squared', value: ':', width: 480 }), @@ -267,6 +276,7 @@ oml.ui.importExportDialog = function(selected) { ], label: Ox._('Export Mode'), labelWidth: 128, + style: 'squared', width: 480 }) ] @@ -283,6 +293,7 @@ oml.ui.importExportDialog = function(selected) { .appendTo($element); $label[selected] = Ox.Label({ //textAlign: 'center', + style: 'squared', title: Ox._( 'Waiting for ' + (selected == 'import' ? 'export' : 'import') @@ -300,6 +311,7 @@ oml.ui.importExportDialog = function(selected) { $activityButton[selected] = Ox.Button({ disabled: true, id: 'import', + style: 'squared', title: Ox._(selected == 'import' ? 'Import' : 'Export'), width: 128 })