Rename status-indicator to status-label in CSS and HTML

Updated the CSS class `.status-indicator` to `.status-label` in `earnings.css`, including style adjustments for padding and font size. Modified the corresponding HTML in `earnings.html` to reflect this change, ensuring consistency across the codebase.
This commit is contained in:
DJObleezy 2025-04-28 09:50:11 -07:00
parent 5a6331d032
commit 05301cc1ea
2 changed files with 4 additions and 4 deletions

View File

@ -147,7 +147,7 @@
}
/* Status indicators with color families similar to dashboard */
.status-indicator {
.status-label {
display: inline-block;
padding: 0.25rem 0.5rem;
border-radius: 4px;
@ -362,7 +362,7 @@
font-size: 0.85rem;
}
.status-indicator {
.status-label {
font-size: 0.7rem;
padding: 0.15rem 0.3rem;
}
@ -440,7 +440,7 @@
font-size: 0.85rem;
}
.status-indicator {
.status-label {
font-size: 0.7rem;
padding: 0.15rem 0.3rem;
}

View File

@ -123,7 +123,7 @@
{% endif %}
</td>
<td>
<span class="status-indicator status-{{ payment.status }}">{{ payment.status }}</span>
<span class="status-label status-{{ payment.status }}">{{ payment.status }}</span>
</td>
</tr>
{% else %}