Sha256: 91a54310fe4a270dae7118da49234646e64481dff5ef9d99c6d888dc60a2470f
Contents?: true
Size: 952 Bytes
Versions: 1075
Compression:
Stored size: 952 Bytes
Contents
@import "../tokens/positioning"; @import "../tokens/colors"; @import "../pb_card/card_mixin"; @import "../tokens/shadows"; @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } } .pb_popover_tooltip { opacity: 0; visibility: hidden; pointer-events: none; &.hide { animation-name: fadeOut; animation-duration: 150ms; animation-timing-function: linear; animation-fill-mode: forwards; } &.show { animation-name: fadeIn; animation-duration: 150ms; animation-timing-function: linear; animation-fill-mode: forwards; visibility: visible; pointer-events: initial; z-index: $z_9; } } .pb_popover_body { @include pb_card; background-color: $white; border: 0; box-shadow: $shadow_deeper; } .overflow_handling { overflow: auto; } .pb_popover_reference_wrapper { display: inline-block; }
Version data entries
1,075 entries across 1,075 versions & 1 rubygems