creativetimofficial / ct-material-dashboard-pro-angular

68 stars 35 forks source link

mat-select theme in wizard form #176

Open niesteszeck opened 6 years ago

niesteszeck commented 6 years ago

Hi,

The mat-select isn't themed with the correct color in wizard form. It just get the main theme color, not the one configured for the wizard

*I suspect that others material components are in the same situation

niesteszeck commented 6 years ago

Hi, any update?

chelaruc commented 6 years ago

Hi, @niesteszeck. Sorry for the late response. Can you give me an example to test?

niesteszeck commented 6 years ago

image

added

<div class="row">
                        <mat-form-field class="example-full-width has-label">
                          <mat-select
                                  placeholder="Legal Representative"
                                  formControlName="legalRepresentative"
                                  [compareWith]="legalRepresentativeCompare">
                            <mat-option value="nn"> nn</mat-option>
                            <mat-option value="aa"> aa</mat-option>
                            <mat-option value="33"> 33</mat-option>
                          </mat-select>
                        </mat-form-field>
                      </div>

as a second row on content of second page of wizard in /forms/wizard page

The others components in the wizard get the brand-color (brand color is some black, see First name on next picture) image

niesteszeck commented 6 years ago

@chelaruc any update? I still have a purple select

chelaruc commented 6 years ago

@niesteszeck we don't have customizable select colors implemented for the wizard. If you want to implement it, you need to add a class on body like wizard-page and add some scss for select.

niesteszeck commented 6 years ago

@chelaruc Sorry, but I didn't like the answer. I bought an angular material bootstrap theme, that includes several themed plugins, so I expect that I can use material inputs inside this plugins and they get themed as all other things.