Skip to content

Commit

Permalink
Protocol inside collapse div
Browse files Browse the repository at this point in the history
  • Loading branch information
hydrogen2oxygen committed Nov 19, 2023
1 parent 1ee7f5c commit 821739c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,17 @@ <h4 class="collapseHeader" data-bs-toggle="collapse" href="#sorted" role="button
<button *ngIf="congregation.counterFtpUploadFailed > 0" class="btn btn-sm btn-danger" style="margin-left: 0.5rem; font-weight: bolder" (click)="repairFtpUploads()">REPAIR FTP UPLOADS <i class="bi bi-cloud-slash" style="margin-left: 0.25rem"></i> {{congregation.counterFtpUploadFailed}} failed uploads</button>
<button *ngIf="congregation.territoriesOlder8Months.length > 0" class="btn btn-sm btn-warning" style="margin-left: 0.5rem; font-weight: bolder" (click)="copyOlderThan12MonthsMessage()">OLDER THAN 12 MONTHS MESSAGE</button>
<hr>
<h3>Protocol:</h3>
<ul>
<li *ngFor="let p of congregation.protocol.reverse()"><span class="badge text-bg-dark">{{p}}</span></li>
</ul>
<div class="collapseContainer collapseProtocol">
<h4 class="collapseHeader" data-bs-toggle="collapse" href="#protocol" role="button" aria-expanded="false" aria-controls="protocol">
PROTOCOL
</h4>
<div class="collapse" id="protocol">
<ul>
<li *ngFor="let p of congregation.protocol.reverse()"><span class="badge text-bg-dark">{{p}}</span></li>
</ul>
</div>
</div>



<!-- Modal -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
background-color: #323232;
}

.collapseProtocol {
background-color: #000000;
}

.collapseHeader {
color: white!important;
}
Expand Down

0 comments on commit 821739c

Please sign in to comment.