mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
parent
56e08a1294
commit
046acdac19
@ -0,0 +1,19 @@
|
|||||||
|
.mdl-list__item {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.activiti-filters__entry {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.activiti-filters__entry-icon {
|
||||||
|
margin-right: 12px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.activiti-filters__entry.active {
|
||||||
|
color: rgb(68,138,255);
|
||||||
|
}
|
||||||
|
|
||||||
|
.activiti-filters__entry.active .activiti-filters__entry-icon {
|
||||||
|
color: rgb(68,138,255);
|
||||||
|
}
|
@ -1,8 +1,9 @@
|
|||||||
<div class="menu-container">
|
<div class="menu-container">
|
||||||
<ul class='mdl-list'>
|
<ul class='mdl-list'>
|
||||||
<li class="mdl-list__item" (click)="selectReport(report)" *ngFor="let report of reports; let idx = index">
|
<li class="mdl-list__item activiti-filters__entry" (click)="selectReport(report)" *ngFor="let report of reports; let idx = index"
|
||||||
|
[class.active]="currentReport === report">
|
||||||
<span [attr.id]="'report-list-' + idx" class="mdl-list__item-primary-content">
|
<span [attr.id]="'report-list-' + idx" class="mdl-list__item-primary-content">
|
||||||
<i class="material-icons mdl-list__item-icon">assignment</i>
|
<i class="material-icons mdl-list__item-icon activiti-filters__entry-icon" [attr.data-automation-id]="report.name + '_filter'">assignment</i>
|
||||||
<span class="text">{{report.name}}</span>
|
<span class="text">{{report.name}}</span>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user