我正在使用角度4而我正在使用Angular Material。
<md-tab-group [disableRipple]=true>
<md-tab label="Tab 1"></md-tab>
<md-tab label="Tab 2"></md-tab>
</md-tab-group>
如何(未选择/选择),文本颜色等完全自定义背景颜色。我已经尝试过使用伪类......但仍无济于事。 ---我已成功设置font-size
但设置时文本颜色有点紧张。请帮忙。
更新
我试图在选中后将背景更改为透明...当在选项卡中未选择链接等时尝试覆盖颜色但仍然无效。
/* Styles go here */
.mat-tab-label{
color:white;
min-width: 25px !important;
padding: 5px;
background-color:transparent;
color:white;
font-weight: 700;
}
/deep/ .mat-tab-label{
min-width: 25px !important;
padding: 5px;
background-color:transparent;
color:white;
font-weight: 700;
}
.md-tab.ng-scope.ng-isolate-scope.md-ink-ripple.md-active{
background-color:transparent;
color:white;
font-weight: 700;
}
.md-tab.ng-scope.ng-isolate-scope.md-ink-ripple{
background-color:transparent;
color:white;
font-weight: 700;
}
.mat-tab-label:active{
min-width: 25px !important;
padding: 5px;
background-color:transparent;
color:white;
font-weight: 700;
}
.mat-tab-label:selected{
min-width: 25px !important;
padding: 5px;
background-color:transparent;
color:white;
font-weight: 700;
}
答案 0 :(得分:29)
在您的组件中,将ViewEncapsulation设置为None
,然后在component.css文件中添加样式。
打字稿代码中的更改:
import {Component, ViewEncapsulation} from '@angular/core';
@Component({
....
encapsulation: ViewEncapsulation.None
})
组件CSS:
/* Styles for tab labels */
.mat-tab-label {
min-width: 25px !important;
padding: 5px;
background-color: transparent;
color: red;
font-weight: 700;
}
/* Styles for the active tab label */
.mat-tab-label.mat-tab-label-active {
min-width: 25px !important;
padding: 5px;
background-color: transparent;
color: red;
font-weight: 700;
}
/* Styles for the ink bar */
.mat-ink-bar {
background-color: green;
}
答案 1 :(得分:12)
如果您不想触摸ViewEncapsulation,请使用:: ng-deep代替类选择器(通过浏览器开发工具检查)。
例如(Angular 5,Material 2):
/* active tab */
::ng-deep .mat-tab-list .mat-tab-labels .mat-tab-label-active {
color:red;
background-color: green;
}
/* ink bar */
::ng-deep .mat-ink-bar {
background-color: var(--primary-color,#1F89CE) !important;
}
答案 2 :(得分:1)
Angular版本6
“自定义标签”的新设计
html
<mat-tab-group [disableRipple]="true" mat-align-tabs="center">
<md-tab label="Tab 1"></md-tab>
<md-tab label="Tab 2"></md-tab>
</md-tab-group>
scss
/deep/ .mat-tab-labels {
min-width: auto !important;
div {
border: 1px solid #fff;
background-color: #404040;
&.mat-tab-label-active {
background-color: #3aafa9;
.mat-tab-label-content {
border: none;
background-color: #3aafa9;
}
}
.mat-tab-label-content {
border: none;
color: #fff !important;
}
}
}
/deep/ .mat-tab-group{
&.mat-primary {
.mat-ink-bar {
background-color: transparent;
}
}
}
/deep/ .mat-tab-body-wrapper{
min-height: 550px
}
/deep/ .mat-tab-label-container {
flex-grow: 0 !important;
}
/deep/ .mat-tab-label{
opacity: 1 !important;
}
答案 3 :(得分:0)
我花了很长时间才弄清楚如何通过覆盖材质设计来更改选项卡的背景颜色。我不知道分享我的最终结果的地方,所以就这样:
.ts文件:
@Component({
selector: 'app-tabs',
templateUrl: './tabs.component.html',
styleUrls: ['./tabs.component.css'],
encapsulation: ViewEncapsulation.None
})
对于css文件:
.mat-tab-labels, .mat-tab-label, .mat-tab-link {
color: white;
font-size: 16px;
background-color: #804A71;
}
.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar{
background: white;
height: 5px;
}
这既是背景色,文本(标签)的颜色和大小,又是文本下方的标签栏。当我同时使用.mat-tab-labels和.mat-tab-label时,它终于起作用了。
答案 4 :(得分:0)
最新解决方案:-
1)覆盖styles.css 2)使用该材料标签所在组件的选择器
app-child .mat-tab-label.mat-tab-label-active {
padding: 0px 15px ;
justify-content: flex-start;
}
app-child .mat-tab-label{
padding: 0px 15px ;
justify-content: flex-start;
}
.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar{
background:#6168e7;
}
答案 5 :(得分:0)
您还可以使用 ::ng-deep 伪元素设置默认材质类的样式。
:host ::ng-deep .mat-tab-label {
border-width: 9px;
border-style: solid;
border-color: orange;
}
:host 是可选的,它将样式范围限定为当前组件中的选项卡。