diff --git a/public/index.html b/public/index.html index 7eeb1fb..f50f3f5 100644 --- a/public/index.html +++ b/public/index.html @@ -98,7 +98,7 @@ days ↻ - + Hide upgrade failures diff --git a/public/style.css b/public/style.css index 8aeae00..fb42cb2 100644 --- a/public/style.css +++ b/public/style.css @@ -723,6 +723,25 @@ body { cursor: pointer; user-select: none; margin-left: 4px; + position: relative; +} + +.history-toggle-label[data-tooltip]:hover::after { + content: attr(data-tooltip); + position: absolute; + left: 0; + top: calc(100% + 6px); + z-index: 20; + background: var(--surface); + color: var(--text-primary); + border: 1px solid var(--border); + border-radius: 6px; + padding: 8px 10px; + font-size: 0.75rem; + white-space: pre-line; + box-shadow: 0 4px 12px rgba(0,0,0,0.15); + max-width: 280px; + pointer-events: none; } .history-toggle-label input[type="checkbox"] {