Sha256: 5e7cd3887e9e2067e429f8d458b9c0b65b2b661853c48d21db3c92602762df50
Contents?: true
Size: 922 Bytes
Versions: 19
Compression:
Stored size: 922 Bytes
Contents
@import "../tokens/positioning"; @import "../pb_card/card_mixin"; @import "../tokens/shadows"; @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } } [class^="pb_popover_kit"] { .popover_tooltip { opacity: 0; animation-name: fadeOut; animation-duration: 150ms; animation-timing-function: linear; animation-fill-mode: forwards; visibility: hidden; pointer-events: none; &.show { animation-name: fadeIn; animation-duration: 150ms; animation-timing-function: linear; animation-fill-mode: forwards; visibility: visible; pointer-events: initial; z-index: $z_9; } } .popover_body { @include pb_card; border: 0; box-shadow: $shadow_deeper; overflow: auto; } } .pb_popover_reference_wrapper { display: inline-block; }
Version data entries
19 entries across 19 versions & 1 rubygems