Skip to content

Commit

Permalink
Merge pull request primefaces#80 from atretyak1985/issue_#52
Browse files Browse the repository at this point in the history
Security framework styling issue in Benchmark Rule detail
  • Loading branch information
gunnsth authored Dec 12, 2018
2 parents 2d8f33e + d2febc4 commit 3e715ef
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ <h2 class="modal-title">{{ response.item.section }} - {{ response.item.title }}<
<li class="list-group-item">
<div class="flex-container">
<div class="report-wrapper rules">
<div class="benchmark-titles">
<div class="benchmark-titles">
<div class="list">
<div style="color:black;">Security Frameworks</div>
</div>
</div>
<div class="not-labels">
<span class="report-label security-framework-label" [class.label-default]="!response.item.labels.indexOf(sf.name) >= 0" [class.label-primary]="response.item.labels.indexOf(sf.name) >= 0" style="margin-right: 4px" *ngFor="let sf of securityFrameworks">
<span class="report-label security-framework-label" [class.label-default]="!(response.item.labels.indexOf(sf.name) >= 0)" [class.label-primary]="response.item.labels.indexOf(sf.name) >= 0" style="margin-right: 4px" *ngFor="let sf of securityFrameworks">
<i *ngIf="response.item.labels.indexOf(sf.name) >= 0" class="fa fa-check"></i>
<i *ngIf="!(response.item.labels.indexOf(sf.name) >= 0)" class="fa fa-close" style="color: #333333"></i>
{{ sf.name }}
Expand Down

0 comments on commit 3e715ef

Please sign in to comment.