| Server IP : 170.10.161.225 / Your IP : 216.73.217.54 Web Server : Apache System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : calvet ( 273824) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /home/www/calvetrealty.com/wp-content/plugins/readabler/sass/tippy/ |
Upload File : |
@import './_mixins.scss';
@import './_vars.scss';
.#{$namespace-prefix}-box {
@each $placement in $placements {
&[data-placement^='#{$placement}'] {
> .#{$namespace-prefix}-backdrop {
transform-origin: nth(
$backdrop-origins,
index($placements, $placement)
);
border-radius: nth(
$backdrop-border-radii,
index($placements, $placement)
);
&[data-state='visible'] {
@include backdrop-transform-enter($placement);
}
&[data-state='hidden'] {
@include backdrop-transform-leave($placement);
}
}
}
}
}
.#{$namespace-prefix}-box {
&[data-animatefill] {
// Declared with !important so that custom themes don't need to specify
// this property.
background-color: transparent !important;
}
}
.#{$namespace-prefix}-backdrop {
position: absolute;
background-color: #333;
border-radius: 50%;
width: calc(110% + 32px);
left: 50%;
top: 50%;
z-index: -1;
transition: all cubic-bezier(0.46, 0.1, 0.52, 0.98);
backface-visibility: hidden;
&[data-state='hidden'] {
opacity: 0;
}
&::after {
content: '';
float: left;
padding-top: 100%;
}
}
.#{$namespace-prefix}-backdrop + .#{$namespace-prefix}-content {
transition-property: opacity;
will-change: opacity;
&[data-state='hidden'] {
opacity: 0;
}
}