Commit bbe898c8 authored by Pushparagavan Sivaji's avatar Pushparagavan Sivaji

css changes

parent d5a5e28d
......@@ -21,4 +21,8 @@ body {
color: #2626f5 !important;
background-color: none !important;
border-color: none !important;
}
.tag-link a{
cursor: pointer;
text-decoration: none;
}
\ No newline at end of file
......@@ -4,7 +4,7 @@
<form [formGroup]="searchForm" (ngSubmit)="submitData()">
<div class="form-group">
<label for="usr">Title:</label>
<input type="text" placeholder="Tiele" class="form-control" id="Title" formControlName="title">
<input type="text" placeholder="Title" class="form-control" id="Title" formControlName="title">
</div>
<div class="form-group">
<label for="pwd">Tag:</label>
......@@ -27,8 +27,9 @@
<label *ngIf="pk.vote !== null">Vote: {{pk.vote}}</label>
<label *ngIf="pk.vote === null">Vote: 0</label>
</div>
<div>{{pk.title}} <span *ngFor="let teml of pk.tags"><a data-toggle="modal" (click)="getVoteDetail(pk.id)"
data-target="#myModal">{{teml}}&nbsp;</a></span></div>
<div class="tag-link">{{pk.title}} <a data-toggle="modal" (click)="getVoteDetail(pk.id)"
data-target="#myModal"> <span *ngFor="let teml of pk.tags">{{teml}}&nbsp;</span></a>
</div>
<div>{{pk.description}}</div>
</div>
</div>
......@@ -49,7 +50,7 @@
<span *ngFor="let tag of voteDetails?.tags">{{tag}}&nbsp;</span>
<p>{{voteDetails?.description}}</p>
</div>
<div *ngIf="showVoteSuccessMessage">Thankyou. Your Vote has been submitted successfully.</div>
<div *ngIf="showVoteSuccessMessage">&nbsp;Thankyou. Your Vote has been submitted successfully.</div>
<div class="modal-footer">
<button type="button" (click)="voteCount(voteDetails?.id)" class="btn btn-default btn-vote">
<i class="fa fa-thumbs-up" aria-hidden="true"></i>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment