You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
677 B

  1. /*!
  2. * Angular Material Design
  3. * https://github.com/angular/material
  4. * @license MIT
  5. * v1.1.1
  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; }