Sha256: 2d732ae1b364d9b1ac4edd15c5a64d9353abd1f416948a643f5dc192c3e69da6
Contents?: true
Size: 568 Bytes
Versions: 5
Compression:
Stored size: 568 Bytes
Contents
$tooltip-bubble-background-color: rgba(0, 0, 0, 0.7); $tooltip-bubble-text-color: #fff; .tooltip_bubble { position: absolute; display: none; background-color: $tooltip-bubble-background-color; color: $tooltip-bubble-text-color; padding: 5px 10px; top: -30px; white-space: nowrap; border-radius: 2px; pointer-events: none; &:before { content: ""; position: absolute; top: 100%; left: 8px; @include triangle(10px, $tooltip-bubble-background-color, down); } } :focus, :hover { > .tooltip_bubble { display: block; } }
Version data entries
5 entries across 5 versions & 1 rubygems