角度材质设计MatInput改变颜色

时间:2017-11-12 15:56:40

标签: javascript angular-material2 angular5

我一直在玩角5和新材料设计5-rc.0。

由于某些原因,我无法更改MatInput标签的颜色。 我的代码看起来像这样。

 <section class="login-form-container">
<form [formGroup]="form" class="text-center login-form">
    <div class="text-center">
      <div>
        <mat-form-field >
          <input class="input-line" matInput formControlName="username" placeholder="Input" color="blue">
        </mat-form-field>
      </div>
      <div>
        <mat-form-field >
          <input matInput formControlName="password" placeholder="Input">
        </mat-form-field>
      </div>
    </div>
  <button mat-button >LOGIN</button>
</form>

.login-form-container {
max-width: 422px;
margin: 0 auto;

.login-form {
  margin: 0 auto;
  background-color: white;
  border: 1px solid #d3d3d3;
  padding: 30px 60px;

  mat-form-field {
    width: 100%;
    margin: 18px 0;
    font-size: 16px !important;

    .input-line{
      color: #124cac !important;
    }

  }

  .mat-input-infix {
    font-size: 16px !important;
    color: $blue;
  }
}

button {
  background-color: #0a6ebe;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  letter-spacing: 1px;
  padding:0 50px;
  &:hover {
    background-color: #2196f3;
  }
}

}

我找不到答案here

1 个答案:

答案 0 :(得分:0)

你可以尝试这样(它有效,但我认为这不是一个好方法。):

在您的组件

import { AfterViewInit, ElementRef } from '@angular/core';
    ......  
    constructor(private elRef:ElementRef ){}
    ......

    ngAfterViewInit() {
      const matlabel: HTMLElement = this.elRef.nativeElement.querySelector('.mat-form-field-label');
      matlabel.style.color = 'white';
}