switch exclude object types table to use declarative table component (#22390)

* switch exclude options to use declarative table component

* add to disposableListeners
This commit is contained in:
Kim Santiago
2023-03-21 14:09:31 -07:00
committed by GitHub
parent 21f271671d
commit 2be49a9911
3 changed files with 49 additions and 32 deletions

View File

@@ -11,6 +11,10 @@ export namespace cssStyles {
export const fontWeightBold = { 'font-weight': 'bold' };
export const titleFontSize = 13;
export const optionsTableHeader = { 'display': 'none', 'border': 'none !important' };
export const optionsTableRowLabel = { ...text, 'border-left': 'none', 'border-right': 'none', 'border-top': 'none', 'border-bottom': 'none' }
export const optionsTableRowCheckbox = { 'border-left': 'none', 'border-right': 'none', 'border-top': 'none', 'border-bottom': 'none' }
export const publishDialogLabelWidth = '205px';
export const publishDialogTextboxWidth = '190px';
export const publishDialogDropdownWidth = '192px';