alfresco-ng2-components/lib/insights/analytics-process/components/analytics-report-list.component.html
davidcanonieto 1a21f234b6 [ADF-3746] Add style lint rules (#3975)
* add stylelint

* fix style first part

*  fix style second part

*  fix style third part

*  fix style fourth part

* Fix e2e tests first part

* Fix e2e tests second part

* Rebase branch

*  fix style third part

*  fix style fourth part

* Fix list error

* fix insights

* fix style abotu component

* Fix e2e tests second part

* Rebase branch

*  fix style third part

*  fix style fourth part

* Fix list error

* Fix e2e tests second part

* Rebase branch

*  fix style third part

*  fix style fourth part

* Fix list error

* [ADF-3746] Rebase branch

* Fix e2e tests second part

* Rebase branch

*  fix style third part

*  fix style fourth part

* Fix list error

* Fix e2e tests second part

* Rebase branch

* Fix list error

* fix new style added

* tslint fix

* [ADF-3746] Fix scss errors on Process Filters Cloud component
2018-11-28 14:43:18 +00:00

33 lines
1.5 KiB
HTML

<div class="adf-analytics-report-list menu-container">
<mat-nav-list *ngIf="isList()">
<mat-list-item
class="adf-activiti-filters__entry"
(click)="selectReport(report)"
*ngFor="let report of reports; let idx = index"
[class.adf-active]="currentReport === report">
<span [attr.id]="'report-list-' + idx" class="adf-activiti-filters__label">
<mat-icon mat-list-icon
[attr.data-automation-id]="report.name + '_filter'"
class="adf-activiti-filters__entry-icon">assignment</mat-icon>
<span class="adf-text">{{report.name}}</span>
</span>
</mat-list-item>
</mat-nav-list>
<div class="adf-report-card-grids" *ngIf="isGrid()">
<mat-card (click)="selectReport(report)" class="adf-report-card" *ngFor="let report of reports;">
<div class="adf-report-card-logo logo">
<mat-icon class="adf-report-card-logo-icon">equalizer</mat-icon>
</div>
<div mat-card-title class="adf-report-card-title">
<h1 class="adf-application-title">{{report.name}}</h1>
</div>
<div mat-card-content class="adf-report-card-content">
<p>{{report.description}}</p>
</div>
<div mat-card-actions class="adf-report-card-actions">
<mat-icon class="adf-report-card-actions-icon" *ngIf="isSelected(report)">done</mat-icon>
</div>
</mat-card>
</div>
</div>