sogo/UI/WebServerResources/scss/components/progressCircular/progress-circular.scss
2016-08-02 12:09:11 -04:00

22 lines
581 B
SCSS

/// progressCircular.scss -*- Mode: scss; indent-tabs-mode: nil; basic-offset: 2 -*-
@import 'extends';
.sg-progress-circular-floating {
&.ng-hide {
transform: translate(-50%, 0) scale(0);
}
transition: transform .3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
position: absolute;
top: (10 * $baseline-grid);
left: 50%;
transform: translate(-50%, 0) scale(1);
bottom: auto;
background-color: white;
border-radius: 50%;
padding: $baseline-grid/2;
box-shadow: $whiteframe-shadow-3dp;
z-index: $z-index-view;
md-progress-circular {
display: block;
}
}