Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

57 строки
1.2 KiB

  1. @use '../atoms/variables' as *;
  2. // ── Dauer-Hilfe Tooltip ───────────────────────────────────────────────────────
  3. // Zeigt "?" an, auf Hover klappt der Hilfetext aus
  4. .duration-help {
  5. display: inline-flex;
  6. align-items: center;
  7. cursor: help;
  8. flex-shrink: 0;
  9. &__icon {
  10. display: inline-flex;
  11. align-items: center;
  12. justify-content: center;
  13. width: 20px;
  14. height: 20px;
  15. border-radius: 50%;
  16. border: 1px solid $color-border;
  17. background: $color-white;
  18. color: $color-text-muted;
  19. font-size: $font-size-xs;
  20. font-weight: $font-weight-bold;
  21. flex-shrink: 0;
  22. transition:
  23. width $transition-base,
  24. opacity $transition-base,
  25. border $transition-base,
  26. margin $transition-base;
  27. overflow: hidden;
  28. }
  29. &__hint {
  30. font-size: $font-size-xs;
  31. color: $color-text-muted;
  32. white-space: nowrap;
  33. max-width: 0;
  34. overflow: hidden;
  35. opacity: 0;
  36. transition:
  37. max-width 0.28s ease,
  38. opacity 0.2s ease;
  39. }
  40. &:hover &__icon {
  41. width: 0;
  42. opacity: 0;
  43. border-width: 0;
  44. margin-right: 0;
  45. }
  46. &:hover &__hint {
  47. max-width: 500px;
  48. opacity: 1;
  49. }
  50. }