UNPKG

angular-material

Version:

**[Support for legacy AngularJS ended on January 1st, 2022](https://goo.gle/angularjs-end-of-life). [See `@angular/core` for the actively supported Angular](https://npmjs.com/@angular/core).**

43 lines 862 B
/*! * AngularJS Material Design * https://github.com/angular/material * @license MIT * v1.2.5 */ @-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; }