Help text

This commit is contained in:
2025-12-16 07:15:48 -05:00
parent d2e7d3c3dd
commit 98d0e3cfd7
2 changed files with 95 additions and 4 deletions

View File

@@ -147,6 +147,18 @@ body {
font-weight: 500;
}
.info-icon {
display: inline-block;
cursor: pointer;
font-size: 1.2rem;
opacity: 0.8;
transition: opacity 0.2s ease;
}
.info-icon:hover {
opacity: 1;
}
.table-header-collapsible {
background: #34495e;
color: white;
@@ -364,6 +376,16 @@ tbody tr:hover {
padding: 1.5rem;
}
.modal-footer {
padding: 1rem;
text-align: right;
border-top: 1px solid #ddd;
}
.modal-footer .btn {
margin-left: 0.5rem;
}
.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;