Add inline timer form validation
All checks were successful
Deploy Sokko G / deploy (push) Successful in 7s

This commit is contained in:
Shinuwa 2026-08-03 16:20:05 +02:00
parent 3e16ea278d
commit d54a93e1f4
6 changed files with 80 additions and 4 deletions

View file

@ -3609,6 +3609,34 @@ button.combo-input-token.combo-value-grab .ui-icon {
font-size: var(--font-size-xs);
}
.timer-form-error {
display: inline-flex;
width: 100%;
min-width: 0;
align-items: center;
gap: 7px;
padding: 7px 9px;
border: 1px solid rgba(251, 113, 133, 0.26);
border-radius: var(--radius-sm);
background: rgba(80, 25, 42, 0.28);
color: var(--color-danger);
font-size: var(--font-size-xs);
font-weight: 800;
}
.timer-form-error .ui-icon {
width: 13px;
height: 13px;
flex: 0 0 auto;
}
.timer-form-error span {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.timer-control-panel > span,
.timer-control-panel label span {
color: var(--color-text-secondary);