Added warning about lack of progress results, moved add to compare button
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m26s

This commit is contained in:
Tudor
2026-01-13 15:12:11 +00:00
parent 1a9341eaf4
commit a8fe4477f1
4 changed files with 113 additions and 16 deletions

View File

@@ -1059,6 +1059,7 @@ body {
}
.modal-header {
position: relative;
padding: 2rem 2rem 1rem;
border-bottom: 1px solid var(--border-color);
}
@@ -1069,7 +1070,7 @@ body {
font-weight: 700;
color: var(--text-primary);
margin-bottom: 0.5rem;
padding-right: 3rem;
padding-right: 10rem;
}
.modal-meta {
@@ -1088,8 +1089,10 @@ body {
margin-bottom: 0.25rem;
}
.modal-header .btn {
margin-top: 1rem;
.modal-compare-btn {
position: absolute;
top: 2rem;
right: 2rem;
}
.modal-details .modal-age-range {
@@ -1517,6 +1520,62 @@ body {
opacity: 0.8;
}
/* Warning Trigger Button */
.warning-trigger {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0;
margin-left: 0.5rem;
background: none;
border: none;
cursor: help;
color: var(--accent-coral);
opacity: 0.8;
transition: var(--transition);
vertical-align: middle;
border-radius: 4px;
}
.warning-trigger:hover,
.warning-trigger:focus {
opacity: 1;
}
.warning-trigger:focus {
outline: none;
box-shadow: 0 0 0 2px var(--accent-coral);
}
.warning-trigger:focus:not(:focus-visible) {
box-shadow: none;
}
.warning-trigger:focus-visible {
box-shadow: 0 0 0 2px var(--accent-coral);
}
/* Warning Icon SVG */
.warning-icon {
width: 14px;
height: 14px;
flex-shrink: 0;
}
/* Warning Tooltip Styling */
.tooltip.tooltip-warning {
background: #8b4513;
border-left: 3px solid var(--accent-coral);
}
.tooltip.tooltip-warning[data-placement="top"]::after {
border-top-color: #8b4513;
}
.tooltip.tooltip-warning[data-placement="bottom"]::after {
border-bottom-color: #8b4513;
}
/* Label wrapper for inline icon */
.stat-label-with-info {
display: inline-flex;