sticky.css 694 B

1234567891011121314151617181920
  1. /*!
  2. * AngularJS Material Design
  3. * https://github.com/angular/material
  4. * @license MIT
  5. * v1.1.8-master-aba7b2b
  6. */
  7. .md-sticky-clone {
  8. z-index: 2;
  9. top: 0;
  10. left: 0;
  11. right: 0;
  12. position: absolute !important;
  13. -webkit-transform: translate3d(-9999px, -9999px, 0);
  14. transform: translate3d(-9999px, -9999px, 0); }
  15. .md-sticky-clone[sticky-state="active"] {
  16. -webkit-transform: translate3d(0, 0, 0);
  17. transform: translate3d(0, 0, 0); }
  18. .md-sticky-clone[sticky-state="active"]:not(.md-sticky-no-effect) .md-subheader-inner {
  19. -webkit-animation: subheaderStickyHoverIn 0.3s ease-out both;
  20. animation: subheaderStickyHoverIn 0.3s ease-out both; }