Skip to content

Commit

Permalink
Merge pull request #2295 from sunbird-cb/cbrelease-4.8.15
Browse files Browse the repository at this point in the history
changes in the karma program
  • Loading branch information
vishnubansaltarento authored Jul 10, 2024
2 parents 36d9d44 + edd4511 commit eb1334b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ <h1 class=" txt-ellipsis-2 break-words">{{data.title || programName}}</h1>
{{data?.description | slice:0:descriptionMaxLength}}
<span *ngIf="data?.description?.length > descriptionMaxLength">...</span>
</p>
<ng-container *ngIf="data?.referenceLinks && data?.referenceLinks?.length">
<ng-container *ngFor="let ref of data?.referenceLinks">
<p >
{{ref?.label}} : <a href="{{ref?.value}}" class=" ref-links " target="_blank"> {{'contentstripmultiple.clickHere' | translate}}</a>
</p>
</ng-container>
</ng-container>
</div>
</div>
</div>
Expand All @@ -64,6 +71,14 @@ <h1 class=" txt-ellipsis-2 break-words">{{data?.title}}</h1>
{{data?.description | slice:0:descriptionMaxLength}}
<span *ngIf="data?.description?.length > descriptionMaxLength">...</span>
</p>
<ng-container *ngIf="data?.referenceLinks && data?.referenceLinks?.length">
<ng-container *ngFor="let ref of data?.referenceLinks">
<p >
{{ref?.label}} : <a href="{{ref?.value}}" class=" ref-links " target="_blank">{{'contentstripmultiple.clickHere' | translate}}</a>
</p>
</ng-container>
</ng-container>

</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,12 @@

.zindex {
z-index: 99
}

.ref-links {
font-weight: 700 !important;
text-decoration: underline !important;
color: #F3962F !important;
position: relative;
z-index: 999999;
}

0 comments on commit eb1334b

Please sign in to comment.