Browse Source

UI: fixed text color of table widgets not applying to action cell buttons

pull/11736/head
rusikv 2 years ago
parent
commit
278d3c2b1b
  1. 6
      ui-ngx/src/app/modules/home/components/widget/lib/table-widget.models.ts

6
ui-ngx/src/app/modules/home/components/widget/lib/table-widget.models.ts

@ -464,6 +464,12 @@ export function constructTableCssString(widgetConfig: WidgetConfig): string {
'.mat-mdc-table .mat-mdc-cell button.mat-mdc-icon-button[disabled][disabled] mat-icon {\n' +
'color: ' + mdDarkDisabled + ';\n' +
'}\n' +
'.mat-mdc-table .mat-mdc-cell button.mat-mdc-icon-button tb-icon {\n' +
'color: ' + mdDarkSecondary + ';\n' +
'}\n' +
'.mat-mdc-table .mat-mdc-cell button.mat-mdc-icon-button[disabled][disabled] tb-icon {\n' +
'color: ' + mdDarkDisabled + ';\n' +
'}\n' +
'.mat-divider {\n' +
'border-top-color: ' + mdDarkDivider + ';\n' +
'}\n' +

Loading…
Cancel
Save