Preparation for build of a unique CSS

This commit is contained in:
Francis Lachapelle
2015-02-03 10:17:15 -05:00
parent 6040838396
commit 36c931b596
42 changed files with 65 additions and 1794 deletions
@@ -0,0 +1,2 @@
/*! subheader/_extends.scss - */
@import '../../../angular-material/src/components/subheader/subheader.scss';
@@ -1,54 +1 @@
$subheader-line-height: 1em !default;
$subheader-font-size: 0.9em !default;
$subheader-padding: ($baseline-grid * 2) 0px ($baseline-grid * 2) ($baseline-grid * 2) !default;
$subheader-font-weight: 400 !default;
$subheader-margin: 0 0 0 0 !default;
$subheader-margin-right: 16px !default;
$subheader-sticky-shadow: 0px 2px 4px 0 rgba(0,0,0,0.16) !default;
@keyframes subheaderStickyHoverIn {
0% {
box-shadow: 0 0 0 0 transparent;
}
100% {
box-shadow: $subheader-sticky-shadow;
}
}
@keyframes subheaderStickyHoverOut {
0% {
box-shadow: $subheader-sticky-shadow;
}
100% {
box-shadow: 0 0 0 0 transparent;
}
}
.md-subheader {
display: block;
font-size: $subheader-font-size;
font-weight: $subheader-font-weight;
line-height: $subheader-line-height;
padding: $subheader-padding;
margin: $subheader-margin;
margin-right: $subheader-margin-right;
position: relative;
&:not(.md-sticky-no-effect) {
&:after {
position: absolute;
left: 0;
bottom: 0;
top: 0;
right: -$subheader-margin-right;
content: '';
}
transition: 0.2s ease-out margin;
&[sticky-state="active"] {
margin-top: -2px;
}
&:not(.md-sticky-clone)[sticky-prev-state="active"]:after {
animation: subheaderStickyHoverOut 0.3s ease-out both;
}
}
}
@import 'extends';