Угловой коврик не работает в браузере Safari - PullRequest
0 голосов
/ 20 февраля 2019

Угловая опция выбора 6 матов не работает для всего приложения.

 <div fxLayout="row wrap" fxLayoutAlign="start stretch" fxShow="true" fxHide="false" *ngIf="showbuyer">
   <mat-form-field floatLabel="never" class="removeselect">
     <mat-select placeholder="Buyer" floatLabel="never" (selectionChange)="buyerChange()" [(ngModel)]="buyerK">
        <mat-option *ngFor="let buyer of buyers;" [value]="buyer?.userKey">{{buyer?.userName}}</mat-option>
     </mat-select>
    </mat-form-field>
  </div>

1 Ответ

0 голосов
/ 24 февраля 2019
I removed override select CSS, now it is working  
if we want to apply any CSS class to <mat-select> we should use

 disableOptionCentering="" panelClass="custompanel" to <mat-select>

       <mat-form-field floatLabel="never">
          <mat-select disableOptionCentering="" panelClass="custompanel" [(ngModel)]="typeAuction">
            <mat-option *ngFor="let auction of Typeauctions; " [value]="auction">{{auction}}</mat-option>
          </mat-select>
        </mat-form-field>

  For CSS

.custompanel{
             margin-top:64px;
            }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...