19

I am following tutorial to put md-tabs in the md-toolbar from here. But, My selected indicator tab is same color as the md-primarywhich make it invisible. Please see the image below.

enter image description here

But, when I change the color of the md-tabs to md-accent, it will show the indicator.

enter image description here

How do I change the color of the selected indicator tab?

Here is the code:

<md-toolbar class="md-whiteframe-5dp">
    <div class="md-toolbar-tools">
        <h2>Title</h2>
    </div>

    <md-tabs md-selected="tabs.selectedIndex">
        <md-tab id="tab1" aria-controls="tab1-content">Tab #1</md-tab>
        <md-tab id="tab2" aria-controls="tab2-content">Tab #2</md-tab>
        <md-tab id="tab3" aria-controls="tab3-content">Tab #3</md-tab>
    </md-tabs>
</md-toolbar>

<md-content layout-padding flex>
    <ng-switch on="tabs.selectedIndex" class="tabpanel-container">
        <div role="tabpanel" id="tab1-content" aria-labelledby="tab1" ng-switch-when="0" md-swipe-left="tabs.next()" md-swipe-right="tabs.previous()">
            View for Item #1<br />
            data.selectedIndex = 0
        </div>

    <div role="tabpanel" id="tab2-content" aria-labelledby="tab2" ng-switch-when="1" md-swipe-left="tabs.next()" md-swipe-right="tabs.previous()">
        View for Item #2<br />
        data.selectedIndex = 1
    </div>

    <div role="tabpanel" id="tab3-content" aria-labelledby="tab3" ng-switch-when="2" md-swipe-left="tabs.next()" md-swipe-right="tabs.previous()">
        View for Item #3<br />
        data.selectedIndex = 2
    </div>
    </ng-switch>
</md-content>

By the way, all the color are default.

4

7 回答 7

32

最简单的方法是通过 CSS 进行更改:

md-tabs.md-default-theme md-ink-bar, md-tabs md-ink-bar {
    color: red !important;
    background-color:red !important;
}

但您也可以查看文档中关于主题的§: https ://material.angularjs.org/latest/Theming/01_introduction

有时 CSS 会在样式标签中即时嵌入和生成,如果此代码不起作用,请尝试使用!important.

于 2015-11-27T05:07:20.200 回答
8
md-tabs md-ink-bar {
    color: green;
    background-color: green;
}
于 2016-02-01T09:58:57.150 回答
2

CSS

.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {
    background-color: #f44336;                     
}
于 2019-08-22T13:15:24.223 回答
2

您需要定义一个自定义主题并将强调色设置为您希望 md-ink-bar 具有的颜色。在这个例子中它是白色的:

var customAccent = {
    '50': '#b3b3b3',
    '100': '#bfbfbf',
    '200': '#cccccc',
    '300': '#d9d9d9',
    '400': '#e6e6e6',
    '500': '#f2f2f2',
    '600': '#ffffff',
    '700': '#ffffff',
    '800': '#ffffff',
    '900': '#ffffff',
    'A100': '#ffffff',
    'A200': '#fff',
    'A400': '#f2f2f2',
    'A700': '#ffffff'
};
$mdThemingProvider
.definePalette('whiteAccent', customAccent);

$mdThemingProvider.theme('whiteAccentTheme')
    .primaryPalette('deep-purple')
    .accentPalette('whiteAccent');

您可以在此站点上生成重音调色板:https ://angular-md-color.com/#/

在您看来,为您的 md-tabs 使用新的自定义主题:

<div md-theme="whiteAccentTheme">
  <md-tabs class="md-primary">...</md-tabs>
</div>
于 2016-05-03T16:55:29.290 回答
1

我也曾在这个问题上挣扎过。我不喜欢覆盖 CSS 的解决方案。所以有一个更方便和更直接的解决方案:

只需为您的调色板设置默认 HUE:

$mdThemingProvider.theme('default')
            .primaryPalette('amber', { 'default': '600'})
            .accentPalette('indigo', { 'default': '400'});

选项卡墨水条、FAB speedial ……将使用您调色板中的这种颜色。

于 2016-05-03T14:17:56.000 回答
0

在浪费了很多时间阅读不起作用的回复之后,这就是我找到的解决方案。作为 CSS 新手,作为一个鄙视 CSS 的人,我想我会为那些同样是 CSS 新手和鄙视 CSS 的人发布我的解决方案。

HTML

<md-tab-group>
    <md-tab>
        <ng-template md-tab-label>
            <span class="mdTab">Tab Label</span>
        </ng-template>
    </md-tab>
</md-tab-group>

CSS

.mdTab{
  color: white;
}
于 2017-06-24T17:49:47.073 回答
0

派对迟到了,但可能会帮助某人。只需将 mat-tab-group 的颜色属性设置为 none

<mat-tab-group mat-align-tabs="start" mat-align-tabs="center" color="none">
于 2021-06-18T08:39:24.253 回答