Angular Material mat-table 与父子行的替代颜色
Alternate color with Angular Material mat-table with parent child rows
我有一个 Angular Material mat-table
,我使用 CSS 样式来替代行颜色。这是 CSS 样式:
.mat-row:nth-child(even){
background-color: #e4f0ec;
}
.mat-row:nth-child(odd){
background-color:#ffffff;
}
这在我的 mat-table 没有定义的子行时有效。当我添加另一个由 "expandedDetail" 指定的 ng-container
时,这不再起作用。所有行都是白色的,但展开的子行是彩色的。
我按照 material.angular.io
的例子
我看到了行样式的其他示例,但它们使用的是 tr 标签。在示例和我的代码中,我为每一列使用了 ng-container
、th 和 td 标签。
感谢任何帮助。
我将项目添加到 stackblitz
https://stackblitz.com/edit/angular-4bcxtv
这是我使用的HTML代码
<table mat-table
[dataSource]="dataSource" multiTemplateDataRows
class="mat-elevation-z8">
<ng-container matColumnDef="{{column}}" *ngFor="let column of columnsToDisplay">
<th mat-header-cell *matHeaderCellDef> {{column}} </th>
<td mat-cell *matCellDef="let element"> {{element[column]}} </td>
</ng-container>
<!-- Expanded Content Column - The detail row is made up of this one column that spans across all columns -->
<ng-container matColumnDef="expandedDetail">
<td mat-cell *matCellDef="let element" [attr.colspan]="columnsToDisplay.length">
<div class="example-element-detail"
[@detailExpand]="element == expandedElement ? 'expanded' : 'collapsed'">
<div class="example-element-diagram">
<div class="example-element-position"> {{element.position}} </div>
<div class="example-element-symbol"> {{element.symbol}} </div>
<div class="example-element-name"> {{element.name}} </div>
<div class="example-element-weight"> {{element.weight}} </div>
</div>
<div class="example-element-description">
{{element.description}}
<span class="example-element-description-attribution"> -- Wikipedia </span>
</div>
</div>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="columnsToDisplay"></tr>
<tr mat-row *matRowDef="let element; columns: columnsToDisplay;"
class="example-element-row"
[class.example-expanded-row]="expandedElement === element"
(click)="expandedElement = expandedElement === element ? null : element">
</tr>
<tr mat-row *matRowDef="let row; columns: ['expandedDetail']" class="example-detail-row"></tr>
</table>
该死的 - 这花了我太长时间才发现,更糟糕的是..我不知道它为什么有效..
.mat-row:nth-child(2n+1){
background-color: #e4f0ec;
}
.mat-row:not(:nth-child(4n+1)){
background-color:#ffffff;
}
希望能帮到你:)
您可以在该行上设置自己的 class,然后将其作为目标,以免弄乱 n-depth 和随着 html 更改而中断的复杂选择器。
.my-row {
background-color: #e4f0ec;
}
.my-row__alternate {
background-color:#ffffff;
}
<tr mat-row *matRowDef="let element; columns: columnsToDisplay; let i = index"
class="my-row"
[class.my-row__alternate]="i % 2">
</tr>
我希望你可能需要这个。
.mat-row:nth-child(2n+1) {
background-color: #FFFFFF;
}
.mat-row:nth-child(2n) {
background-color: #F2F5F7;
}
.mat-row:nth-child(4n) {
background-color: #FFFFFF;
}
.mat-row:nth-child(4n+1) {
background-color: #F2F5F7;
}
将 mat-table
与 multiTemplateDataRows
一起使用时,行由 dataIndex
索引。
<tr mat-row *matRowDef="let row; let i = dataIndex; columns: ['expandedDetail']" class="example-detail-row" [ngClass]="{'alt-row': i % 2}"></tr>
我对 mat-option css 有疑问,它必须有交替背景。用这个解决了:
.mat-option {
&:nth-child(2n+1) {
background-color: #f0efff;
}
&:not(:nth-child(2n+1)) {
background-color: #fff;
}
}
注意第二个 nth-child 前面有“:not”
您可以在 css 下方使用 table 行和 multiTemplateDataRows。这将剥离 table 行 + multiTemplateDataRows 组。
.mat-row:nth-child(4n-1), .mat-row:nth-child(4n) {
background-color: #e4f0ec;
}
我想我会跟进这个问题,因为我最近遇到了这个问题,并发现了一些有用的信息,这些信息导致了以下优雅的方法:
在您的 table html 中,我们可以利用内置的“奇数”或“偶数”属性,具体取决于您首先想要的颜色。
<tr mat-row *matRowDef="let row; let odd = odd; columns: columnNames;" [class.striped-row]="odd"></tr>
然后在您的CSS中添加以下内容:
.striped-row {
background-color: #ececec;
}
我有一个 Angular Material mat-table
,我使用 CSS 样式来替代行颜色。这是 CSS 样式:
.mat-row:nth-child(even){
background-color: #e4f0ec;
}
.mat-row:nth-child(odd){
background-color:#ffffff;
}
这在我的 mat-table 没有定义的子行时有效。当我添加另一个由 "expandedDetail" 指定的 ng-container
时,这不再起作用。所有行都是白色的,但展开的子行是彩色的。
我按照 material.angular.io
的例子我看到了行样式的其他示例,但它们使用的是 tr 标签。在示例和我的代码中,我为每一列使用了 ng-container
、th 和 td 标签。
感谢任何帮助。
我将项目添加到 stackblitz
https://stackblitz.com/edit/angular-4bcxtv
这是我使用的HTML代码
<table mat-table
[dataSource]="dataSource" multiTemplateDataRows
class="mat-elevation-z8">
<ng-container matColumnDef="{{column}}" *ngFor="let column of columnsToDisplay">
<th mat-header-cell *matHeaderCellDef> {{column}} </th>
<td mat-cell *matCellDef="let element"> {{element[column]}} </td>
</ng-container>
<!-- Expanded Content Column - The detail row is made up of this one column that spans across all columns -->
<ng-container matColumnDef="expandedDetail">
<td mat-cell *matCellDef="let element" [attr.colspan]="columnsToDisplay.length">
<div class="example-element-detail"
[@detailExpand]="element == expandedElement ? 'expanded' : 'collapsed'">
<div class="example-element-diagram">
<div class="example-element-position"> {{element.position}} </div>
<div class="example-element-symbol"> {{element.symbol}} </div>
<div class="example-element-name"> {{element.name}} </div>
<div class="example-element-weight"> {{element.weight}} </div>
</div>
<div class="example-element-description">
{{element.description}}
<span class="example-element-description-attribution"> -- Wikipedia </span>
</div>
</div>
</td>
</ng-container>
<tr mat-header-row *matHeaderRowDef="columnsToDisplay"></tr>
<tr mat-row *matRowDef="let element; columns: columnsToDisplay;"
class="example-element-row"
[class.example-expanded-row]="expandedElement === element"
(click)="expandedElement = expandedElement === element ? null : element">
</tr>
<tr mat-row *matRowDef="let row; columns: ['expandedDetail']" class="example-detail-row"></tr>
</table>
该死的 - 这花了我太长时间才发现,更糟糕的是..我不知道它为什么有效..
.mat-row:nth-child(2n+1){
background-color: #e4f0ec;
}
.mat-row:not(:nth-child(4n+1)){
background-color:#ffffff;
}
希望能帮到你:)
您可以在该行上设置自己的 class,然后将其作为目标,以免弄乱 n-depth 和随着 html 更改而中断的复杂选择器。
.my-row {
background-color: #e4f0ec;
}
.my-row__alternate {
background-color:#ffffff;
}
<tr mat-row *matRowDef="let element; columns: columnsToDisplay; let i = index"
class="my-row"
[class.my-row__alternate]="i % 2">
</tr>
我希望你可能需要这个。
.mat-row:nth-child(2n+1) {
background-color: #FFFFFF;
}
.mat-row:nth-child(2n) {
background-color: #F2F5F7;
}
.mat-row:nth-child(4n) {
background-color: #FFFFFF;
}
.mat-row:nth-child(4n+1) {
background-color: #F2F5F7;
}
将 mat-table
与 multiTemplateDataRows
一起使用时,行由 dataIndex
索引。
<tr mat-row *matRowDef="let row; let i = dataIndex; columns: ['expandedDetail']" class="example-detail-row" [ngClass]="{'alt-row': i % 2}"></tr>
我对 mat-option css 有疑问,它必须有交替背景。用这个解决了:
.mat-option {
&:nth-child(2n+1) {
background-color: #f0efff;
}
&:not(:nth-child(2n+1)) {
background-color: #fff;
}
}
注意第二个 nth-child 前面有“:not”
您可以在 css 下方使用 table 行和 multiTemplateDataRows。这将剥离 table 行 + multiTemplateDataRows 组。
.mat-row:nth-child(4n-1), .mat-row:nth-child(4n) {
background-color: #e4f0ec;
}
我想我会跟进这个问题,因为我最近遇到了这个问题,并发现了一些有用的信息,这些信息导致了以下优雅的方法: 在您的 table html 中,我们可以利用内置的“奇数”或“偶数”属性,具体取决于您首先想要的颜色。
<tr mat-row *matRowDef="let row; let odd = odd; columns: columnNames;" [class.striped-row]="odd"></tr>
然后在您的CSS中添加以下内容:
.striped-row {
background-color: #ececec;
}