angular-material
Version:
This repository publishes the AngularJS Material v1.x library and localized installs using `npm`. You can find the component source-code for this library in the [AngularJS Material repository](https://github.com/angular/material).
35 lines (32 loc) • 881 B
CSS
/*!
* AngularJS Material Design
* https://github.com/angular/material
* @license MIT
* v1.2.1
*/
@-webkit-keyframes indeterminate-rotate {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(360deg); } }
@keyframes indeterminate-rotate {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(360deg); } }
md-progress-circular {
position: relative;
display: block;
transform: scale(1, 1); }
[dir=rtl] md-progress-circular {
transform: scale(-1, 1); }
md-progress-circular._md-progress-circular-disabled {
visibility: hidden; }
md-progress-circular.md-mode-indeterminate svg {
-webkit-animation: indeterminate-rotate 1568.63ms linear infinite;
animation: indeterminate-rotate 1568.63ms linear infinite; }
md-progress-circular svg {
position: absolute;
overflow: visible;
top: 0;
left: 0; }