This article provides an excellent explanation and example regarding CDK.
CDK - . Angular Material Design.
CDK , , overlay, stepper table. , CDK .
material2, , , . ViewEncapsulation.
, <md-tab>, :
Typescript:
import {Component, ViewEncapsulation} from '@angular/core';
@Component({
....
encapsulation: ViewEncapsulation.None
})
css:
.mat-tab-label {
min-width: 25px !important;
padding: 5px;
background-color: transparent;
color: red;
font-weight: 700;
}
.mat-tab-label.mat-tab-label-active {
min-width: 25px !important;
padding: 5px;
background-color: transparent;
color: red;
font-weight: 700;
}
.mat-ink-bar {
background-color: green;
}
.