You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

50 rivejä
1.2 KiB

  1. @use '../atoms/variables' as *;
  2. // ── Dauer-Hilfe Tooltip ───────────────────────────────────────────────────────
  3. // Zeigt "?" an, auf Hover klappt der Hilfetext aus (absolut positioniert,
  4. // damit er die Grid-Spaltenbreite nicht verschiebt).
  5. .duration-help {
  6. display: inline-flex;
  7. align-items: center;
  8. cursor: help;
  9. flex-shrink: 0;
  10. position: relative;
  11. &__icon {
  12. display: inline-flex;
  13. align-items: center;
  14. justify-content: center;
  15. width: 20px;
  16. height: 20px;
  17. border-radius: 50%;
  18. border: 1px solid $color-border;
  19. background: $color-white;
  20. color: $color-text-muted;
  21. font-size: $font-size-xs;
  22. font-weight: $font-weight-bold;
  23. flex-shrink: 0;
  24. transition: opacity $transition-fast;
  25. }
  26. &__hint {
  27. position: absolute;
  28. left: calc(100% + #{$space-2});
  29. top: 50%;
  30. transform: translateY(-50%);
  31. font-size: $font-size-xs;
  32. color: $color-text-muted;
  33. white-space: nowrap;
  34. opacity: 0;
  35. pointer-events: none;
  36. transition: opacity 0.2s ease;
  37. }
  38. &:hover &__icon {
  39. opacity: 0;
  40. }
  41. &:hover &__hint {
  42. opacity: 1;
  43. }
  44. }