Sha256: 0253edc58e2f366dde363dcb0e03576517753948e77c1b42b3439f1fb177815f
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 KB
Contents
// Tooltips .tooltip { position: relative; &::after { background: rgba($dark-color, .9); border-radius: $border-radius; bottom: 100%; color: $light-color; content: attr(data-tooltip); display: block; font-size: $font-size-sm; left: 50%; max-width: $control-max-width; opacity: 0; overflow: hidden; padding: $unit-1 $unit-2; pointer-events: none; position: absolute; text-overflow: ellipsis; transform: translate(-50%, $unit-2); transition: all .2s ease; white-space: nowrap; z-index: $zindex-3; } &:focus, &:hover { &::after { opacity: 1; transform: translate(-50%, -$unit-1); } } &[disabled], &.disabled { pointer-events: auto; } &.tooltip-right { &::after { bottom: 50%; left: 100%; transform: translate(-$unit-1, 50%); } &:focus, &:hover { &::after { transform: translate($unit-1, 50%); } } } &.tooltip-bottom { &::after { bottom: auto; top: 100%; transform: translate(-50%, -$unit-2); } &:focus, &:hover { &::after { transform: translate(-50%, $unit-1); } } } &.tooltip-left { &::after { bottom: 50%; left: auto; right: 100%; transform: translate($unit-2, 50%); } &:focus, &:hover { &::after { transform: translate(-$unit-1, 50%); } } } }
Version data entries
3 entries across 3 versions & 1 rubygems