css fix on notes tab
This commit is contained in:
@@ -343,27 +343,28 @@
|
||||
<i class="bi bi-plus-lg"></i> Add Note
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="list-group">
|
||||
@forelse($show_notes as $note)
|
||||
<div class="list-group-item p-3 mb-2 border rounded shadow-sm">
|
||||
<p class="mb-2 text-dark">{{ $note->notes_body }}</p>
|
||||
<div class="d-flex justify-content-between align-items-center text-muted" style="font-size: 0.8rem;">
|
||||
<span>
|
||||
<i class="bi bi-person-fill me-1 text-primary"></i>
|
||||
<strong class="text-secondary">{{ $note->created_by_info->name ?? 'System User' }}</strong>
|
||||
</span>
|
||||
<span>
|
||||
<i class="bi bi-clock me-1"></i>
|
||||
{{ $note->created_at->format('d M Y, h:i A') }}
|
||||
</span>
|
||||
<div class="notes-container pe-2" style="max-height: 450px; overflow-y: auto;">
|
||||
<div class="list-group">
|
||||
@forelse($show_notes as $note)
|
||||
<div class="list-group-item p-3 mb-2 border rounded shadow-sm">
|
||||
<p class="mb-2 text-dark">{{ $note->notes_body }}</p>
|
||||
<div class="d-flex justify-content-between align-items-center text-muted" style="font-size: 0.8rem;">
|
||||
<span>
|
||||
<i class="bi bi-person-fill me-1 text-primary"></i>
|
||||
<strong class="text-secondary">{{ $note->created_by_info->name ?? 'System User' }}</strong>
|
||||
</span>
|
||||
<span>
|
||||
<i class="bi bi-clock me-1"></i>
|
||||
{{ $note->created_at->format('d M Y, h:i A') }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@empty
|
||||
<div class="text-center py-4 text-muted small">
|
||||
<i class="bi bi-chat-square-text fs-4 d-block mb-1"></i> No notes added for this client yet.
|
||||
</div>
|
||||
@endforelse
|
||||
@empty
|
||||
<div class="text-center py-4 text-muted small">
|
||||
<i class="bi bi-chat-square-text fs-4 d-block mb-1"></i> No notes added for this client yet.
|
||||
</div>
|
||||
@endforelse
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- TAB 1: SHORT CODES -->
|
||||
|
||||
Reference in New Issue
Block a user