Sha256: 86b6975d1a6ad1757193f96995609843cbc340b4276f8570f54d9d00a7e0046e
Contents?: true
Size: 1.59 KB
Versions: 16
Compression:
Stored size: 1.59 KB
Contents
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v0.7.0-rc3 */ @-webkit-keyframes subheaderStickyHoverIn { 0% { box-shadow: 0 0 0 0 transparent; } 100% { box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16); } } @keyframes subheaderStickyHoverIn { 0% { box-shadow: 0 0 0 0 transparent; } 100% { box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16); } } @-webkit-keyframes subheaderStickyHoverOut { 0% { box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16); } 100% { box-shadow: 0 0 0 0 transparent; } } @keyframes subheaderStickyHoverOut { 0% { box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.16); } 100% { box-shadow: 0 0 0 0 transparent; } } .md-subheader { display: block; font-size: 0.9em; font-weight: 400; line-height: 1em; padding: 16px 0px 16px 16px; margin: 0 0 0 0; margin-right: 16px; position: relative; } .md-subheader:not(.md-sticky-no-effect) { -webkit-transition: 0.2s ease-out margin; transition: 0.2s ease-out margin; } .md-subheader:not(.md-sticky-no-effect):after { position: absolute; left: 0; bottom: 0; top: 0; right: -16px; content: ''; } .md-subheader:not(.md-sticky-no-effect)[sticky-state="active"] { margin-top: -2px; } .md-subheader:not(.md-sticky-no-effect):not(.md-sticky-clone)[sticky-prev-state="active"]:after { -webkit-animation: subheaderStickyHoverOut 0.3s ease-out both; animation: subheaderStickyHoverOut 0.3s ease-out both; } .md-subheader .md-subheader-content { z-index: 1; position: relative; }
Version data entries
16 entries across 16 versions & 1 rubygems