垫选择覆盖变换(cdk-overlay-pane)

时间:2019-06-12 06:50:24

标签: javascript angular material

我需要将mat-option的宽度设置为与mat-select相同的值。 问题在于cdk覆盖窗格添加了带有转换的样式:translateX(-16px)。

我可以通过SCSS删除它,但是我需要知道是否还有其他选择可以做到这一点。

我尝试覆盖SELECT_PANEL_INDENT_PADDING_X,但没有成功

<mat-form-field [class.mat-form-field-invalid]="hasError">
  <mat-select
    [placeholder]="placeholder"
    [formControlName]="inputId"
    disableOptionCentering
    panelClass="join-panel-alligment"
  >
    <mat-option
      *ngFor="let item of question.answerPossibilityList"
      [id]="question.id + '_so_' + item.id"
      [value]="item"
    >
      {{ item.label }}
    </mat-option>
  </mat-select>
</mat-form-field>

预期结果:https://imgur.com/R56jYiN

0 个答案:

没有答案