| Current Path : /home/jeromecohp/www/templates/yootheme/vendor/assets/uikit-themes/master/base/ |
| Current File : /home/jeromecohp/www/templates/yootheme/vendor/assets/uikit-themes/master/base/totop.less |
//
// Component: Totop
//
// ========================================================================
// Variables
// ========================================================================
//
// New
//
@totop-background: transparent;
@totop-hover-background: transparent;
@totop-active-background: transparent;
@totop-backdrop-filter: ~'';
@internal-totop-mode: ~''; // animate
@internal-totop-hover-mode: ~''; // glitch
@internal-totop-hover-glitch-animation: uk-glitch-skew, uk-glitch-opacity;
@internal-totop-hover-glitch-duration: 0.2s;
// Component
// ========================================================================
.hook-totop() {
transition: 0.1s ease-in-out;
transition-property: color, background-color, border-color, box-shadow;
}
.hook-totop() when not (@totop-background = transparent) {
background: @totop-background;
}
.hook-totop-hover() when not (@totop-hover-background = @totop-background) {
background-color: @totop-hover-background;
}
.hook-totop-active() when not (@totop-active-background = @totop-background) {
background-color: @totop-active-background;
}
.hook-totop() when not (@totop-backdrop-filter = ~'') {
backdrop-filter: @totop-backdrop-filter;
-webkit-backdrop-filter: @totop-backdrop-filter;
}
//
// Animate
//
.hook-totop-hover() when (@internal-totop-mode = animate) {
overflow: hidden;
vertical-align: middle;
svg { animation: uk-slide-top 0.3s reverse, uk-slide-bottom 0.2s 0.3s; }
}
//
// Glitch
//
.hook-totop-hover() when (@internal-totop-hover-mode = glitch) {
animation: @internal-totop-hover-glitch-duration ease both;
animation-name: @internal-totop-hover-glitch-animation;
}
// Miscellaneous
// ========================================================================
.hook-icon-misc() {}
// Inverse
// ========================================================================
@inverse-totop-background: transparent;
@inverse-totop-hover-background: transparent;
@inverse-totop-active-background: transparent;
.hook-inverse-totop() when not (@inverse-totop-background = transparent) {
background-color: @inverse-totop-background;
}
.hook-inverse-totop-hover() when not (@inverse-totop-hover-background = @inverse-totop-background) {
background-color: @inverse-totop-hover-background;
}
.hook-inverse-totop-active() when not (@inverse-totop-active-background = @inverse-totop-background) {
background-color: @inverse-totop-active-background;
}