Simon K
Simon K

Reputation: 315

Change style on disabled date picker in Angular Material Design

I'm making an Angular Material website. It contains a date picker. The date picker has the popup enabled but input disabled. This results in a style with a dotted line under the input element. How do i change the styling to make the dotted line solid?

The documentation has an example of the date picker with disabled input right here: https://material.angular.io/components/datepicker/examples See the "Disabled datepicker"part.

Upvotes: 1

Views: 1640

Answers (1)

Igor Tkachenko
Igor Tkachenko

Reputation: 468

On input tag use readonly attribute.

Upvotes: 3

Related Questions