Created
January 20, 2016 19:17
-
-
Save jasonayre/a13224274508b8a31192 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Function | |
| //-- Must be defined before variables | |
| @function rem($multiplier) { | |
| $font-size: 10px; | |
| @return $multiplier * $font-size; | |
| } | |
| // Typography | |
| // ------------------------------ | |
| $font-family: Roboto, 'Helvetica Neue', sans-serif !default; | |
| $font-size: 10px; | |
| $display-4-font-size-base: rem(11.20) !default; | |
| $display-3-font-size-base: rem(5.600) !default; | |
| $display-2-font-size-base: rem(4.500) !default; | |
| $display-1-font-size-base: rem(3.400) !default; | |
| $headline-font-size-base: rem(2.400) !default; | |
| $title-font-size-base: rem(2.000) !default; | |
| $subhead-font-size-base: rem(1.600) !default; | |
| $body-font-size-base: rem(1.400) !default; | |
| $caption-font-size-base: rem(1.200) !default; | |
| // Layout | |
| // ------------------------------ | |
| $baseline-grid: 8px !default; | |
| $layout-breakpoint-sm: 600px !default; | |
| $layout-breakpoint-md: 960px !default; | |
| $layout-breakpoint-lg: 1200px !default; | |
| $layout-gutter-width: ($baseline-grid * 2) !default; | |
| // App bar variables | |
| $app-bar-height: 64px; | |
| $toast-height: $baseline-grid * 3 !default; | |
| $toast-margin: $baseline-grid * 1 !default; | |
| // Whiteframes | |
| $shadow-key-umbra-opacity: 0.2; | |
| $shadow-key-penumbra-opacity: 0.14; | |
| $shadow-ambient-shadow-opacity: 0.12; | |
| // NOTE(shyndman): gulp-sass seems to be failing if I split the shadow defs across | |
| // multiple lines. Ugly. Sorry. | |
| $whiteframe-shadow-1dp: 0px 1px 3px 0px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 1px 1px 0px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 2px 1px -1px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-2dp: 0px 1px 5px 0px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 2px 2px 0px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 3px 1px -2px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-3dp: 0px 1px 8px 0px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 3px 4px 0px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 3px 3px -2px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-4dp: 0px 2px 4px -1px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 4px 5px 0px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 1px 10px 0px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-5dp: 0px 3px 5px -1px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 5px 8px 0px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 1px 14px 0px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-6dp: 0px 3px 5px -1px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 6px 10px 0px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 1px 18px 0px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-7dp: 0px 4px 5px -2px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 7px 10px 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 2px 16px 1px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-8dp: 0px 5px 5px -3px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 8px 10px 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 3px 14px 2px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-9dp: 0px 5px 6px -3px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 9px 12px 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 3px 16px 2px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-10dp: 0px 6px 6px -3px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 10px 14px 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 4px 18px 3px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-11dp: 0px 6px 7px -4px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 11px 15px 1px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 4px 20px 3px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-12dp: 0px 7px 8px -4px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 12px 17px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 5px 22px 4px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-13dp: 0px 7px 8px -4px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 13px 19px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 5px 24px 4px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-14dp: 0px 7px 9px -4px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 14px 21px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 5px 26px 4px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-15dp: 0px 8px 9px -5px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 15px 22px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 6px 28px 5px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-16dp: 0px 8px 10px -5px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 16px 24px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 6px 30px 5px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-17dp: 0px 8px 11px -5px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 17px 26px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 6px 32px 5px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-18dp: 0px 9px 11px -5px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 18px 28px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 7px 34px 6px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-19dp: 0px 9px 12px -6px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 19px 29px 2px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 7px 36px 6px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-20dp: 0px 10px 13px -6px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 20px 31px 3px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 8px 38px 7px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-21dp: 0px 10px 13px -6px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 21px 33px 3px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 8px 40px 7px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-22dp: 0px 10px 14px -6px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 22px 35px 3px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 8px 42px 7px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-23dp: 0px 11px 14px -7px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 23px 36px 3px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 9px 44px 8px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| $whiteframe-shadow-24dp: 0px 11px 15px -7px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 24px 38px 3px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 9px 46px 8px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default; | |
| // Z-indexes | |
| //-------------------------------------------- | |
| $z-index-tooltip: 100 !default; | |
| $z-index-menu: 99 !default; | |
| $z-index-select: 99 !default; | |
| $z-index-dialog: 80 !default; | |
| $z-index-toast: 90 !default; | |
| $z-index-bottom-sheet: 70 !default; | |
| $z-index-scroll-mask: 65 !default; | |
| $z-index-sidenav: 60 !default; | |
| $z-index-backdrop: 50 !default; | |
| $z-index-fab: 20 !default; | |
| // Easing Curves | |
| //-------------------------------------------- | |
| $swift-ease-out-duration: 0.4s !default; | |
| $swift-ease-out-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default; | |
| $swift-ease-out: all $swift-ease-out-duration $swift-ease-out-timing-function !default; | |
| $swift-ease-in-duration: 0.3s !default; | |
| $swift-ease-in-timing-function: cubic-bezier(0.55, 0, 0.55, 0.2) !default; | |
| $swift-ease-in: all $swift-ease-in-duration $swift-ease-in-timing-function !default; | |
| $swift-ease-in-out-duration: 0.5s !default; | |
| $swift-ease-in-out-timing-function: cubic-bezier(0.35, 0, 0.25, 1) !default; | |
| $swift-ease-in-out: all $swift-ease-in-out-duration $swift-ease-in-out-timing-function !default; | |
| // Fab Buttons (shared between buttons.scss and fab*.scss) | |
| // ------------------------------------------- | |
| $button-fab-width: rem(5.600) !default; | |
| $button-fab-height: rem(5.600) !default; | |
| $button-fab-padding: rem(1.60) !default; | |
| @mixin margin-selectors($before:1em, $after:1em, $start:0px, $end:0px) { | |
| -webkit-margin-before: $before; | |
| -webkit-margin-after: $after; | |
| -webkit-margin-start: $start; | |
| -webkit-margin-end: $end; | |
| } | |
| @mixin not-selectable($value:none) { | |
| -webkit-touch-callout: $value; | |
| -webkit-user-select: $value; | |
| -khtml-user-select: $value; | |
| -moz-user-select: $value; | |
| -ms-user-select: $value; | |
| user-select: $value; | |
| } | |
| @mixin input-placeholder-color($color) { | |
| &::-webkit-input-placeholder, | |
| &::-moz-placeholder, | |
| &:-moz-placeholder, | |
| &:-ms-input-placeholder { | |
| color: $color; | |
| } | |
| } | |
| @mixin pie-clearfix { | |
| &:after { | |
| content: ''; | |
| display: table; | |
| clear: both; | |
| } | |
| } | |
| @mixin md-shadow-bottom-z-1() { | |
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); | |
| } | |
| @mixin md-shadow-bottom-z-2() { | |
| box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4); | |
| } | |
| // Mixin for a "flat" input that can be used for components that contain an input | |
| // (datepicker, autocomplete). | |
| @mixin md-flat-input() { | |
| font-size: 14px; | |
| box-sizing: border-box; | |
| border: none; | |
| box-shadow: none; | |
| outline: none; | |
| background: transparent; | |
| // The the "clear X" that IE adds to input[type="search"] | |
| &::-ms-clear { | |
| display: none; | |
| } | |
| } | |
| // Typography mixins | |
| @mixin md-title() { | |
| font-size: $title-font-size-base; | |
| font-weight: 500; | |
| letter-spacing: 0.005em; | |
| } | |
| @mixin md-body-1() { | |
| font-size: $body-font-size-base; | |
| font-weight: 400; | |
| letter-spacing: 0.010em; | |
| line-height: rem(2); | |
| } | |
| @mixin md-body-2() { | |
| font-size: $body-font-size-base; | |
| font-weight: 500; | |
| letter-spacing: 0.010em; | |
| line-height: rem(2.4); | |
| } | |
| @mixin md-subhead() { | |
| font-size: $subhead-font-size-base; | |
| font-weight: 400; | |
| letter-spacing: 0.010em; | |
| line-height: rem(2.4); | |
| } | |
| @function map-to-string($map) { | |
| $map-str: '{'; | |
| $keys: map-keys($map); | |
| $len: length($keys); | |
| @for $i from 1 through $len { | |
| $key: nth($keys, $i); | |
| $value: map-get($map, $key); | |
| $map-str: $map-str + '_' + $key + '_: _' + map-get($map, $key) + '_'; | |
| @if $i != $len { | |
| $map-str: $map-str + ','; | |
| } | |
| } | |
| @return $map-str + '}'; | |
| } | |
| // mixin definition ; sets LTR and RTL within the same style call | |
| // @see https://css-tricks.com/almanac/properties/d/direction/ | |
| @mixin rtl($prop, $value, $rtl-value) { | |
| #{$prop}: $value; | |
| html[dir=rtl] & { | |
| #{$prop}: $rtl-value; | |
| unicode-bidi: embed; | |
| } | |
| body[dir=rtl] & { | |
| #{$prop}: $rtl-value; | |
| unicode-bidi: embed; | |
| } | |
| bdo[dir=rtl] { | |
| direction: rtl; | |
| unicode-bidi: bidi-override; | |
| } | |
| bdo[dir=ltr] { | |
| direction: ltr; | |
| unicode-bidi: bidi-override; | |
| } | |
| } | |
| // Position a FAB button. | |
| @mixin fab-position($spot, $top: auto, $right: auto, $bottom: auto, $left: auto) { | |
| &.md-fab-#{$spot} { | |
| top: $top; | |
| right: $right; | |
| bottom: $bottom; | |
| left: $left; | |
| position: absolute; | |
| } | |
| } | |
| @mixin fab-all-positions() { | |
| @include fab-position(bottom-right, auto, ($button-fab-width - $button-fab-padding)/2, ($button-fab-height - $button-fab-padding)/2, auto); | |
| @include fab-position(bottom-left, auto, auto, ($button-fab-height - $button-fab-padding)/2, ($button-fab-width - $button-fab-padding)/2); | |
| @include fab-position(top-right, ($button-fab-height - $button-fab-padding)/2, ($button-fab-width - $button-fab-padding)/2, auto, auto); | |
| @include fab-position(top-left, ($button-fab-height - $button-fab-padding)/2, auto, auto, ($button-fab-width - $button-fab-padding)/2); | |
| } | |
| html, body { | |
| height: 100%; | |
| color: rgba(0,0,0,0.87); | |
| background: white; | |
| position: relative; | |
| } | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| [tabindex='-1']:focus { | |
| outline: none; | |
| } | |
| .inset { | |
| padding: 10px; | |
| } | |
| button.md-no-style { | |
| font-weight: normal; | |
| background-color: inherit; | |
| text-align: left; | |
| border: none; | |
| padding: 0; | |
| margin: 0; | |
| } | |
| select, | |
| button, | |
| textarea, | |
| input { | |
| vertical-align: baseline; | |
| } | |
| // Fix Android 4.0 button bugs | |
| input[type="reset"], | |
| input[type="submit"], | |
| html input[type="button"], | |
| button { | |
| cursor: pointer; | |
| -webkit-appearance: button; | |
| &[disabled] { | |
| cursor: default; | |
| } | |
| } | |
| textarea { | |
| vertical-align: top; | |
| overflow: auto; | |
| } | |
| input { | |
| &[type="search"] { | |
| -webkit-appearance: textfield; | |
| box-sizing: content-box; | |
| -webkit-box-sizing: content-box; | |
| &::-webkit-search-decoration, | |
| &::-webkit-search-cancel-button { | |
| -webkit-appearance: none; | |
| } | |
| } | |
| } | |
| .md-visually-hidden { | |
| border: 0; | |
| clip: rect(0 0 0 0); | |
| height: 1px; | |
| margin: -1px; | |
| overflow: hidden; | |
| padding: 0; | |
| position: absolute; | |
| text-transform: none; | |
| width: 1px; | |
| } | |
| .md-shadow { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| bottom: 0; | |
| right: 0; | |
| border-radius: inherit; | |
| pointer-events: none; | |
| } | |
| .md-shadow-bottom-z-1 { | |
| @include md-shadow-bottom-z-1(); | |
| } | |
| .md-shadow-bottom-z-2 { | |
| @include md-shadow-bottom-z-2(); | |
| } | |
| .md-shadow-animated.md-shadow { | |
| transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); | |
| } | |
| /* | |
| * A container inside of a rippling element (eg a button), | |
| * which contains all of the individual ripples | |
| */ | |
| .md-ripple-container { | |
| pointer-events: none; | |
| position: absolute; | |
| overflow: hidden; | |
| left: 0; | |
| top: 0; | |
| width: 100%; | |
| height: 100%; | |
| transition: all 0.55s $swift-ease-out-timing-function; | |
| } | |
| .md-ripple { | |
| position: absolute; | |
| transform: translate(-50%, -50%) scale(0); | |
| transform-origin: 50% 50%; | |
| opacity: 0; | |
| border-radius: 50%; | |
| &.md-ripple-placed { | |
| $sizeDuration: 0.45s * 2; | |
| transition: margin $sizeDuration $swift-ease-out-timing-function, | |
| border $sizeDuration $swift-ease-out-timing-function, | |
| width $sizeDuration $swift-ease-out-timing-function, | |
| height $sizeDuration $swift-ease-out-timing-function, | |
| opacity $sizeDuration $swift-ease-out-timing-function, | |
| transform $sizeDuration $swift-ease-out-timing-function; | |
| } | |
| &.md-ripple-scaled { | |
| transform: translate(-50%, -50%) scale(1); | |
| } | |
| &.md-ripple-active, &.md-ripple-full, &.md-ripple-visible { | |
| opacity: 0.20; | |
| } | |
| } | |
| .md-padding { | |
| padding: 8px; | |
| } | |
| .md-margin { | |
| margin: 8px; | |
| } | |
| .md-scroll-mask { | |
| position: absolute; | |
| background-color: transparent; | |
| top: 0; | |
| right: 0; | |
| bottom: 0; | |
| left: 0; | |
| > .md-scroll-mask-bar { | |
| display: block; | |
| position: absolute; | |
| background-color: #fafafa; | |
| right: 0; | |
| top: 0; | |
| bottom: 0; | |
| z-index: $z-index-scroll-mask; | |
| box-shadow: inset 0px 0px 1px rgba(0, 0, 0, 0.3) | |
| } | |
| } | |
| @media (min-width: $layout-breakpoint-sm) { | |
| .md-padding { | |
| padding: 16px; | |
| } | |
| } | |
| // Global page styles | |
| // | |
| // [2] Ensure the page always fills at least the entire height of the viewport. | |
| // [3] Prevent iOS text size adjust after orientation change, without disabling user zoom | |
| // [4] Fonts on OSX will look more consistent with other systems that do not | |
| // render text using sub-pixel anti-aliasing. | |
| html, body { | |
| -webkit-tap-highlight-color: rgba(0,0,0,0); | |
| -webkit-touch-callout: none; | |
| min-height: 100%; // [2] | |
| -webkit-text-size-adjust: 100%; // [3] | |
| -ms-text-size-adjust: 100%; // [3] | |
| -webkit-font-smoothing: antialiased; // [4] | |
| -moz-osx-font-smoothing: grayscale; // [4] | |
| } | |
| md-select, md-card, md-list, md-toolbar, | |
| ul, ol, p, h1, h2, h3, h4, h5, h6 { | |
| //text-rendering: optimizeLegibility; | |
| } | |
| /************ | |
| * Headings | |
| ************/ | |
| .md-display-4 { | |
| font-size: $display-4-font-size-base; | |
| font-weight: 300; | |
| letter-spacing: -0.010em; | |
| line-height: $display-4-font-size-base; | |
| } | |
| .md-display-3 { | |
| font-size: $display-3-font-size-base; | |
| font-weight: 400; | |
| letter-spacing: -0.005em; | |
| line-height: $display-3-font-size-base; | |
| } | |
| .md-display-2 { | |
| font-size: $display-2-font-size-base; | |
| font-weight: 400; | |
| line-height: rem(6.4); | |
| } | |
| .md-display-1 { | |
| font-size: $display-1-font-size-base; | |
| font-weight: 400; | |
| line-height: rem(4); | |
| } | |
| .md-headline { | |
| font-size: $headline-font-size-base; | |
| font-weight: 400; | |
| line-height: rem(3.2); | |
| } | |
| .md-title { | |
| @include md-title(); | |
| } | |
| .md-subhead { | |
| @include md-subhead(); | |
| } | |
| /************ | |
| * Body Copy | |
| ************/ | |
| .md-body-1 { | |
| @include md-body-1(); | |
| } | |
| .md-body-2 { | |
| @include md-body-2(); | |
| } | |
| .md-caption { | |
| font-size: $caption-font-size-base; | |
| letter-spacing: 0.020em; | |
| } | |
| .md-button { | |
| letter-spacing: 0.010em; | |
| } | |
| /************ | |
| * Defaults | |
| ************/ | |
| button, | |
| select, | |
| html, | |
| textarea, | |
| input { | |
| font-family: $font-family; | |
| } | |
| select, | |
| button, | |
| textarea, | |
| input { | |
| font-size: 100%; | |
| } | |
| /* | |
| * | |
| * Responsive attributes | |
| * | |
| * References: | |
| * 1) https://scotch.io/tutorials/a-visual-guide-to-css3-flexbox-properties#flex | |
| * 2) https://css-tricks.com/almanac/properties/f/flex/ | |
| * 3) https://github.com/philipwalton/flexbugs#3-min-height-on-a-flex-container-wont-apply-to-its-flex-items | |
| * 4) http://godban.com.ua/projects/flexgrid | |
| * | |
| */ | |
| @-moz-document url-prefix() { | |
| .layout-fill, [layout-fill] { | |
| margin: 0; | |
| width: 100%; | |
| min-height: 100%; | |
| height: 100%; | |
| } | |
| } | |
| @mixin flex-order-for-name($sizes:null) { | |
| @if $sizes == null { | |
| $sizes : ''; | |
| // .flex-order { | |
| // order: 0; | |
| // } | |
| // | |
| .flex-order, [flex-order] { | |
| order : 0; | |
| } | |
| } | |
| @for $i from 0 through 19 { | |
| $order : ''; | |
| $suffix : ''; | |
| @each $s in $sizes { | |
| @if $s != '' { $suffix : '#{$s}-#{$i}'; } | |
| @else { $suffix : '#{$i}'; } | |
| $order : $order + '.flex-order-#{$suffix}, '; | |
| } | |
| @each $s in $sizes { | |
| @if ( $s != '' ) { $order : $order + '[flex-order-#{$s}="#{$i}"], '; } | |
| @else { $order : $order + '[flex-order="#{$i}"], '; } | |
| } | |
| // .flex-order-0, [order="0"] { | |
| // order: 0; | |
| // } | |
| // | |
| // .flex-order-1, [order="1"] { | |
| // order: 1; | |
| // } | |
| // | |
| // .flex-order-sm-0, [order-sm="0"] { | |
| // order: 0; | |
| // } | |
| // | |
| // .flex-order-sm-1, [order-sm="1"] { | |
| // order: 1; | |
| // } | |
| // | |
| #{$order} { | |
| order: #{$i}; | |
| } | |
| } | |
| } | |
| @mixin offset-for-name($sizes:null) { | |
| // .offset-sm-0, [offset-sm="0"] { | |
| // margin-left: 0%; | |
| // } | |
| // | |
| // .offset-sm-5, [offset-sm="5"] { | |
| // margin-left: 5%; | |
| // } | |
| @if $sizes == null { $sizes : ''; } | |
| @for $i from 0 through 19 { | |
| $offsets : ''; | |
| $suffix : ''; | |
| @each $s in $sizes { | |
| @if $s != '' { $suffix : '#{$s}-#{$i * 5}'; } | |
| @else { $suffix : '#{$i * 5}'; } | |
| $offsets : $offsets + '.offset-#{$suffix}, '; | |
| } | |
| @each $s in $sizes { | |
| @if ( $s != '' ) { $offsets : $offsets + '[offset-#{$s}="#{$i * 5}"], '; } | |
| @else { $offsets : $offsets + '[offset="#{$i * 5}"], '; } | |
| } | |
| #{$offsets} { | |
| margin-left: #{$i * 5 + '%'}; | |
| } | |
| } | |
| $offsets : ''; | |
| @each $i in 33, 34 { | |
| $suffix : ''; | |
| @each $s in $sizes { | |
| @if $s != '' { $suffix : '#{$s}-#{$i}'; } | |
| @else { $suffix : '#{$i}'; } | |
| $offsets : $offsets + '.offset-#{$suffix}, '; | |
| } | |
| // add attribute selectors | |
| @each $s in $sizes { | |
| $offsets : $offsets + '[offset-#{$s}="#{$i}"], '; | |
| } | |
| } | |
| // .offset-sm-33, [offset-sm="33"], .offset-sm-34, [offset-sm="34"] { | |
| // margin-left: 33%; | |
| // } | |
| // | |
| #{$offsets} { | |
| margin-left: 33%; | |
| } | |
| $offsets : ''; | |
| @each $i in 66, 67 { | |
| $suffix : ''; | |
| @each $s in $sizes { | |
| @if $s != '' { $suffix : '#{$s}-#{$i}'; } | |
| @else { $suffix : '#{$i}'; } | |
| $offsets : $offsets + '.offset-#{$suffix}, '; | |
| } | |
| // add attribute selectors | |
| @each $s in $sizes { | |
| $offsets : $offsets + '[offset-#{$s}="#{$i}"], '; | |
| } | |
| } | |
| // .offset-sm-66, [offset-sm="66"], .offset-sm-67, [offset-sm="67"] { | |
| // margin-left: 67%; | |
| // } | |
| // | |
| #{$offsets} { | |
| margin-left: 67%; | |
| } | |
| } | |
| @mixin layout-for-name($name: null) { | |
| @if $name == null { $name : ''; } | |
| @if $name != '' { $name : '-#{$name}'; } | |
| .md-layout#{$name}, .md-layout#{$name}-column, .md-layout#{$name}-row, { | |
| box-sizing: border-box; | |
| display: -webkit-box; | |
| display: -webkit-flex; | |
| display: -moz-box; | |
| display: -ms-flexbox; | |
| display: flex; | |
| } | |
| .md-layout#{$name}-column { flex-direction: column; } | |
| .md-layout#{$name}-row { flex-direction: row; } | |
| } | |
| @mixin flex-properties-for-name($name: null) { | |
| $flexName: 'flex'; | |
| @if $name != null { | |
| $flexName: 'flex-#{$name}'; | |
| $name : '-#{$name}'; | |
| } @else { | |
| $name : ''; | |
| } | |
| .#{$flexName} { | |
| box-sizing: border-box; | |
| } | |
| .#{$flexName} { flex: 1; } // === 1 1 0% | |
| .#{$flexName}-grow { flex: 1 1 100%; } | |
| .#{$flexName}-initial { flex: 0 1 auto; } | |
| .#{$flexName}-auto { flex: 1 1 auto; } | |
| .#{$flexName}-none { flex: 0 0 auto; } | |
| // (1-20) * 5 = 0-100% | |
| @for $i from 0 through 20 { | |
| $value : #{$i * 5 + '%'}; | |
| .#{$flexName}-#{$i * 5} { box-sizing: border-box; flex: 0 0 #{$value}; } | |
| .md-layout-row > .#{$flexName}-#{$i * 5}, | |
| .md-layout#{$name}-row > .#{$flexName}-#{$i * 5} { flex: 0 0 #{$value}; max-width: #{$value}; max-height: 100%; } | |
| .md-layout-column > .#{$flexName}-#{$i * 5}, | |
| .md-layout#{$name}-column > .#{$flexName}-#{$i * 5} { flex: 0 0 #{$value}; max-width: 100%; max-height: #{$value}; } | |
| } | |
| .md-layout-row, .md-layout#{$name}-row { | |
| > .#{$flexName}-33 , > .#{$flexName}-34 { flex: 0 0 33%; max-width: 33%; max-height: 100%; } | |
| > .#{$flexName}-66 , > .#{$flexName}-67 { flex: 0 0 67%; max-width: 67%; max-height: 100%; } | |
| } | |
| .md-layout-column, .md-layout#{$name}-column { | |
| > .#{$flexName}-33 , > .#{$flexName}-34 { flex: 0 0 33%; max-width: 100%; max-height: 33%; } | |
| > .#{$flexName}-66 , > .#{$flexName}-67 { flex: 0 0 67%; max-width: 100%; max-height: 67%; } | |
| } | |
| } | |
| @mixin layout-align-for-name($suffix: null) { | |
| // Alignment attributes for layout containers' children | |
| // Arrange on the Main Axis | |
| // center, start, end, space-between, space-around | |
| // flex-start is the default for justify-content | |
| // ------------------------------ | |
| $name: 'layout-align'; | |
| @if $suffix != null { | |
| $name: 'layout-align-#{$suffix}'; | |
| } | |
| // Main Axis Center | |
| .#{$name}-center, //stretch | |
| .#{$name}-center-center, | |
| .#{$name}-center-start, | |
| .#{$name}-center-end, | |
| [#{$name}="center"], | |
| [#{$name}="center center"], | |
| [#{$name}="center start"], | |
| [#{$name}="center end"] | |
| { | |
| justify-content: center; | |
| } | |
| // Main Axis End | |
| .#{$name}-end, //stretch | |
| .#{$name}-end-center, | |
| .#{$name}-end-start, | |
| .#{$name}-end-end, | |
| [#{$name}="end"], //stretch | |
| [#{$name}="end center"], | |
| [#{$name}="end start"], | |
| [#{$name}="end end"] | |
| { | |
| justify-content: flex-end; | |
| } | |
| // Main Axis Space Around | |
| .#{$name}-space-around, //stretch | |
| .#{$name}-space-around-center, | |
| .#{$name}-space-around-start, | |
| .#{$name}-space-around-end, | |
| [#{$name}="space-around"], //stretch | |
| [#{$name}="space-around center"], | |
| [#{$name}="space-around start"], | |
| [#{$name}="space-around end"] | |
| { | |
| justify-content: space-around; | |
| } | |
| // Main Axis Space Between | |
| .#{$name}-space-between, //stretch | |
| .#{$name}-space-between-center, | |
| .#{$name}-space-between-start, | |
| .#{$name}-space-between-end, | |
| [#{$name}="space-between"], //stretch | |
| [#{$name}="space-between center"], | |
| [#{$name}="space-between start"], | |
| [#{$name}="space-between end"] | |
| { | |
| justify-content: space-between; | |
| } | |
| // Arrange on the Cross Axis | |
| // center, start, end | |
| // stretch is the default for align-items | |
| // ------------------------------ | |
| // Cross Axis Start | |
| .#{$name}-center-start, | |
| .#{$name}-start-start, | |
| .#{$name}-end-start, | |
| .#{$name}-space-between-start, | |
| .#{$name}-space-around-start, | |
| [#{$name}="center start"], | |
| [#{$name}="start start"], | |
| [#{$name}="end start"], | |
| [#{$name}="space-between start"], | |
| [#{$name}="space-around start"] | |
| { | |
| align-items: flex-start; | |
| } | |
| // Cross Axis Center | |
| .#{$name}-center-center, | |
| .#{$name}-start-center, | |
| .#{$name}-end-center, | |
| .#{$name}-space-between-center, | |
| .#{$name}-space-around-center, | |
| [#{$name}="center center"], | |
| [#{$name}="start center"], | |
| [#{$name}="end center"], | |
| [#{$name}="space-between center"], | |
| [#{$name}="space-around center"] | |
| { | |
| align-items: center; | |
| max-width: 100%; | |
| } | |
| // Cross Axis End | |
| .#{$name}-center-end, | |
| .#{$name}-start-end, | |
| .#{$name}-end-end, | |
| .#{$name}-space-between-end, | |
| .#{$name}-space-around-end, | |
| [#{$name}="center end"], | |
| [#{$name}="start end"], | |
| [#{$name}="end end"], | |
| [#{$name}="space-between end"], | |
| [#{$name}="space-around end"] | |
| { | |
| align-items: flex-end; | |
| } | |
| } | |
| @mixin layout-padding-margin() { | |
| .layout-padding > .flex-sm, .layout-padding > .flex-lt-md { | |
| padding: $layout-gutter-width / 4; | |
| } | |
| .layout-padding, | |
| .layout-padding > .flex, | |
| .layout-padding > .flex-gt-sm, | |
| .layout-padding > .flex-md, | |
| .layout-padding > .flex-lt-lg | |
| { | |
| padding: $layout-gutter-width / 2; | |
| } | |
| .layout-padding > .flex-gt-md, | |
| .layout-padding > .flex-lg | |
| { | |
| padding: $layout-gutter-width / 1; | |
| } | |
| .layout-margin > .flex-sm, | |
| .layout-margin > .flex-lt-md | |
| { | |
| margin: $layout-gutter-width / 4; | |
| } | |
| .layout-margin, | |
| .layout-margin > .flex, | |
| .layout-margin > .flex-gt-sm, | |
| .layout-margin > .flex-md, | |
| .layout-margin > .flex-lt-lg | |
| { | |
| margin: $layout-gutter-width / 2; | |
| } | |
| .layout-margin > .flex-gt-md, | |
| .layout-margin > .flex-lg | |
| { | |
| margin: $layout-gutter-width / 1; | |
| } | |
| .layout-wrap, [layout-wrap] { | |
| flex-wrap: wrap; | |
| } | |
| .layout-nowrap, [layout-nowrap] { | |
| flex-wrap: nowrap; | |
| } | |
| .layout-fill, [layout-fill] { | |
| margin: 0; | |
| width: 100%; | |
| min-height: 100%; | |
| height: 100%; | |
| } | |
| } | |
| @mixin layouts_for_breakpoint($name:null) { | |
| @include flex-order-for-name($name); | |
| @include offset-for-name($name); | |
| @include layout-align-for-name($name); | |
| @include flex-properties-for-name($name); | |
| @include layout-for-name($name); | |
| } | |
| /* | |
| * Apply Mixins to create Layout/Flexbox styles | |
| * | |
| */ | |
| @include layouts_for_breakpoint(); | |
| @include layout-padding-margin(); | |
| /** | |
| * `hide-gt-sm show-gt-lg` should hide from 600px to 1200px | |
| * `show-md hide-gt-sm` should show from 0px to 960px and hide at >960px | |
| * `hide-gt-md show-gt-sm` should show everywhere (show overrides hide)` | |
| * | |
| * hide means hide everywhere | |
| * Sizes: | |
| * 0 <= size < 600 Phone | |
| * 600 <= size < 960 Tablet | |
| * 960 <= size < 1200 Tablet-Landscape | |
| */ | |
| @media (max-width: $layout-breakpoint-sm - 1) { | |
| // SMALL SCREEN | |
| .hide-sm, .hide { | |
| &:not(.show-sm):not(.show) { | |
| display: none; | |
| } | |
| } | |
| @include layouts_for_breakpoint(sm); | |
| } | |
| @media (min-width: $layout-breakpoint-sm) { | |
| // BIGGER THAN SMALL SCREEN | |
| @include layouts_for_breakpoint(gt-sm); | |
| } | |
| @media (min-width: $layout-breakpoint-sm) and (max-width: $layout-breakpoint-md - 1) { | |
| // MEDIUM SCREEN | |
| .hide, .hide-gt-sm { | |
| &:not(.show-gt-sm):not(.show-md):not(.show) { | |
| display: none; | |
| } | |
| } | |
| .hide-md:not(.show-md):not(.show) { | |
| display: none; | |
| } | |
| @include layouts_for_breakpoint(md); | |
| } | |
| @media (min-width: $layout-breakpoint-md) { | |
| // BIGGER THAN MEDIUM SCREEN | |
| @include layouts_for_breakpoint(gt-md); | |
| } | |
| @media (min-width: $layout-breakpoint-md) and (max-width: $layout-breakpoint-lg - 1) { | |
| // LARGE SCREEN | |
| .hide, .hide-gt-sm, .hide-gt-md { | |
| &:not(.show-gt-sm):not(.show-gt-md):not(.show-lg):not(.show) { | |
| display: none; | |
| } | |
| } | |
| .hide-lg:not(.show-lg):not(.show) { | |
| display: none; | |
| } | |
| @include layouts_for_breakpoint(lg); | |
| } | |
| @media (min-width: $layout-breakpoint-lg) { | |
| // BIGGER THAN LARGE SCREEN | |
| .hide-gt-sm, .hide-gt-md, .hide-gt-lg, .hide { | |
| &:not(.show-gt-sm):not(.show-gt-md):not(.show-gt-lg):not(.show) { | |
| display: none; | |
| } | |
| } | |
| @include layouts_for_breakpoint(gt-lg); | |
| } | |
| $autocomplete-option-height: 48px; | |
| $input-container-padding: 2px !default; | |
| $input-error-height: 24px !default; | |
| @keyframes md-autocomplete-list-out { | |
| 0% { | |
| animation-timing-function: linear; | |
| } | |
| 50% { | |
| opacity: 0; | |
| height: 40px; | |
| animation-timing-function: ease-in; | |
| } | |
| 100% { | |
| height: 0; | |
| opacity: 0; | |
| } | |
| } | |
| @keyframes md-autocomplete-list-in { | |
| 0% { | |
| opacity: 0; | |
| height: 0; | |
| animation-timing-function: ease-out; | |
| } | |
| 50% { | |
| opacity: 0; | |
| height: 40px; | |
| } | |
| 100% { | |
| opacity: 1; | |
| height: 40px; | |
| } | |
| } | |
| md-autocomplete { | |
| border-radius: 2px; | |
| display: block; | |
| height: 40px; | |
| position: relative; | |
| overflow: visible; | |
| min-width: 190px; | |
| &[disabled] { | |
| input { | |
| cursor: not-allowed; | |
| } | |
| } | |
| &[md-floating-label] { | |
| border-radius: 0; | |
| background: transparent; | |
| height: auto; | |
| md-input-container { | |
| padding-bottom: $input-container-padding + $input-error-height; | |
| // When we have ng-messages, remove the input error height from our bottom padding, since the | |
| // ng-messages wrapper has a min-height of 1 error (so we don't adjust height as often; see | |
| // input.scss file) | |
| &.md-input-has-messages { | |
| padding-bottom: $input-container-padding; | |
| } | |
| } | |
| md-autocomplete-wrap { | |
| height: auto; | |
| } | |
| button { | |
| position: absolute; | |
| top: auto; | |
| bottom: 0; | |
| right: 0; | |
| width: 30px; | |
| height: 30px; | |
| } | |
| } | |
| md-autocomplete-wrap { | |
| display: block; | |
| position: relative; | |
| overflow: visible; | |
| height: 40px; | |
| &.md-menu-showing { | |
| z-index: $z-index-backdrop + 1; | |
| } | |
| md-progress-linear .md-mode-indeterminate { | |
| position: absolute; | |
| top: 20px; left: 0; width: 100%; | |
| height: 3px; | |
| transition: none; | |
| .md-container { | |
| transition: none; | |
| height: 3px; | |
| } | |
| &.ng-enter { | |
| transition: opacity 0.15s linear; | |
| &.ng-enter-active { | |
| opacity: 1; | |
| } | |
| } | |
| &.ng-leave { | |
| transition: opacity 0.15s linear; | |
| &.ng-leave-active { | |
| opacity: 0; | |
| } | |
| } | |
| } | |
| } | |
| input:not(.md-input) { | |
| @include md-flat-input(); | |
| width: 100%; | |
| padding: 0 15px; | |
| line-height: 40px; | |
| height: 40px; | |
| } | |
| button { | |
| position: relative; | |
| line-height: 20px; | |
| text-align: center; | |
| width: 30px; | |
| height: 30px; | |
| cursor: pointer; | |
| border: none; | |
| border-radius: 50%; | |
| padding: 0; | |
| font-size: 12px; | |
| background: transparent; | |
| margin: auto 5px; | |
| &:after { | |
| content: ''; | |
| position: absolute; | |
| top: -6px; | |
| right: -6px; | |
| bottom: -6px; | |
| left: -6px; | |
| border-radius: 50%; | |
| transform: scale(0); | |
| opacity: 0; | |
| transition: $swift-ease-out; | |
| } | |
| &:focus { | |
| outline: none; | |
| &:after { | |
| transform: scale(1); | |
| opacity: 1; | |
| } | |
| } | |
| md-icon { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate3d(-50%, -50%, 0) scale(0.9); | |
| path { | |
| stroke-width: 0; | |
| } | |
| } | |
| &.ng-enter { | |
| transform: scale(0); | |
| transition: transform 0.15s ease-out; | |
| &.ng-enter-active { | |
| transform: scale(1); | |
| } | |
| } | |
| &.ng-leave { | |
| transition: transform 0.15s ease-out; | |
| &.ng-leave-active { | |
| transform: scale(0); | |
| } | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| $border-color: #fff; | |
| input { | |
| border: 1px solid $border-color; | |
| } | |
| li:focus { | |
| color: #fff; | |
| } | |
| } | |
| } | |
| .md-virtual-repeat-container.md-autocomplete-suggestions-container { | |
| position: absolute; | |
| box-shadow: 0 2px 5px rgba(black, 0.25); | |
| height: 41px * 5.5; | |
| max-height: 41px * 5.5; | |
| z-index: $z-index-tooltip; | |
| } | |
| .md-autocomplete-suggestions { | |
| margin: 0; | |
| list-style: none; | |
| padding: 0; | |
| li { | |
| cursor: pointer; | |
| font-size: 14px; | |
| overflow: hidden; | |
| padding: 0 15px; | |
| line-height: $autocomplete-option-height; | |
| height: $autocomplete-option-height; | |
| transition: background 0.15s linear; | |
| margin: 0; | |
| white-space: nowrap; | |
| text-overflow: ellipsis; | |
| &:focus { | |
| outline: none; | |
| } | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-autocomplete, | |
| .md-autocomplete-suggestions { | |
| border: 1px solid #fff; | |
| } | |
| } | |
| // !!Important - Theme-based Background-color can be configured in backdrop-theme.scss | |
| // - Animate background-color opacityy only for `.md-opaque` styles | |
| md-backdrop { | |
| transition: opacity 450ms; | |
| position: absolute; | |
| top:0; | |
| bottom:0; | |
| left: 0; | |
| right: 0; | |
| z-index: $z-index-backdrop; | |
| &.md-menu-backdrop { | |
| position: fixed !important; | |
| z-index: $z-index-menu - 1; | |
| } | |
| &.md-select-backdrop { | |
| z-index: $z-index-dialog + 1; | |
| transition-duration: 0; | |
| } | |
| &.md-dialog-backdrop { | |
| z-index: $z-index-dialog - 1; | |
| } | |
| &.md-bottom-sheet-backdrop { | |
| z-index: $z-index-bottom-sheet - 1; | |
| } | |
| &.md-sidenav-backdrop { | |
| z-index: $z-index-sidenav - 1; | |
| } | |
| &.md-click-catcher { | |
| position: absolute; | |
| } | |
| &.md-opaque { | |
| opacity: .48; | |
| &.ng-enter { | |
| opacity: 0; | |
| } | |
| &.ng-enter.md-opaque.ng-enter-active { | |
| opacity: .48; | |
| } | |
| &.ng-leave { | |
| opacity: .48; | |
| transition: opacity 400ms; | |
| } | |
| &.ng-leave.md-opaque.ng-leave-active { | |
| opacity: 0; | |
| } | |
| } | |
| } | |
| $bottom-sheet-horizontal-padding: 2 * $baseline-grid !default; | |
| $bottom-sheet-vertical-padding: 1 * $baseline-grid !default; | |
| $bottom-sheet-icon-after-margin: 4 * $baseline-grid !default; | |
| $bottom-sheet-list-item-height: 6 * $baseline-grid !default; | |
| $bottom-sheet-hidden-bottom-padding: 80px !default; | |
| $bottom-sheet-header-height: 7 * $baseline-grid !default; | |
| $bottom-sheet-grid-font-weight: 400 !default; | |
| md-bottom-sheet { | |
| position: absolute; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| padding: $bottom-sheet-vertical-padding $bottom-sheet-horizontal-padding $bottom-sheet-vertical-padding + $bottom-sheet-hidden-bottom-padding $bottom-sheet-horizontal-padding; | |
| z-index: $z-index-bottom-sheet; | |
| border-top-width: 1px; | |
| border-top-style: solid; | |
| transform: translate3d(0, $bottom-sheet-hidden-bottom-padding, 0); | |
| transition: $swift-ease-out; | |
| transition-property: transform; | |
| &.md-has-header { | |
| padding-top: 0; | |
| } | |
| &.ng-enter { | |
| opacity: 0; | |
| transform: translate3d(0, 100%, 0); | |
| } | |
| &.ng-enter-active { | |
| opacity: 1; | |
| display: block; | |
| transform: translate3d(0, $bottom-sheet-hidden-bottom-padding, 0) !important; | |
| } | |
| &.ng-leave-active { | |
| transform: translate3d(0, 100%, 0) !important; | |
| transition: $swift-ease-in; | |
| } | |
| .md-subheader { | |
| background-color: transparent; | |
| font-family: $font-family; | |
| line-height: $bottom-sheet-header-height; | |
| padding: 0; | |
| white-space: nowrap; | |
| } | |
| md-inline-icon { | |
| display: inline-block; | |
| height: 24px; | |
| width: 24px; | |
| fill: #444; | |
| } | |
| md-list-item { | |
| display: flex; | |
| outline: none; | |
| &:hover { | |
| cursor: pointer; | |
| } | |
| } | |
| &.md-list { | |
| md-list-item { | |
| padding: 0; | |
| align-items: center; | |
| height: $bottom-sheet-list-item-height; | |
| div.md-icon-container { | |
| display: inline-block; | |
| height: 3 * $baseline-grid; | |
| margin-right: $bottom-sheet-icon-after-margin; | |
| } | |
| } | |
| } | |
| &.md-grid { | |
| padding-left: 3 * $baseline-grid; | |
| padding-right: 3 * $baseline-grid; | |
| padding-top: 0; | |
| md-list { | |
| display: flex; | |
| flex-direction: row; | |
| flex-wrap: wrap; | |
| transition: all 0.5s; | |
| align-items: center; | |
| } | |
| md-list-item { | |
| flex-direction: column; | |
| align-items: center; | |
| transition: all 0.5s; | |
| height: 12 * $baseline-grid; | |
| margin-top: $baseline-grid; | |
| margin-bottom: $baseline-grid; | |
| /* Mixin for how many grid items to show per row */ | |
| @mixin grid-items-per-row($num, $alignEdges: false) { | |
| $width: 100% / $num; | |
| flex: 1 1 $width; | |
| max-width: $width; | |
| @if $alignEdges { | |
| &:nth-of-type(#{$num}n + 1) { | |
| align-items: flex-start; | |
| } | |
| &:nth-of-type(#{$num}n) { | |
| align-items: flex-end; | |
| } | |
| } | |
| } | |
| @media screen and (max-width: $layout-breakpoint-sm) { | |
| @include grid-items-per-row(3, true); | |
| } | |
| @media screen and (min-width: $layout-breakpoint-sm) and (max-width: $layout-breakpoint-md) { | |
| @include grid-items-per-row(4); | |
| } | |
| @media screen and (min-width: $layout-breakpoint-md) and (max-width: $layout-breakpoint-lg) { | |
| @include grid-items-per-row(6); | |
| } | |
| @media screen and (min-width: $layout-breakpoint-lg) { | |
| @include grid-items-per-row(7); | |
| } | |
| .md-list-item-content { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| width: 6 * $baseline-grid; | |
| padding-bottom: 2 * $baseline-grid; | |
| } | |
| .md-grid-item-content { | |
| border: 1px solid transparent; | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| width: 10 * $baseline-grid; | |
| } | |
| .md-icon-container { | |
| display: inline-block; | |
| box-sizing: border-box; | |
| height: 6 * $baseline-grid; | |
| width: 6 * $baseline-grid; | |
| margin: 0 0; | |
| } | |
| .md-grid-text { | |
| font-weight: $bottom-sheet-grid-font-weight; | |
| line-height: 2 * $baseline-grid; | |
| font-size: 2 * $baseline-grid - 3; | |
| margin: 0; | |
| white-space: nowrap; | |
| width: 8 * $baseline-grid; | |
| text-align: center; | |
| text-transform: none; | |
| padding-top: 1 * $baseline-grid; | |
| } | |
| } | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-bottom-sheet { | |
| border: 1px solid #fff; | |
| } | |
| } | |
| $button-border-radius: 3px !default; | |
| $button-fab-border-radius: 50% !default; | |
| $button-icon-border-radius: $button-fab-border-radius; | |
| $button-line-height: rem(3.60) !default; | |
| $button-padding: 0 rem(0.600) !default; | |
| $button-margin: rem(0.600) rem(0.800) !default; | |
| $button-min-width: rem(8.800) !default; | |
| // Fab buttons | |
| $button-fab-line-height: rem(5.600) !default; | |
| $button-fab-mini-width: rem(4.00) !default; | |
| $button-fab-mini-height: rem(4.00) !default; | |
| $button-fab-mini-line-height: rem(4.00) !default; | |
| $button-fab-toast-offset: $button-fab-height * 0.75 !default; | |
| $icon-button-height: rem(4.800) !default; | |
| $icon-button-width: rem(4.800) !default; | |
| $icon-button-margin: rem(0.600) !default; | |
| .md-button { | |
| border-radius: $button-border-radius; | |
| box-sizing: border-box; | |
| color: currentColor; | |
| user-select: none; | |
| position: relative; //for child absolute-positioned <canvas> | |
| outline: none; | |
| border: 0; | |
| display: inline-block; | |
| align-items: center; | |
| padding: $button-padding; | |
| margin: $button-margin; | |
| line-height: $button-line-height; | |
| min-height: $button-line-height; | |
| background: transparent; | |
| white-space: nowrap; | |
| // override for FAB, icon buttons, etc. | |
| min-width: $button-min-width; | |
| text-align: center; | |
| // Always uppercase buttons | |
| text-transform: uppercase; | |
| font-weight: 500; | |
| font-size: $body-font-size-base; | |
| font-style: inherit; | |
| font-variant: inherit; | |
| font-family: inherit; | |
| text-decoration: none; | |
| cursor: pointer; | |
| overflow: hidden; // for ink containment | |
| transition: box-shadow $swift-ease-out-duration $swift-ease-out-timing-function, | |
| background-color $swift-ease-out-duration $swift-ease-out-timing-function; | |
| &:focus { | |
| outline: none; | |
| } | |
| &:hover, &:focus { | |
| text-decoration: none; | |
| } | |
| &.ng-hide, &.ng-leave { | |
| transition: none; | |
| } | |
| &.md-cornered { | |
| border-radius: 0; | |
| } | |
| &.md-icon { | |
| padding: 0; | |
| background: none; | |
| } | |
| &.md-raised { | |
| &:not([disabled]) { | |
| @include md-shadow-bottom-z-1(); | |
| } | |
| } | |
| &.md-icon-button { | |
| margin: 0 $icon-button-margin; | |
| height: $icon-button-height; | |
| min-width: 0; | |
| line-height: $icon-button-height; | |
| padding-left: 0; | |
| padding-right: 0; | |
| width: $icon-button-width; | |
| border-radius: $button-icon-border-radius; | |
| .md-ripple-container { | |
| border-radius: $button-icon-border-radius; | |
| background-clip: padding-box; | |
| overflow: hidden; | |
| // The following hack causes Safari/Chrome to respect overflow hidden for ripples | |
| -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC'); | |
| } | |
| } | |
| &.md-fab { | |
| // Include the top/left/bottom/right fab positions | |
| @include fab-all-positions(); | |
| z-index: $z-index-fab; | |
| line-height: $button-fab-line-height; | |
| min-width: 0; | |
| width: $button-fab-width; | |
| height: $button-fab-height; | |
| vertical-align: middle; | |
| @include md-shadow-bottom-z-1(); | |
| border-radius: $button-fab-border-radius; | |
| background-clip: padding-box; | |
| overflow: hidden; | |
| transition: 0.2s linear; | |
| transition-property: background-color, box-shadow; | |
| .md-ripple-container { | |
| border-radius: $button-fab-border-radius; | |
| background-clip: padding-box; | |
| overflow: hidden; | |
| // The following hack causes Safari/Chrome to respect overflow hidden for ripples | |
| -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC'); | |
| } | |
| &.md-mini { | |
| line-height: $button-fab-mini-line-height; | |
| width: $button-fab-mini-width; | |
| height: $button-fab-mini-height; | |
| } | |
| } | |
| &:not([disabled]) { | |
| &.md-raised, | |
| &.md-fab { | |
| &.md-focused { | |
| @include md-shadow-bottom-z-1(); | |
| } | |
| &:active { | |
| @include md-shadow-bottom-z-2(); | |
| } | |
| } | |
| } | |
| .md-ripple-container { | |
| border-radius: $button-border-radius; | |
| background-clip: padding-box; | |
| overflow: hidden; | |
| // The following hack causes Safari/Chrome to respect overflow hidden for ripples | |
| -webkit-mask-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC'); | |
| } | |
| } | |
| .md-toast-open-top { | |
| .md-button.md-fab-top-left, | |
| .md-button.md-fab-top-right { | |
| transform: translate3d(0, $button-fab-toast-offset, 0); | |
| &:not([disabled]) { | |
| &.md-focused, | |
| &:hover { | |
| transform: translate3d(0, $button-fab-toast-offset - 1, 0); | |
| } | |
| } | |
| } | |
| } | |
| .md-toast-open-bottom { | |
| .md-button.md-fab-bottom-left, | |
| .md-button.md-fab-bottom-right { | |
| transform: translate3d(0, -$button-fab-toast-offset, 0); | |
| &:not([disabled]) { | |
| &.md-focused, | |
| &:hover { | |
| transform: translate3d(0, -$button-fab-toast-offset - 1, 0); | |
| } | |
| } | |
| } | |
| } | |
| .md-button-group { | |
| display: flex; | |
| flex: 1; | |
| width: 100%; | |
| } | |
| .md-button-group > .md-button { | |
| flex: 1; | |
| display: block; | |
| overflow: hidden; | |
| width: 0; | |
| border-width: 1px 0px 1px 1px; | |
| border-radius: 0; | |
| text-align: center; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| &:first-child { | |
| border-radius: 2px 0px 0px 2px; | |
| } | |
| &:last-child { | |
| border-right-width: 1px; | |
| border-radius: 0px 2px 2px 0px; | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| .md-button.md-raised, | |
| .md-button.md-fab { | |
| border: 1px solid #fff; | |
| } | |
| } | |
| $card-padding: 16px !default; | |
| $card-box-shadow: $whiteframe-shadow-1dp !default; | |
| md-card { | |
| box-sizing: border-box; | |
| display: flex; | |
| flex-direction: column; | |
| margin: $baseline-grid; | |
| box-shadow: $card-box-shadow; | |
| > img, | |
| > :not(md-card-content) img { | |
| width: 100%; | |
| } | |
| md-card-content { | |
| padding: $card-padding; | |
| } | |
| .md-actions { | |
| margin: 0; | |
| .md-button { | |
| margin-bottom: $baseline-grid; | |
| margin-top: $baseline-grid; | |
| margin-right: $baseline-grid * .5; | |
| margin-left: $baseline-grid * .5; | |
| } | |
| } | |
| md-card-footer { | |
| padding: $card-padding; | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-card { | |
| border: 1px solid #fff; | |
| } | |
| } | |
| $chip-font-size: rem(1.6) !default; | |
| $chip-height: rem(3.2) !default; | |
| $chip-padding: 0 rem(1.2) 0 rem(1.2) !default; | |
| $chip-remove-padding-right: rem(2.2) !default; | |
| $chip-remove-line-height: rem(2.2) !default; | |
| $chip-margin: rem(0.8) rem(0.8) 0 0 !default; | |
| $chip-wrap-padding: 0 0 rem(0.8) rem(0.3) !default; | |
| $chip-delete-icon-size: rem(1.8) !default; | |
| $contact-chip-padding: 0 rem(2.5) 0 0 !default; | |
| $contact-chip-suggestion-image-height: rem(4.0) !default; | |
| $contact-chip-suggestion-margin: rem(0.8) !default; | |
| $contact-chip-name-width: rem(12) !default; | |
| .md-contact-chips { | |
| .md-chips { | |
| .md-chip { | |
| padding: $contact-chip-padding; | |
| .md-contact-avatar { | |
| float: left; | |
| img { | |
| height: $chip-height; | |
| border-radius: $chip-height / 2; | |
| } | |
| } | |
| .md-contact-name { | |
| display: inline-block; | |
| height: $chip-height; | |
| margin-left: rem(0.8); | |
| } | |
| } | |
| } | |
| } | |
| .md-contact-suggestion { | |
| height: ($contact-chip-suggestion-margin * 2) + $contact-chip-suggestion-image-height; | |
| img { | |
| height: $contact-chip-suggestion-image-height; | |
| border-radius: $contact-chip-suggestion-image-height / 2; | |
| margin-top: $contact-chip-suggestion-margin; | |
| } | |
| .md-contact-name { | |
| margin-left: $contact-chip-suggestion-margin; | |
| width: $contact-chip-name-width; | |
| } | |
| .md-contact-name, .md-contact-email { | |
| display: inline-block; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| } | |
| } | |
| .md-contact-chips-suggestions li { | |
| height: 100%; | |
| } | |
| .md-chips { | |
| @include pie-clearfix(); | |
| display: block; | |
| font-family: $font-family; | |
| font-size: $chip-font-size; | |
| padding: $chip-wrap-padding; | |
| vertical-align: middle; | |
| &:not(.md-readonly) { | |
| cursor: text; | |
| .md-chip { | |
| padding-right: $chip-remove-padding-right; | |
| } | |
| } | |
| .md-chip { | |
| cursor: default; | |
| border-radius: $chip-height / 2; | |
| display: block; | |
| height: $chip-height; | |
| line-height: $chip-height; | |
| margin: $chip-margin; | |
| padding: $chip-padding; | |
| float: left; | |
| box-sizing: border-box; | |
| max-width: 100%; | |
| position: relative; | |
| .md-chip-content { | |
| display: block; | |
| padding-right:rem(0.4); | |
| float: left; | |
| white-space: nowrap; | |
| max-width: 100%; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| &:focus { | |
| outline: none; | |
| } | |
| } | |
| .md-chip-remove-container { | |
| position: absolute; | |
| right: 0; | |
| line-height: $chip-remove-line-height; | |
| } | |
| .md-chip-remove { | |
| text-align: center; | |
| width: $chip-height; | |
| height: $chip-height; | |
| min-width: 0; | |
| padding: 0; | |
| background: transparent; | |
| border: none; | |
| box-shadow: none; | |
| margin: 0; | |
| position: relative; | |
| md-icon { | |
| height: $chip-delete-icon-size; | |
| width: $chip-delete-icon-size; | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate3d(-50%, -50%, 0); | |
| } | |
| } | |
| } | |
| .md-chip-input-container { | |
| display: block; | |
| line-height: $chip-height; | |
| margin: $chip-margin; | |
| padding: $chip-padding; | |
| float: left; | |
| input { | |
| &:not([type]),&[type="email"],&[type="number"],&[type="tel"],&[type="url"],&[type="text"] { | |
| border: 0; | |
| height: $chip-height; | |
| line-height: $chip-height; | |
| padding: 0; | |
| &:focus { | |
| outline: none; | |
| } | |
| } | |
| } | |
| md-autocomplete, md-autocomplete-wrap { | |
| background: transparent; | |
| height: $chip-height; | |
| } | |
| md-autocomplete { | |
| md-autocomplete-wrap { | |
| box-shadow: none; | |
| } | |
| input { | |
| position: relative; | |
| } | |
| } | |
| input { | |
| border:0; | |
| height: $chip-height; | |
| line-height: $chip-height; | |
| padding: 0; | |
| &:focus { | |
| outline:none; | |
| } | |
| } | |
| md-autocomplete, md-autocomplete-wrap { | |
| height: $chip-height; | |
| } | |
| md-autocomplete { | |
| box-shadow: none; | |
| input { | |
| position: relative; | |
| } | |
| } | |
| &:not(:first-child) { | |
| margin: $chip-margin; | |
| } | |
| input { | |
| background:transparent; | |
| border-width: 0; | |
| } | |
| } | |
| md-autocomplete { | |
| button { | |
| display: none; | |
| } | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| .md-chip-input-container, | |
| md-chip { | |
| border: 1px solid #fff; | |
| } | |
| .md-chip-input-container md-autocomplete { | |
| border: none; | |
| } | |
| } | |
| $checkbox-width: 18px !default; | |
| $checkbox-height: $checkbox-width !default; | |
| $checkbox-margin: 8px !default; | |
| $checkbox-border-radius: 2px !default; | |
| $checkbox-border-width: 2px !default; | |
| $checkbox-text-margin: 10px !default; | |
| $checkbox-top-left: 12px !default; | |
| md-checkbox { | |
| box-sizing: border-box; | |
| display: block; | |
| margin: $checkbox-margin; | |
| white-space: nowrap; | |
| cursor: pointer; | |
| outline: none; | |
| user-select: none; | |
| @include rtl(padding-left, $checkbox-width, 0); | |
| @include rtl(padding-right, 0, $checkbox-width); | |
| position: relative; | |
| line-height: $checkbox-width + $checkbox-margin; | |
| min-width: $checkbox-width; | |
| min-height: $checkbox-width; | |
| &.md-focused:not([disabled]) { | |
| .md-container:before { | |
| left: -8px; | |
| top: -8px; | |
| right: -8px; | |
| bottom: -8px; | |
| } | |
| &:not(.md-checked) { | |
| .md-container:before { | |
| background-color: rgba(0, 0, 0, 0.12); | |
| } | |
| } | |
| } | |
| .md-container { | |
| position: absolute; | |
| top: 50%; | |
| transform: translateY(-50%); | |
| box-sizing: border-box; | |
| display: inline-block; | |
| width: $checkbox-width; | |
| height: $checkbox-height; | |
| @include rtl(left, 0, auto); | |
| @include rtl(right, auto, 0); | |
| &:before { | |
| box-sizing: border-box; | |
| background-color: transparent; | |
| border-radius: 50%; | |
| content: ''; | |
| position: absolute; | |
| display: block; | |
| height: auto; | |
| left: 0; | |
| top: 0; | |
| right: 0; | |
| bottom: 0; | |
| transition: all 0.5s; | |
| width: auto; | |
| } | |
| &:after { | |
| box-sizing: border-box; | |
| content: ''; | |
| position: absolute; | |
| top: -10px; | |
| right: -10px; | |
| bottom: -10px; | |
| left: -10px; | |
| } | |
| .md-ripple-container { | |
| position: absolute; | |
| display: block; | |
| width: auto; | |
| height: auto; | |
| left: -15px; | |
| top: -15px; | |
| right: -15px; | |
| bottom: -15px; | |
| } | |
| } | |
| &.md-align-top-left > div.md-container { | |
| top: $checkbox-top-left; | |
| } | |
| // unchecked | |
| .md-icon { | |
| box-sizing: border-box; | |
| transition: 240ms; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: $checkbox-width; | |
| height: $checkbox-height; | |
| border-width: $checkbox-border-width; | |
| border-style: solid; | |
| border-radius: $checkbox-border-radius; | |
| } | |
| &.md-checked .md-icon { | |
| border: none; | |
| } | |
| // disabled | |
| &[disabled] { | |
| cursor: no-drop; | |
| } | |
| &.md-checked .md-icon:after { | |
| box-sizing: border-box; | |
| transform: rotate(45deg); | |
| position: absolute; | |
| left: $checkbox-width / 3; | |
| top: $checkbox-width / 9; | |
| display: table; | |
| width: $checkbox-width / 3; | |
| height: $checkbox-width * 2 / 3; | |
| border-width: $checkbox-border-width; | |
| border-style: solid; | |
| border-top: 0; | |
| border-left: 0; | |
| content: ''; | |
| } | |
| .md-label { | |
| box-sizing: border-box; | |
| position: relative; | |
| display: inline-block; | |
| vertical-align: middle; | |
| white-space: normal; | |
| user-select: text; | |
| @include rtl(margin-left, $checkbox-text-margin, 0); | |
| @include rtl(margin-right, 0, $checkbox-text-margin); | |
| } | |
| } | |
| md-content { | |
| display: block; | |
| position: relative; | |
| overflow: auto; | |
| -webkit-overflow-scrolling: touch; | |
| &[md-scroll-y] { | |
| overflow-y: auto; | |
| overflow-x: hidden; | |
| } | |
| &[md-scroll-x] { | |
| overflow-x: auto; | |
| overflow-y: hidden; | |
| } | |
| &[md-scroll-xy] { | |
| } | |
| // For iOS allow disabling of momentum scrolling | |
| // @see issue #2640. | |
| &.autoScroll { | |
| -webkit-overflow-scrolling: auto; | |
| } | |
| } | |
| /** Styles for mdCalendar. */ | |
| $md-calendar-cell-size: 44px !default; | |
| $md-calendar-header-height: 40px; | |
| $md-calendar-cell-emphasis-size: 40px !default; | |
| $md-calendar-side-padding: 16px !default; | |
| $md-calendar-weeks-to-show: 7 !default; | |
| $md-calendar-month-label-padding: 8px !default; | |
| $md-calendar-month-label-font-size: 14px !default; | |
| $md-calendar-scroll-cue-shadow-radius: 6px; | |
| $md-calendar-width: (7 * $md-calendar-cell-size) + (2 * $md-calendar-side-padding); | |
| $md-calendar-height: | |
| ($md-calendar-weeks-to-show * $md-calendar-cell-size) + $md-calendar-header-height; | |
| // Styles for date cells, including day-of-the-week header cells. | |
| @mixin md-calendar-cell() { | |
| height: $md-calendar-cell-size; | |
| width: $md-calendar-cell-size; | |
| text-align: center; | |
| // Remove all padding and borders so we can completely | |
| // control the size of the table cells. | |
| padding: 0; | |
| border: none; | |
| // The left / right padding is applied to the cells instead of the wrapper | |
| // because we want the header background and the month dividing border to | |
| // extend the entire width of the calendar. | |
| &:first-child { | |
| padding-left: $md-calendar-side-padding; | |
| } | |
| &:last-child { | |
| padding-right: $md-calendar-side-padding; | |
| } | |
| } | |
| // Styles for tables used in mdCalendar (the day-of-the-week header and the table of dates itself). | |
| @mixin md-calendar-table() { | |
| // Fixed table layout makes IE faster. | |
| // https://msdn.microsoft.com/en-us/library/ms533020(VS.85).aspx | |
| table-layout: fixed; | |
| border-spacing: 0; | |
| border-collapse: collapse; | |
| } | |
| md-calendar { | |
| font-size: 13px; | |
| user-select: none; | |
| } | |
| // Wrap the scroll with overflow: hidden in order to hide the scrollbar. | |
| // The inner .md-calendar-scroll-container will using a padding-right to push the | |
| // scrollbar into the hidden area (done with javascript). | |
| .md-calendar-scroll-mask { | |
| display: inline-block; | |
| overflow: hidden; | |
| height: $md-calendar-weeks-to-show * $md-calendar-cell-size; | |
| // The actual scrolling element. | |
| .md-virtual-repeat-scroller { | |
| // These two properties are needed to get touch momentum to work. | |
| // See https://css-tricks.com/snippets/css/momentum-scrolling-on-ios-overflow-elements | |
| overflow-y: scroll; | |
| -webkit-overflow-scrolling: touch; | |
| &::-webkit-scrollbar { | |
| display: none; | |
| } | |
| } | |
| // Offsetter is the element that is translateY'ed into view of the user and contains the | |
| // calendar content. | |
| .md-virtual-repeat-offsetter { | |
| width: 100%; | |
| } | |
| } | |
| // Contains the scrolling element (this is the md-virtual-repeat-container). | |
| .md-calendar-scroll-container { | |
| // Add an inset shadow to help cue users that the calendar is scrollable. Use a negative x | |
| // offset to push the vertical edge shadow off to the right so that it's cut off by the edge | |
| // of the calendar container. | |
| box-shadow: inset -3px 3px $md-calendar-scroll-cue-shadow-radius rgba(black, 0.2); | |
| display: inline-block; | |
| height: $md-calendar-weeks-to-show * $md-calendar-cell-size; | |
| // Add the shadow radius to the width so that the shadow os pushed off to the side and cut off. | |
| width: $md-calendar-width + $md-calendar-scroll-cue-shadow-radius; | |
| } | |
| // A single date cell in the calendar table. | |
| .md-calendar-date { | |
| @include md-calendar-cell(); | |
| &.md-calendar-date-disabled { | |
| cursor: default; | |
| } | |
| } | |
| // Circle element inside of every date cell used to indicate selection or focus. | |
| .md-calendar-date-selection-indicator { | |
| transition: background-color, color $swift-ease-out-duration $swift-ease-out-timing-function; | |
| border-radius: 50%; | |
| display: inline-block; | |
| width: $md-calendar-cell-emphasis-size; | |
| height: $md-calendar-cell-emphasis-size; | |
| line-height: $md-calendar-cell-emphasis-size; | |
| .md-calendar-date:not(.md-disabled) & { | |
| cursor: pointer; | |
| } | |
| } | |
| // The label above each month (containing the month name and the year, e.g. "Jun 2014"). | |
| .md-calendar-month-label { | |
| height: $md-calendar-cell-size; | |
| font-size: $md-calendar-month-label-font-size; | |
| font-weight: 500; // Roboto Medium | |
| padding: 0 0 0 $md-calendar-side-padding + $md-calendar-month-label-padding; | |
| } | |
| // Table containing the day-of-the-week header. | |
| .md-calendar-day-header { | |
| @include md-calendar-table(); | |
| th { | |
| @include md-calendar-cell(); | |
| font-weight: normal; | |
| height: $md-calendar-header-height; | |
| } | |
| } | |
| // Primary table containing all date cells. Each month is a tbody in this table. | |
| .md-calendar { | |
| @include md-calendar-table(); | |
| // Divider between months. | |
| tr:last-child td { | |
| border-bottom-width: 1px; | |
| border-bottom-style: solid; | |
| } | |
| // The divider between months doesn't actually change the height of the tbody in which the | |
| // border appear; it changes the height of the following tbody. The causes the first-child to be | |
| // 1px shorter than the other months. We fix this by adding an invisible border-top. | |
| &:first-child { | |
| border-top: 1px solid transparent; | |
| } | |
| } | |
| /** Styles for mdDatepicker. */ | |
| $md-datepicker-button-gap: 12px; // Space between the text input and the calendar-icon button. | |
| $md-datepicker-border-bottom-gap: 5px; // Space between input and the grey underline. | |
| $md-datepicker-open-animation-duration: 0.2s; | |
| md-datepicker { | |
| // Don't let linebreaks happen between the open icon-button and the input. | |
| white-space: nowrap; | |
| } | |
| // The calendar icon button used to open the calendar pane. | |
| // Need absurd specificty to override md-button.md-icon-button. | |
| .md-datepicker-button { | |
| display: inline-block; | |
| box-sizing: border-box; | |
| background: none; | |
| } | |
| // The input into which the user can type the date. | |
| .md-datepicker-input { | |
| @include md-flat-input(); | |
| min-width: 120px; | |
| max-width: $md-calendar-width - $md-datepicker-button-gap; | |
| } | |
| // Container for the datepicker input. | |
| .md-datepicker-input-container { | |
| // Position relative in order to absolutely position the down-triangle button within. | |
| position: relative; | |
| padding-bottom: $md-datepicker-border-bottom-gap; | |
| border-bottom-width: 1px; | |
| border-bottom-style: solid; | |
| display: inline-block; | |
| width: auto; | |
| margin-left: $md-datepicker-button-gap; | |
| &.md-datepicker-focused { | |
| border-bottom-width: 2px; | |
| } | |
| } | |
| // Floating pane that contains the calendar at the bottom of the input. | |
| .md-datepicker-calendar-pane { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| z-index: $z-index-menu; | |
| border-width: 1px; | |
| border-style: solid; | |
| background: transparent; | |
| transform: scale(0); | |
| transform-origin: 0 0; | |
| transition: transform $md-datepicker-open-animation-duration $swift-ease-out-timing-function; | |
| &.md-pane-open { | |
| transform: scale(1); | |
| } | |
| } | |
| // Portion of the floating panel that sits, invisibly, on top of the input. | |
| .md-datepicker-input-mask { | |
| height: 40px; | |
| width: $md-calendar-width; | |
| position: relative; | |
| background: transparent; | |
| pointer-events: none; | |
| cursor: text; | |
| } | |
| .md-datepicker-input-mask-opaque { | |
| position: absolute; | |
| right: 0; | |
| left: 120px; | |
| height: 100%; | |
| } | |
| // The calendar portion of the floating pane (vs. the input mask). | |
| .md-datepicker-calendar { | |
| opacity: 0; | |
| // Use a modified timing function (from swift-ease-out) so that the opacity part of the | |
| // animation doesn't come in as quickly so that the floating pane doesn't ever seem to | |
| // cover up the trigger input. | |
| transition: opacity $md-datepicker-open-animation-duration cubic-bezier(0.5, 0, 0.25, 1); | |
| .md-pane-open & { | |
| opacity: 1; | |
| } | |
| md-calendar:focus { | |
| outline: none; | |
| } | |
| } | |
| // Down triangle/arrow indicating that the datepicker can be opened. | |
| // We can do this entirely with CSS without needing to load an icon. | |
| // See https://css-tricks.com/snippets/css/css-triangle/ | |
| $md-date-arrow-size: 5px; | |
| .md-datepicker-expand-triangle { | |
| // Center the triangle inside of the button so that the | |
| // ink ripple origin looks correct. | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| width: 0; | |
| height: 0; | |
| border-left: $md-date-arrow-size solid transparent; | |
| border-right: $md-date-arrow-size solid transparent; | |
| border-top: $md-date-arrow-size solid; | |
| } | |
| // Button containing the down "disclosure" triangle/arrow. | |
| .md-datepicker-triangle-button { | |
| position: absolute; | |
| right: 0; | |
| top: 0; | |
| // TODO(jelbourn): This position isn't great on all platforms. | |
| transform: translateY(-25%) translateX(45%); | |
| } | |
| // Need crazy specificity to override .md-button.md-icon-button. | |
| // Only apply this high specifiy to the property we need to override. | |
| .md-datepicker-triangle-button.md-button.md-icon-button { | |
| height: 100%; | |
| width: 36px; | |
| position: absolute; | |
| } | |
| // Disabled state for all elements of the picker. | |
| md-datepicker[disabled] { | |
| .md-datepicker-input-container { | |
| border-bottom-color: transparent; | |
| } | |
| .md-datepicker-triangle-button { | |
| display: none; | |
| } | |
| } | |
| // Open state for all of the elements of the picker. | |
| .md-datepicker-open { | |
| .md-datepicker-input-container { | |
| margin-left: -$md-datepicker-button-gap; | |
| border: none; | |
| } | |
| .md-datepicker-input { | |
| margin-left: 24px; | |
| height: 40px; | |
| } | |
| .md-datepicker-triangle-button { | |
| display: none; | |
| } | |
| } | |
| // When the position of the floating calendar pane is adjusted to remain inside | |
| // of the viewport, hide the inputput mask, as the text input will no longer be | |
| // directly underneath it. | |
| .md-datepicker-pos-adjusted .md-datepicker-input-mask { | |
| display: none; | |
| } | |
| // Animate the calendar inside of the floating calendar pane such that it appears to "scroll" into | |
| // view while the pane is opening. This is done as a cue to users that the calendar is scrollable. | |
| .md-datepicker-calendar-pane { | |
| .md-calendar { | |
| transform: translateY(-85px); | |
| transition: transform 0.65s $swift-ease-out-timing-function; | |
| transition-delay: 0.125s; | |
| } | |
| &.md-pane-open .md-calendar { | |
| transform: translateY(0); | |
| } | |
| } | |
| $dialog-padding: $baseline-grid * 3; | |
| .md-dialog-is-showing { | |
| max-height: 100%; | |
| } | |
| .md-dialog-container { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| z-index: $z-index-dialog; | |
| overflow: hidden; | |
| } | |
| md-dialog { | |
| &.md-transition-in { | |
| opacity: 1; | |
| transition: $swift-ease-out; | |
| transform: translate3d(0,0,0) scale(1.0); | |
| } | |
| &.md-transition-out { | |
| opacity: 0; | |
| transition: $swift-ease-out; | |
| transform: translate3d(0,100%,0) scale(0.2); | |
| } | |
| opacity: 0; | |
| min-width: 240px; | |
| max-width: 80%; | |
| max-height: 80%; | |
| position: relative; | |
| overflow: auto; // stop content from leaking out of dialog parent and fix IE | |
| box-shadow: $whiteframe-shadow-13dp; | |
| display: flex; | |
| flex-direction: column; | |
| &> form { | |
| display: flex; | |
| flex-direction: column; | |
| overflow: auto; | |
| } | |
| md-dialog-content { | |
| order: 1; | |
| flex-direction: column; | |
| padding: $dialog-padding; | |
| overflow: auto; | |
| -webkit-overflow-scrolling: touch; | |
| &:not([layout=row]) > *:first-child:not(.md-subheader) { | |
| margin-top: 0; | |
| } | |
| &:focus { | |
| outline: none; | |
| } | |
| .md-subheader { | |
| margin: 0; | |
| &.sticky-clone { | |
| box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16); | |
| } | |
| } | |
| &.sticky-container { | |
| padding: 0; | |
| &> div { | |
| padding: $dialog-padding; | |
| padding-top: 0; | |
| } | |
| } | |
| .md-dialog-content-body { | |
| width:100%; | |
| } | |
| } | |
| .md-actions { | |
| display: flex; | |
| order: 2; | |
| box-sizing: border-box; | |
| align-items: center; | |
| justify-content: flex-end; | |
| margin-bottom: 0; | |
| padding-right: $baseline-grid; | |
| padding-left: $baseline-grid * 2; | |
| min-height: $baseline-grid * 6.5; | |
| overflow: hidden; | |
| .md-button { | |
| margin-bottom: $baseline-grid; | |
| margin-left: $baseline-grid; | |
| margin-right: 0; | |
| margin-top: $baseline-grid; | |
| } | |
| } | |
| &.md-content-overflow .md-actions { | |
| border-top-width: 1px; | |
| border-top-style: solid; | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-dialog { | |
| border: 1px solid #fff; | |
| } | |
| } | |
| md-divider { | |
| display: block; | |
| border-top-width: 1px; | |
| border-top-style: solid; | |
| margin: 0; | |
| &[md-inset] { | |
| margin-left: $baseline-grid * 10; | |
| } | |
| } | |
| md-fab-speed-dial { | |
| position: relative; | |
| display: flex; | |
| align-items: center; | |
| // Include the top/left/bottom/right fab positions | |
| @include fab-all-positions(); | |
| .md-css-variables { | |
| z-index: $z-index-fab; | |
| } | |
| &.md-is-open { | |
| .md-fab-action-item { | |
| visibility: visible; | |
| align-items: center; | |
| } | |
| } | |
| md-fab-actions { | |
| display: flex; | |
| // Set the height so that the z-index in the JS animation works | |
| height: auto; | |
| .md-fab-action-item { | |
| visibility: hidden; | |
| transition: $swift-ease-in; | |
| } | |
| } | |
| &.md-down { | |
| flex-direction: column; | |
| md-fab-trigger { | |
| order: 1; | |
| } | |
| md-fab-actions { | |
| flex-direction: column; | |
| order: 2; | |
| } | |
| } | |
| &.md-up { | |
| flex-direction: column; | |
| md-fab-trigger { | |
| order: 2; | |
| } | |
| md-fab-actions { | |
| flex-direction: column-reverse; | |
| order: 1; | |
| } | |
| } | |
| &.md-left { | |
| flex-direction: row; | |
| md-fab-trigger { | |
| order: 2; | |
| } | |
| md-fab-actions { | |
| flex-direction: row-reverse; | |
| order: 1; | |
| .md-fab-action-item { | |
| transition: $swift-ease-in; | |
| } | |
| } | |
| } | |
| &.md-right { | |
| flex-direction: row; | |
| md-fab-trigger { | |
| order: 1; | |
| } | |
| md-fab-actions { | |
| flex-direction: row; | |
| order: 2; | |
| .md-fab-action-item { | |
| transition: $swift-ease-in; | |
| } | |
| } | |
| } | |
| /* | |
| * Handle the animations | |
| */ | |
| &.md-scale { | |
| .md-fab-action-item { | |
| opacity: 0; | |
| transform: scale(0); | |
| transition: $swift-ease-in; | |
| // Make the scale animation a bit faster since we are delaying each item | |
| transition-duration: $swift-ease-in-duration / 2.1; | |
| } | |
| } | |
| } | |
| $button-fab-width: rem(5.600) !default; | |
| $icon-button-margin: rem(0.600) !default; | |
| md-fab-toolbar { | |
| $icon-delay: 200ms; | |
| // Include the top/left/bottom/right fab positions | |
| @include fab-all-positions(); | |
| display: block; | |
| /* | |
| * Closed styling | |
| */ | |
| .md-fab-toolbar-wrapper { | |
| display: block; | |
| position: relative; | |
| overflow: hidden; | |
| // Account for the size of the trigger plus it's margin/shadow | |
| height: $button-fab-width + ($icon-button-margin * 2); | |
| } | |
| md-fab-trigger { | |
| position: absolute; | |
| z-index: $z-index-fab; | |
| button { | |
| overflow: visible !important; | |
| } | |
| .md-fab-toolbar-background { | |
| display: block; | |
| position: absolute; | |
| z-index: $z-index-fab + 1; | |
| opacity: 1; | |
| transition: $swift-ease-in; | |
| } | |
| md-icon { | |
| position: relative; | |
| z-index: $z-index-fab + 2; | |
| opacity: 1; | |
| // Hide the icon very quickly | |
| transition: all $icon-delay ease-in; | |
| } | |
| } | |
| &.md-left { | |
| md-fab-trigger { | |
| right: 0; | |
| } | |
| .md-toolbar-tools { | |
| flex-direction: row-reverse; | |
| > .md-button:first-child { | |
| margin-right: 0.6rem; | |
| } | |
| > .md-button:first-child { | |
| margin-left: -0.8rem; | |
| } | |
| > .md-button:last-child { | |
| margin-right: 8px; | |
| } | |
| } | |
| } | |
| &.md-right { | |
| md-fab-trigger { | |
| left: 0; | |
| } | |
| .md-toolbar-tools { | |
| flex-direction: row; | |
| } | |
| } | |
| md-toolbar { | |
| background-color: transparent !important; | |
| pointer-events: none; | |
| z-index: $z-index-fab + 3; | |
| .md-toolbar-tools { | |
| // Fix some spacing issues with the icons and the trigger | |
| padding: 0 20px; | |
| margin-top: 3px; | |
| } | |
| .md-fab-action-item { | |
| opacity: 0; | |
| transform: scale(0); | |
| transition: $swift-ease-in; | |
| // Cut the action item's animation time in half since we delay it in the JS | |
| transition-duration: $swift-ease-in-duration / 2; | |
| } | |
| } | |
| /* | |
| * Hover styling | |
| */ | |
| &.md-is-open { | |
| md-fab-trigger > button { | |
| box-shadow: none; | |
| md-icon { | |
| opacity: 0; | |
| } | |
| } | |
| .md-fab-action-item { | |
| opacity: 1; | |
| transform: scale(1); | |
| } | |
| } | |
| } | |
| md-grid-list { | |
| box-sizing: border-box; | |
| display: block; | |
| position: relative; | |
| md-grid-tile, | |
| md-grid-tile > figure, | |
| md-grid-tile-header, | |
| md-grid-tile-footer { | |
| box-sizing: border-box; | |
| } | |
| md-grid-tile { | |
| display: block; | |
| position: absolute; | |
| figure { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| height: 100%; | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| bottom: 0; | |
| left: 0; | |
| padding: 0; | |
| margin: 0; | |
| } | |
| // Headers & footers | |
| md-grid-tile-header, | |
| md-grid-tile-footer { | |
| display: flex; | |
| flex-direction: row; | |
| align-items: center; | |
| height: 48px; | |
| color: #fff; | |
| background: rgba(0, 0, 0, 0.18); | |
| overflow: hidden; | |
| // Positioning | |
| position: absolute; | |
| left: 0; | |
| right: 0; | |
| h3, | |
| h4 { | |
| font-weight: 400; | |
| margin: 0 0 0 16px; | |
| } | |
| h3 { | |
| font-size: 14px; | |
| } | |
| h4 { | |
| font-size: 12px; | |
| } | |
| } | |
| md-grid-tile-header { | |
| top: 0; | |
| } | |
| md-grid-tile-footer { | |
| bottom: 0; | |
| } | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-grid-tile { | |
| border: 1px solid #fff; | |
| } | |
| md-grid-tile-footer { | |
| border-top: 1px solid #fff; | |
| } | |
| } | |
| $icon-size: rem(2.4); | |
| md-icon { | |
| margin: auto; | |
| background-repeat: no-repeat no-repeat; | |
| display: inline-block; | |
| vertical-align: middle; | |
| fill: currentColor; | |
| height: $icon-size; | |
| width: $icon-size; | |
| svg { | |
| pointer-events: none; | |
| } | |
| &[md-font-icon] { | |
| line-height: 1; | |
| width: auto; | |
| } | |
| } | |
| // | |
| //@font-face { | |
| // font-family:"material"; | |
| // src:url("/dist/material-font/material.eot"); | |
| // font-weight:normal; | |
| // font-style:normal; | |
| //} | |
| // | |
| //@font-face { | |
| // font-family:"material"; | |
| // src:url("/dist/material-font/material.eot"); | |
| // src:url("/dist/material-font/material.eot?#iefix") format("embedded-opentype"), | |
| // url("/dist/material-font/material.woff") format("woff"), | |
| // url("/dist/material-font/material.ttf") format("truetype"), | |
| // url("/dist/material-font/material.svg?#material") format("svg"); | |
| // font-weight:normal; | |
| // font-style:normal; | |
| //} | |
| // | |
| ///* Bootstrap Overrides */ | |
| //[class^="icon-"]:before, | |
| //[class*=" icon-"]:before { | |
| // font-family:"material"; | |
| // display:inline-block; | |
| // vertical-align:middle; | |
| // line-height:1; | |
| // font-weight:normal; | |
| // font-style:normal; | |
| // speak:none; | |
| // text-decoration:inherit; | |
| // text-transform:none; | |
| // text-rendering:optimizeLegibility; | |
| // -webkit-font-smoothing:antialiased; | |
| // -moz-osx-font-smoothing:grayscale; | |
| //} | |
| $list-h3-margin: 0 0 0px 0 !default; | |
| $list-h4-margin: 3px 0 1px 0 !default; | |
| $list-h4-font-weight: 400 !default; | |
| $list-header-line-height: 1.2em !default; | |
| $list-p-margin: 0 0 0 0 !default; | |
| $list-p-line-height: 1.6em !default; | |
| $list-padding-top: $baseline-grid !default; | |
| $list-padding-right: 0px !default; | |
| $list-padding-left: 0px !default; | |
| $list-padding-bottom: $baseline-grid !default; | |
| $item-padding-top: 0px !default; | |
| $item-padding-right: 0px !default; | |
| $item-padding-left: 0px !default; | |
| $item-padding-bottom: 0px !default; | |
| $list-item-padding-vertical: 0px !default; | |
| $list-item-padding-horizontal: $baseline-grid * 2 !default; | |
| $list-item-primary-width: $baseline-grid * 7 !default; | |
| $list-item-primary-avatar-width: $baseline-grid * 5 !default; | |
| $list-item-primary-icon-width: $baseline-grid * 3 !default; | |
| $list-item-secondary-left-margin: $baseline-grid * 2 !default; | |
| $list-item-secondary-button-width: $baseline-grid * 6 !default; | |
| $list-item-inset-divider-offset: 12 * $baseline-grid !default; | |
| $list-item-height: 6 * $baseline-grid !default; | |
| $list-item-two-line-height: 9 * $baseline-grid !default; | |
| $list-item-three-line-height: 11 * $baseline-grid !default; | |
| md-list { | |
| display: block; | |
| padding: $list-padding-top $list-padding-right $list-padding-bottom $list-padding-left; | |
| .md-subheader { | |
| font-size: $body-font-size-base; | |
| font-weight: 500; | |
| letter-spacing: 0.010em; | |
| line-height: $list-header-line-height; | |
| } | |
| } | |
| md-list-item { | |
| &.md-proxy-focus.md-focused .md-no-style { | |
| transition: background-color 0.15s linear; | |
| } | |
| &.md-no-proxy, | |
| .md-no-style { | |
| position: relative; | |
| padding: $list-item-padding-vertical $list-item-padding-horizontal; | |
| flex: 1; | |
| &.md-button { | |
| font-size: inherit; | |
| height: inherit; | |
| text-align: left; | |
| text-transform: none; | |
| width: 100%; | |
| white-space: normal; | |
| flex-direction: inherit; | |
| align-items: inherit; | |
| } | |
| &:focus { | |
| outline: none | |
| } | |
| } | |
| &.md-with-secondary { | |
| position: relative; | |
| } | |
| &.md-clickable:hover { | |
| cursor: pointer; | |
| } | |
| md-divider { | |
| position: absolute; | |
| bottom: 0; | |
| left: 0; | |
| width: 100%; | |
| &[md-inset] { | |
| left: $list-item-inset-divider-offset; | |
| width: calc(100% - #{$list-item-inset-divider-offset}); | |
| margin: 0; | |
| } | |
| } | |
| } | |
| md-list-item, md-list-item .md-list-item-inner { | |
| display: flex; | |
| justify-content: flex-start; | |
| align-items: center; | |
| min-height: $list-item-height; | |
| // Layout for controls in primary or secondary divs, or auto-infered first child | |
| & > div.md-primary > md-icon, | |
| & > div.md-secondary > md-icon, | |
| & > md-icon:first-child, | |
| > md-icon.md-secondary { | |
| width: $list-item-primary-icon-width; | |
| margin-top: 16px; | |
| margin-bottom: 12px; | |
| box-sizing: content-box; | |
| } | |
| & > div.md-primary > md-checkbox, | |
| & > div.md-secondary > md-checkbox, | |
| & > md-checkbox:first-child, | |
| md-checkbox.md-secondary { | |
| align-self: center; | |
| .md-label { display: none; } | |
| } | |
| & > md-icon:first-child { | |
| margin-right: $list-item-primary-width - $list-item-primary-icon-width; | |
| } | |
| & > md-checkbox:first-child { | |
| width: 3 * $baseline-grid; | |
| margin-left: 3px; | |
| margin-right: 29px; | |
| } | |
| & > .md-avatar:first-child { | |
| width: $list-item-primary-avatar-width; | |
| height: $list-item-primary-avatar-width; | |
| margin-top: $baseline-grid; | |
| margin-bottom: $baseline-grid; | |
| margin-right: $list-item-primary-width - $list-item-primary-avatar-width; | |
| border-radius: 50%; | |
| box-sizing: content-box; | |
| } | |
| md-checkbox.md-secondary, | |
| md-switch.md-secondary { | |
| margin-right: 0; | |
| margin-top: 0; | |
| margin-bottom: 0; | |
| } | |
| button.md-button.md-secondary-container { | |
| background-color: transparent; | |
| align-self: center; | |
| border-radius: 50%; | |
| margin: 0px; | |
| min-width: 0px; | |
| .md-ripple, | |
| .md-ripple-container { | |
| border-radius: 50%; | |
| } | |
| } | |
| .md-secondary-container, | |
| .md-secondary { | |
| margin-left: $list-item-secondary-left-margin; | |
| position: absolute; | |
| right: $list-item-padding-horizontal; | |
| top: 50%; | |
| transform: translate3d(0, -50%, 0); | |
| } | |
| & > .md-button.md-secondary-container > .md-secondary { | |
| margin-left: 0px; | |
| position: static; | |
| } | |
| & > p, & > .md-list-item-inner > p { | |
| flex: 1; | |
| margin: 0; | |
| } | |
| } | |
| md-list-item.md-2-line, | |
| md-list-item.md-2-line > .md-no-style, | |
| md-list-item.md-3-line, | |
| md-list-item.md-3-line > .md-no-style { | |
| align-items: flex-start; | |
| justify-content: center; | |
| .md-list-item-text { | |
| flex: 1; | |
| margin: auto; | |
| text-overflow: ellipsis; | |
| &.md-offset { | |
| margin-left: $list-item-primary-width; | |
| } | |
| h3 { | |
| font-size: $subhead-font-size-base; | |
| font-weight: 400; | |
| letter-spacing: 0.010em; | |
| margin: $list-h3-margin; | |
| line-height: $list-header-line-height; | |
| overflow: hidden; | |
| white-space: nowrap; | |
| text-overflow: ellipsis; | |
| } | |
| h4 { | |
| font-size: $body-font-size-base; | |
| letter-spacing: 0.010em; | |
| margin: $list-h4-margin; | |
| font-weight: $list-h4-font-weight; | |
| line-height: $list-header-line-height; | |
| overflow: hidden; | |
| white-space: nowrap; | |
| text-overflow: ellipsis; | |
| } | |
| p { | |
| font-size: $body-font-size-base; | |
| font-weight: 500; | |
| letter-spacing: 0.010em; | |
| margin: $list-p-margin; | |
| line-height: $list-p-line-height; | |
| } | |
| } | |
| } | |
| md-list-item.md-2-line, | |
| md-list-item.md-2-line > .md-no-style { | |
| height: $list-item-two-line-height; | |
| > .md-avatar:first-child { | |
| margin-top: $baseline-grid * 1.5; | |
| } | |
| > md-icon:first-child { | |
| align-self: flex-start; | |
| } | |
| .md-list-item-text { | |
| flex: 1; | |
| } | |
| } | |
| md-list-item.md-3-line, | |
| md-list-item.md-3-line > .md-no-style { | |
| height: $list-item-three-line-height; | |
| > md-icon:first-child, | |
| > .md-avatar:first-child { | |
| margin-top: $baseline-grid * 2; | |
| } | |
| } | |
| $input-container-padding: 2px !default; | |
| $input-label-default-offset: 24px !default; | |
| $input-label-default-scale: 1.0 !default; | |
| $input-label-float-offset: 6px !default; | |
| $input-label-float-scale: 0.75 !default; | |
| $input-placeholder-offset: $input-label-default-offset !default; | |
| $input-border-width-default: 1px !default; | |
| $input-border-width-focused: 2px !default; | |
| $input-line-height: 26px !default; | |
| $input-padding-top: 2px !default; | |
| $input-error-font-size: 12px !default; | |
| $input-error-height: 24px !default; | |
| $icon-offset : 36px !default; | |
| $icon-float-top: -16px !default; | |
| $icon-float-focused-top: -8px !default; | |
| md-input-container { | |
| display: flex; | |
| position: relative; | |
| flex-direction: column; | |
| padding: $input-container-padding; | |
| padding-bottom: $input-container-padding + $input-error-height; | |
| // When we have ng-messages, remove the input error height from our bottom padding, since the | |
| // ng-messages wrapper has a min-height of 1 error (so we don't adjust height as often; see below) | |
| &.md-input-has-messages { | |
| padding-bottom: $input-container-padding; | |
| } | |
| > md-icon { | |
| position: absolute; | |
| top: 5px; | |
| left: 2px; | |
| + input { | |
| margin-left: $icon-offset; | |
| } | |
| } | |
| textarea, | |
| input[type="text"], | |
| input[type="password"], | |
| input[type="datetime"], | |
| input[type="datetime-local"], | |
| input[type="date"], | |
| input[type="month"], | |
| input[type="time"], | |
| input[type="week"], | |
| input[type="number"], | |
| input[type="email"], | |
| input[type="url"], | |
| input[type="search"], | |
| input[type="tel"], | |
| input[type="color"] { | |
| /* remove default appearance from all input/textarea */ | |
| -moz-appearance: none; | |
| -webkit-appearance: none; | |
| } | |
| input[type="date"], | |
| input[type="datetime-local"], | |
| input[type="month"], | |
| input[type="time"], | |
| input[type="week"] { | |
| min-height: $input-line-height; | |
| } | |
| textarea { | |
| resize: none; | |
| overflow: hidden; | |
| } | |
| textarea.md-input { | |
| min-height: $input-line-height; | |
| -ms-flex-preferred-size: auto; //IE fix | |
| } | |
| label { | |
| position: relative; | |
| top: -2px; | |
| } | |
| label:not(.md-no-float), | |
| .md-placeholder { | |
| order: 1; | |
| pointer-events: none; | |
| -webkit-font-smoothing: antialiased; | |
| padding-left: $input-container-padding; | |
| z-index: 1; | |
| transform: translate3d(0, $input-label-default-offset + 4, 0) scale($input-label-default-scale); | |
| transition: transform $swift-ease-out-timing-function 0.25s; | |
| @include rtl(transform-origin, left top, right top); | |
| } | |
| .md-placeholder { | |
| position: absolute; | |
| top: 0; | |
| opacity: 0; | |
| transition-property: opacity, transform; | |
| transform: translate3d(0, $input-placeholder-offset + $baseline-grid * 0.75, 0); | |
| &.md-static { | |
| position: static; | |
| } | |
| } | |
| &.md-input-focused .md-placeholder { | |
| opacity: 1; | |
| transform: translate3d(0, $input-placeholder-offset, 0); | |
| } | |
| // Placeholder should immediately disappear when the user starts typing | |
| &.md-input-has-value .md-placeholder { | |
| transition: none; | |
| opacity: 0; | |
| } | |
| &:not( .md-input-has-value ) input:not( :focus ), | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-ampm-field, | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-day-field, | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-hour-field, | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-millisecond-field, | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-minute-field, | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-month-field, | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-second-field, | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-week-field, | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-year-field, | |
| &:not( .md-input-has-value ) input:not( :focus )::-webkit-datetime-edit-text { | |
| color: transparent; | |
| } | |
| /* | |
| * The .md-input class is added to the input/textarea | |
| */ | |
| .md-input { | |
| order: 2; | |
| display: block; | |
| margin-top: auto; | |
| background: none; | |
| padding-top: $input-padding-top; | |
| padding-bottom: $input-border-width-focused - $input-border-width-default; | |
| padding-left: 2px; | |
| padding-right: 2px; | |
| border-width: 0 0 $input-border-width-default 0; | |
| line-height: $input-line-height; | |
| -ms-flex-preferred-size: $input-line-height; //IE fix | |
| border-radius: 0; | |
| // Fix number inputs in Firefox to be full-width | |
| width: auto; | |
| &:focus { | |
| outline: none; | |
| } | |
| &:invalid { | |
| outline: none; | |
| box-shadow: none; | |
| } | |
| &.md-no-flex { | |
| flex: none !important; | |
| } | |
| } | |
| .md-char-counter { | |
| position: relative; | |
| text-align: right; | |
| order: 3; | |
| } | |
| ng-messages, data-ng-messages, x-ng-messages, | |
| [ng-messages], [data-ng-messages], [x-ng-messages] { | |
| position: relative; | |
| order: 4; | |
| min-height: $input-error-height; | |
| .md-char-counter { | |
| position: absolute; | |
| top: 0; | |
| right: 0; | |
| } | |
| } | |
| ng-message, data-ng-message, x-ng-message, | |
| [ng-message], [data-ng-message], [x-ng-message], | |
| [ng-message-exp], [data-ng-message-exp], [x-ng-message-exp], | |
| .md-char-counter { | |
| $input-error-line-height: $input-error-font-size + 2px; | |
| //-webkit-font-smoothing: antialiased; | |
| font-size: $input-error-font-size; | |
| line-height: $input-error-line-height; | |
| overflow: hidden; | |
| // Add some top padding which is equal to half the difference between the expected height | |
| // and the actual height | |
| $error-padding-top: ($input-error-height - $input-error-line-height) / 2; | |
| padding-top: $error-padding-top; | |
| &:not(.md-char-counter) { | |
| padding-right: rem(5); | |
| } | |
| &.ng-enter { | |
| transition: $swift-ease-in; | |
| // Delay the enter transition so it happens after the leave | |
| transition-delay: $swift-ease-in-duration / 1.5; | |
| // Since we're delaying the transition, we speed up the duration a little bit to compensate | |
| transition-duration: $swift-ease-in-duration / 1.5; | |
| } | |
| &.ng-leave { | |
| transition: $swift-ease-out; | |
| // Speed up the duration (see enter comment above) | |
| transition-duration: $swift-ease-out-duration / 1.5; | |
| } | |
| &.ng-enter, | |
| &.ng-leave.ng-leave-active { | |
| // Move the error upwards off the screen and fade it out | |
| margin-top: -$input-error-line-height - $error-padding-top; | |
| opacity: 0; | |
| } | |
| &.ng-leave, | |
| &.ng-enter.ng-enter-active { | |
| // Move the error down into position and fade it in | |
| margin-top: 0; | |
| opacity: 1; | |
| } | |
| } | |
| &.md-input-focused, | |
| &.md-input-has-placeholder, | |
| &.md-input-has-value { | |
| label:not(.md-no-float) { | |
| transform: translate3d(0,$input-label-float-offset,0) scale($input-label-float-scale); | |
| } | |
| } | |
| // If we have an existing value; don't animate the transform as it happens on page load and | |
| // causes erratic/unnecessary animation | |
| &.md-input-has-value { | |
| label { | |
| transition: none; | |
| } | |
| } | |
| // Use wide border in error state or in focused state | |
| &.md-input-focused .md-input, | |
| .md-input.ng-invalid.ng-dirty { | |
| padding-bottom: 0; // Increase border width by 1px, decrease padding by 1 | |
| border-width: 0 0 $input-border-width-focused 0; | |
| } | |
| .md-input { | |
| &[disabled], | |
| [disabled] & { | |
| background-position: 0 bottom; | |
| // This background-size is coordinated with a linear-gradient set in input-theme.scss | |
| // to create a dotted line under the input. | |
| background-size: 4px 1px; | |
| background-repeat: repeat-x; | |
| margin-bottom: -1px; // Shift downward so dotted line is positioned the same as other bottom borders | |
| } | |
| } | |
| } | |
| md-input-container.md-icon-float { | |
| margin-top : $icon-float-top; | |
| transition : margin-top 0.5s $swift-ease-out-timing-function ; | |
| > label { | |
| pointer-events:none; | |
| position:absolute; | |
| margin-left: $icon-offset; | |
| } | |
| > md-icon { | |
| top: 26px; | |
| left: 2px; | |
| + input, | |
| + textarea { | |
| margin-left: $icon-offset; | |
| } | |
| } | |
| > input, | |
| > textarea { | |
| padding-top : $input-line-height - $input-container-padding; | |
| } | |
| &.md-input-focused, | |
| &.md-input-has-value { | |
| margin-top: $icon-float-focused-top; | |
| label { | |
| transform: translate3d(0,$input-label-float-offset,0) scale($input-label-float-scale); | |
| transition: transform $swift-ease-out-timing-function 0.5s; | |
| } | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-input-container.md-default-theme > md-icon { | |
| fill: #fff; | |
| } | |
| } | |
| $menu-border-radius: 2px; | |
| $max-visible-items: 6; | |
| $menu-item-height: 6 * $baseline-grid; | |
| $dense-menu-item-height: 4 * $baseline-grid; | |
| $max-menu-height: 2 * $baseline-grid + $max-visible-items * $menu-item-height; | |
| $max-dense-menu-height: 2 * $baseline-grid + $max-visible-items * $dense-menu-item-height; | |
| .md-open-menu-container { | |
| position: fixed; | |
| left: 0; | |
| top: 0; | |
| z-index: $z-index-menu; | |
| opacity: 0; | |
| border-radius: $menu-border-radius; | |
| md-menu-divider { | |
| margin-top: $baseline-grid / 2; | |
| margin-bottom: $baseline-grid / 2; | |
| height: 1px; | |
| width: 100%; | |
| } | |
| md-menu-content > * { | |
| opacity: 0; | |
| } | |
| // Don't let the user click something until it's animated | |
| &:not(.md-clickable) { | |
| pointer-events: none; | |
| } | |
| // enter: menu scales in, then list fade in. | |
| &.md-active { | |
| opacity: 1; | |
| transition: $swift-ease-out; | |
| transition-duration: 200ms; | |
| > md-menu-content > * { | |
| opacity: 1; | |
| transition: $swift-ease-in; | |
| transition-duration: 200ms; | |
| transition-delay: 100ms; | |
| } | |
| } | |
| // leave: the container fades out | |
| &.md-leave { | |
| opacity: 0; | |
| transition: $swift-ease-in; | |
| transition-duration: 250ms; | |
| } | |
| } | |
| md-menu-content { | |
| display: flex; | |
| flex-direction: column; | |
| padding: $baseline-grid 0; | |
| max-height: $max-menu-height; | |
| overflow-y: auto; | |
| &.md-dense { | |
| max-height: $max-dense-menu-height; | |
| md-menu-item { | |
| height: $dense-menu-item-height; | |
| min-height: 0px; | |
| } | |
| } | |
| } | |
| md-menu-item { | |
| display: flex; | |
| flex-direction: row; | |
| min-height: $menu-item-height; | |
| height: $menu-item-height; | |
| align-content: center; | |
| justify-content: flex-start; | |
| > * { | |
| width: 100%; | |
| margin: auto 0; | |
| padding-left: 2*$baseline-grid; | |
| padding-right: 2*$baseline-grid; | |
| } | |
| > a.md-button { | |
| display: flex; | |
| } | |
| > .md-button { | |
| border-radius: 0; | |
| margin: auto 0; | |
| font-size: (2*$baseline-grid) - 1; | |
| text-transform: none; | |
| font-weight: 400; | |
| text-align: start; | |
| height: 100%; | |
| padding-left: 2*$baseline-grid; | |
| padding-right: 2*$baseline-grid; | |
| display: inline-block; | |
| align-items: baseline; | |
| align-content: left; | |
| width:100%; | |
| md-icon { | |
| margin: auto 2*$baseline-grid auto 0; | |
| } | |
| p { | |
| display:inline-block; | |
| margin: auto; | |
| } | |
| span { | |
| margin-top: auto; | |
| margin-bottom: auto; | |
| } | |
| .md-ripple-container { | |
| border-radius: inherit; | |
| } | |
| } | |
| } | |
| .md-menu { | |
| padding: $baseline-grid 0; | |
| } | |
| md-toolbar { | |
| .md-menu { | |
| height: auto; | |
| margin: auto; | |
| } | |
| } | |
| @media (max-width: $layout-breakpoint-sm - 1) { | |
| md-menu-content { | |
| min-width: 112px; | |
| } | |
| @for $i from 3 through 7 { | |
| md-menu-content[width="#{$i}"] { | |
| min-width: $i * 56px; | |
| } | |
| } | |
| } | |
| @media (min-width: $layout-breakpoint-sm) { | |
| md-menu-content { | |
| min-width: 96px; | |
| } | |
| @for $i from 3 through 7 { | |
| md-menu-content[width="#{$i}"] { | |
| min-width: $i * 64px; | |
| } | |
| } | |
| } | |
| md-toolbar.md-menu-toolbar { | |
| h2.md-toolbar-tools { | |
| line-height: 1rem; | |
| height: auto; | |
| padding: 3.5 * $baseline-grid; | |
| padding-bottom: 1.5 * $baseline-grid; | |
| } | |
| } | |
| md-menu-bar { | |
| padding: 0 2.5 * $baseline-grid; | |
| display: block; | |
| position: relative; | |
| z-index: 2; | |
| .md-menu { | |
| display: inline-block; | |
| padding: 0; | |
| position: relative; | |
| } | |
| button { | |
| font-size: rem(1.4); | |
| padding: 0 1.25 * $baseline-grid; | |
| margin: 0; | |
| border: 0; | |
| background-color: transparent; | |
| height: 5 * $baseline-grid; | |
| } | |
| md-backdrop.md-menu-backdrop { | |
| z-index: -2; | |
| } | |
| } | |
| md-menu-content.md-menu-bar-menu.md-dense { | |
| max-height: none; | |
| padding: 2 * $baseline-grid 0; | |
| md-menu-item.md-indent { | |
| position: relative; | |
| > md-icon { | |
| position: absolute; | |
| padding: 0; | |
| width: 24px; | |
| top: 0.75 * $baseline-grid; | |
| left: 3 * $baseline-grid; | |
| } | |
| > .md-button, .md-menu > .md-button { | |
| padding: 0 4 * $baseline-grid 0 8 * $baseline-grid; | |
| } | |
| } | |
| .md-button { | |
| min-height: 0; | |
| height: 4 * $baseline-grid; | |
| display: flex; | |
| span { | |
| flex-grow: 1; | |
| } | |
| span.md-alt-text { | |
| flex-grow: 0; | |
| align-self: flex-end; | |
| margin: 0 $baseline-grid; | |
| } | |
| } | |
| md-menu-divider { | |
| margin: $baseline-grid 0; | |
| } | |
| .md-menu { | |
| padding: 0; | |
| > .md-button { | |
| position: relative; | |
| margin: 0; | |
| width: 100%; | |
| text-align: left; | |
| text-align: start; | |
| text-transform: none; | |
| font-weight: normal; | |
| border-radius: 0px; | |
| padding-left: 2 * $baseline-grid; | |
| &:after { | |
| display: block; | |
| content: '\25BC'; | |
| position: absolute; | |
| top: 0px; | |
| speak: none; | |
| transform: rotate(270deg) scaleY(0.45) scaleX(0.9); | |
| right: 3.5 * $baseline-grid; | |
| } | |
| } | |
| } | |
| } | |
| $progress-circular-ease-in-out : cubic-bezier(0.35, 0, 0.25, 1) !default; | |
| $progress-circular-duration : 5.25s !default; | |
| $progress-circular-circle-duration : $progress-circular-duration * 0.25 !default; | |
| $progress-circular-outer-duration : $progress-circular-duration * (5 / 9) !default; | |
| $progress-circular-sporadic-duration : $progress-circular-duration !default; | |
| $progress-border-width : 10px; | |
| $progress-circular-size : 10 * $progress-border-width !default; | |
| md-progress-circular { | |
| display: block; | |
| position: relative; | |
| width: $progress-circular-size; | |
| height: $progress-circular-size; | |
| padding-top: 0 !important; | |
| margin-bottom: 0 !important; | |
| transform: scale(0.5); | |
| .md-spinner-wrapper { | |
| display:block; | |
| position: relative; | |
| overflow: hidden; | |
| .md-inner { | |
| width: $progress-circular-size; | |
| height: $progress-circular-size; | |
| position: relative; | |
| .md-gap { | |
| position: absolute; | |
| left: $progress-circular-size * 0.5 - 1; | |
| right: $progress-circular-size * 0.5 - 1; | |
| top: 0; | |
| bottom: 0; | |
| border-top-width: $progress-border-width; | |
| border-top-style: solid; | |
| box-sizing: border-box; | |
| } | |
| .md-left, .md-right { | |
| position: absolute; | |
| top: 0; | |
| height: $progress-circular-size; | |
| width: $progress-circular-size * 0.50; | |
| overflow: hidden; | |
| .md-half-circle { | |
| position: absolute; | |
| top: 0; | |
| width: $progress-circular-size; | |
| height: $progress-circular-size; | |
| box-sizing: border-box; | |
| border-width: $progress-border-width; | |
| border-style: solid; | |
| border-bottom-color: transparent; | |
| border-radius: 50%; | |
| } | |
| } | |
| .md-left { | |
| left: 0; | |
| .md-half-circle { | |
| left: 0; | |
| border-right-color: transparent; | |
| } | |
| } | |
| .md-right { | |
| right: 0; | |
| .md-half-circle { | |
| right: 0; | |
| border-left-color: transparent; | |
| } | |
| } | |
| } | |
| } | |
| .md-spinner-wrapper.md-mode-indeterminate { | |
| animation: outer-rotate $progress-circular-outer-duration linear infinite; | |
| .md-inner { | |
| animation: sporadic-rotate $progress-circular-sporadic-duration $progress-circular-ease-in-out infinite; | |
| .md-left, .md-right { | |
| .md-half-circle { | |
| animation-iteration-count: infinite; | |
| animation-duration: ($progress-circular-duration * 0.25); | |
| animation-timing-function: $progress-circular-ease-in-out; | |
| } | |
| } | |
| .md-left { | |
| .md-half-circle { | |
| animation-name: left-wobble; | |
| } | |
| } | |
| .md-right { | |
| .md-half-circle { | |
| animation-name: right-wobble; | |
| } | |
| } | |
| } | |
| } | |
| md-progress-circular.ng-hide { | |
| .md-spinner-wrapper { | |
| animation: none; | |
| .md-inner { | |
| animation: none; | |
| .md-left { | |
| .md-half-circle { | |
| animation-name: none; | |
| } | |
| } | |
| .md-right { | |
| .md-half-circle { | |
| animation-name: none; | |
| } | |
| } | |
| } | |
| } | |
| } | |
| .md-spinner-wrapper.ng-hide { | |
| animation: none; | |
| .md-inner { | |
| animation: none; | |
| .md-left { | |
| .md-half-circle { | |
| animation-name: none; | |
| } | |
| } | |
| .md-right { | |
| .md-half-circle { | |
| animation-name: none; | |
| } | |
| } | |
| } | |
| } | |
| } | |
| // | |
| // Keyframe animation for the Indeterminate Progress | |
| // | |
| @keyframes outer-rotate { | |
| 100% { transform: rotate(360deg); } | |
| } | |
| @keyframes left-wobble { | |
| 0%, 100% { transform: rotate(130deg); } | |
| 50% { transform: rotate( -5deg); } | |
| } | |
| @keyframes right-wobble { | |
| 0%, 100% { transform: rotate(-130deg); } | |
| 50% { transform: rotate( 5deg); } | |
| } | |
| @keyframes sporadic-rotate { | |
| 12.5% { transform: rotate( 135deg); } | |
| 25% { transform: rotate( 270deg); } | |
| 37.5% { transform: rotate( 405deg); } | |
| 50% { transform: rotate( 540deg); } | |
| 62.5% { transform: rotate( 675deg); } | |
| 75% { transform: rotate( 810deg); } | |
| 87.5% { transform: rotate( 945deg); } | |
| 100% { transform: rotate(1080deg); } | |
| } | |
| $progress-linear-bar-height: 5px !default; | |
| md-progress-linear { | |
| display: block; | |
| position: relative; | |
| width: 100%; | |
| height: $progress-linear-bar-height; | |
| padding-top: 0 !important; | |
| margin-bottom: 0 !important; | |
| .md-container { | |
| display:block; | |
| position: relative; | |
| overflow: hidden; | |
| width:100%; | |
| height: $progress-linear-bar-height; | |
| transform: translate(0, 0) scale(1, 1);; | |
| .md-bar { | |
| position: absolute; | |
| left: 0; | |
| top: 0; | |
| bottom: 0; | |
| width: 100%; | |
| height: $progress-linear-bar-height; | |
| } | |
| .md-dashed:before { | |
| content: ""; | |
| display: none; | |
| position: absolute; | |
| margin-top: 0; | |
| height: $progress-linear-bar-height; | |
| width: 100%; | |
| background-color: transparent; | |
| background-size: 10px 10px !important; | |
| background-position: 0px -23px; | |
| } | |
| .md-bar1, .md-bar2 { | |
| // Just set the transition information here. | |
| // Note: the actual transform values are calculated in JS | |
| transition: transform 0.2s linear; | |
| } | |
| // ************************************************************ | |
| // Animations for modes: Determinate, InDeterminate, and Query | |
| // ************************************************************ | |
| &.md-mode-query { | |
| .md-bar1 { | |
| display: none; | |
| } | |
| .md-bar2 { | |
| transition: all 0.2s linear; | |
| animation: query .8s infinite cubic-bezier(0.390, 0.575, 0.565, 1.000); | |
| } | |
| } | |
| &.md-mode-determinate { | |
| .md-bar1 { | |
| display: none; | |
| } | |
| } | |
| &.md-mode-indeterminate { | |
| .md-bar1 { | |
| animation: md-progress-linear-indeterminate-scale-1 4s infinite, | |
| md-progress-linear-indeterminate-1 4s infinite; | |
| } | |
| .md-bar2 { | |
| animation: md-progress-linear-indeterminate-scale-2 4s infinite, | |
| md-progress-linear-indeterminate-2 4s infinite; | |
| } | |
| } | |
| &.ng-hide { | |
| animation: none; | |
| .md-bar1 { | |
| animation-name: none; | |
| } | |
| .md-bar2 { | |
| animation-name: none; | |
| } | |
| } | |
| } | |
| // Special animations for the `buffer` mode | |
| .md-container.md-mode-buffer { | |
| background-color: transparent !important; | |
| transition: all 0.2s linear; | |
| .md-dashed:before { | |
| display: block; | |
| animation: buffer 3s infinite linear; | |
| } | |
| } | |
| } | |
| @keyframes query { | |
| 0% { | |
| opacity: 1; | |
| transform: translateX(35%) scale(.3, 1); | |
| } | |
| 100% { | |
| opacity: 0; | |
| transform: translateX(-50%) scale(0, 1); | |
| } | |
| } | |
| @keyframes buffer { | |
| 0% { | |
| opacity: 1; | |
| background-position: 0px -23px; | |
| } | |
| 50% { | |
| opacity: 0; | |
| } | |
| 100% { | |
| opacity: 1; | |
| background-position: -200px -23px; | |
| } | |
| } | |
| @keyframes md-progress-linear-indeterminate-scale-1 { | |
| 0% { | |
| transform: scaleX(0.1); | |
| animation-timing-function: linear; | |
| } | |
| 36.6% { | |
| transform: scaleX(0.1); | |
| animation-timing-function: cubic-bezier(0.334731432, 0.124819821, 0.785843996, 1); | |
| } | |
| 69.15% { | |
| transform: scaleX(0.83); | |
| animation-timing-function: cubic-bezier(0.225732004, 0, 0.233648906, 1.3709798); | |
| } | |
| 100% { | |
| transform: scaleX(0.1); | |
| } | |
| } | |
| @keyframes md-progress-linear-indeterminate-1 { | |
| 0% { | |
| left: -378.6 * 100% / 360; | |
| animation-timing-function: linear; | |
| } | |
| 20% { | |
| left: -378.6 * 100% / 360; | |
| animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495818703); | |
| } | |
| 69.15% { | |
| left: 77.4 * 100% / 360; | |
| animation-timing-function: cubic-bezier(0.302435, 0.38135197, 0.55, 0.956352125); | |
| } | |
| 100% { | |
| left: 343.6 * 100% / 360; | |
| } | |
| } | |
| @keyframes md-progress-linear-indeterminate-scale-2 { | |
| 0% { | |
| transform: scaleX(0.1); | |
| animation-timing-function: cubic-bezier(0.205028172, 0.057050836, 0.57660995, 0.453970841); | |
| } | |
| 19.15% { | |
| transform: scaleX(0.57); | |
| animation-timing-function: cubic-bezier(0.152312994, 0.196431957, 0.648373778, 1.00431535); | |
| } | |
| 44.15% { | |
| transform: scaleX(0.91); | |
| animation-timing-function: cubic-bezier(0.25775882, -0.003163357, 0.211761916, 1.38178961); | |
| } | |
| 100% { | |
| transform: scaleX(0.1); | |
| } | |
| } | |
| @keyframes md-progress-linear-indeterminate-2 { | |
| 0% { | |
| left: -197.6 * 100% / 360; | |
| animation-timing-function: cubic-bezier(0.15, 0, 0.5150584, 0.409684966); | |
| } | |
| 25% { | |
| left: -62.1 * 100% / 360; | |
| animation-timing-function: cubic-bezier(0.3103299, 0.284057684, 0.8, 0.733718979); | |
| } | |
| 48.35% { | |
| left: 106.2 * 100% / 360; | |
| animation-timing-function: cubic-bezier(0.4, 0.627034903, 0.6, 0.902025796); | |
| } | |
| 100% { | |
| left: 422.6 * 100% / 360; | |
| } | |
| } | |
| $radio-width: 16px !default; | |
| $radio-height: $radio-width !default; | |
| $radio-text-margin: 10px !default; | |
| $radio-top-left: -15px !default; | |
| md-radio-button, | |
| .md-switch-thumb { // Used in switch | |
| box-sizing: border-box; | |
| display: block; | |
| margin: 15px; | |
| white-space: nowrap; | |
| cursor: pointer; | |
| .md-container { | |
| box-sizing: border-box; | |
| position: relative; | |
| top: 4px; | |
| display: inline-block; | |
| width: $radio-width; | |
| height: $radio-width; | |
| cursor: pointer; | |
| .md-ripple-container { | |
| position: absolute; | |
| display: block; | |
| width: $radio-width * 3; | |
| height: $radio-width * 3; | |
| left: -$radio-width; | |
| top: -$radio-width; | |
| } | |
| &:before { | |
| box-sizing: border-box; | |
| background-color: transparent; | |
| border-radius: 50%; | |
| content: ''; | |
| position: absolute; | |
| display: block; | |
| height: auto; | |
| left: 0; | |
| top: 0; | |
| right: 0; | |
| bottom: 0; | |
| transition: all 0.5s; | |
| width: auto; | |
| } | |
| } | |
| &.md-align-top-left > div.md-container { | |
| top: $radio-top-left; | |
| } | |
| .md-off { | |
| box-sizing: border-box; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: $radio-width; | |
| height: $radio-width; | |
| border-style: solid; | |
| border-width: 2px; | |
| border-radius: 50%; | |
| transition: border-color ease 0.28s; | |
| } | |
| .md-on { | |
| box-sizing: border-box; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: $radio-width; | |
| height: $radio-width; | |
| border-radius: 50%; | |
| transition: transform ease 0.28s; | |
| transform: scale(0); | |
| } | |
| &.md-checked .md-on { | |
| transform: scale(0.50); | |
| } | |
| .md-label { | |
| box-sizing: border-box; | |
| position: relative; | |
| display: inline-block; | |
| @include rtl(margin-left, $radio-text-margin, 0); | |
| @include rtl(margin-right, 0, $radio-text-margin); | |
| vertical-align: middle; | |
| white-space: normal; | |
| pointer-events: none; | |
| width: auto; | |
| } | |
| .circle { | |
| border-radius: 50%; | |
| } | |
| } | |
| md-radio-group { | |
| &:focus { | |
| outline: none; | |
| } | |
| &.md-focused { | |
| .md-checked .md-container:before { | |
| left: -8px; | |
| top: -8px; | |
| right: -8px; | |
| bottom: -8px; | |
| } | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-radio-button.md-default-theme .md-on { | |
| background-color: #fff; | |
| } | |
| } | |
| $select-option-height: 48px; | |
| $select-option-padding: 16px; | |
| $select-container-padding: 16px; | |
| $select-container-transition-duration: 350ms; | |
| $select-max-visible-options: 5; | |
| .md-select-menu-container { | |
| position: fixed; | |
| left: 0; | |
| top: 0; | |
| z-index: $z-index-select; | |
| opacity: 0; | |
| // Don't let the user select a new choice while it's animating | |
| &:not(.md-clickable) { | |
| pointer-events: none; | |
| } | |
| md-progress-circular { | |
| display: table; | |
| margin: 3*$baseline-grid auto !important; | |
| } | |
| // enter: md-select scales in, then options fade in. | |
| &.md-active { | |
| opacity: 1; | |
| md-select-menu { | |
| transition: $swift-ease-out; | |
| transition-duration: 150ms; | |
| > * { | |
| opacity: 1; | |
| transition: $swift-ease-in; | |
| transition-duration: 150ms; | |
| transition-delay: 100ms; | |
| } | |
| } | |
| } | |
| // leave: the container fades out | |
| &.md-leave { | |
| opacity: 0; | |
| transition: $swift-ease-in; | |
| transition-duration: 250ms; | |
| } | |
| } | |
| md-input-container > md-select { | |
| margin: auto 0 0 0; | |
| order: 2; | |
| } | |
| md-select { | |
| display: flex; | |
| margin: 2.5*$baseline-grid 0 3*$baseline-grid + 2 0; | |
| &[disabled] .md-select-value { | |
| background-position: 0 bottom; | |
| // This background-size is coordinated with a linear-gradient set in select-theme.scss | |
| // to create a dotted line under the input. | |
| background-size: 4px 1px; | |
| background-repeat: repeat-x; | |
| margin-bottom: -1px; // Shift downward so dotted line is positioned the same as other bottom borders | |
| } | |
| &:focus { | |
| outline: none; | |
| } | |
| &[disabled]:hover { | |
| cursor: default; | |
| } | |
| &:not([disabled]) { | |
| &:hover { | |
| cursor: pointer | |
| } | |
| &.ng-invalid.ng-dirty { | |
| .md-select-value { | |
| border-bottom: 2px solid; | |
| padding-bottom: 0; | |
| } | |
| } | |
| &:focus { | |
| .md-select-value { | |
| border-bottom-width: 2px; | |
| border-bottom-style: solid; | |
| padding-bottom: 0; | |
| } | |
| } | |
| } | |
| } | |
| .md-select-value { | |
| display: flex; | |
| align-items: center; | |
| padding: 2px 2px 1px; | |
| border-bottom-width: 1px; | |
| border-bottom-style: solid; | |
| background-color: rgba(0,0,0,0); | |
| position: relative; | |
| box-sizing: content-box; | |
| min-width: 8 * $baseline-grid; | |
| min-height: 26px; | |
| flex-grow: 1; | |
| *:first-child { | |
| flex: 1; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| max-width: calc(100% - 2*#{$baseline-grid}); | |
| transform: translate3d(0, 2px, 0); | |
| } | |
| .md-select-icon { | |
| display: block; | |
| align-items: flex-end; | |
| text-align: end; | |
| width: 3 * $baseline-grid; | |
| margin: 0 .5 * $baseline-grid; | |
| transform: translate3d(0, 1px, 0); | |
| } | |
| .md-select-icon:after { | |
| display: block; | |
| content: '\25BC'; | |
| position: relative; | |
| top: 2px; | |
| speak: none; | |
| transform: scaleY(0.6) scaleX(1); | |
| } | |
| &.md-select-placeholder { | |
| display: flex; | |
| order: 1; | |
| pointer-events: none; | |
| -webkit-font-smoothing: antialiased; | |
| padding-left: 2px; | |
| z-index: 1; | |
| } | |
| } | |
| md-select-menu { | |
| display: flex; | |
| flex-direction: column; | |
| &.md-reverse { | |
| flex-direction: column-reverse; | |
| } | |
| &:not(.md-overflow) { | |
| md-content { | |
| padding-top: $baseline-grid; | |
| padding-bottom: $baseline-grid; | |
| } | |
| } | |
| box-shadow: $whiteframe-shadow-1dp; | |
| max-height: ($select-option-height * $select-max-visible-options) + 2 * $baseline-grid; | |
| min-height: $select-option-height; | |
| overflow-y: hidden; | |
| @include rtl(transform-origin, left top, right top); | |
| transform: scale(1.0); | |
| md-content { | |
| min-width: 136px; | |
| min-height: $select-option-height; | |
| max-height: ($select-option-height * $select-max-visible-options) + 2 * $baseline-grid; | |
| overflow-y: auto; | |
| } | |
| > * { | |
| opacity: 0; | |
| } | |
| } | |
| md-option { | |
| cursor: pointer; | |
| position: relative; | |
| display: flex; | |
| align-items: center; | |
| width: auto; | |
| &:focus { | |
| outline: none; | |
| } | |
| .md-text { | |
| @include not-selectable(); | |
| width: auto; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| font-size: rem(1.6); | |
| } | |
| padding: 0 $select-option-padding 0 $select-option-padding; | |
| height: $select-option-height; | |
| } | |
| md-optgroup { | |
| display: block; | |
| label { | |
| display: block; | |
| font-size: rem(1.4); | |
| text-transform: uppercase; | |
| padding: $baseline-grid * 2; | |
| font-weight: 500; | |
| } | |
| md-option { | |
| padding-left: $select-option-padding * 2; | |
| padding-right: $select-option-padding * 2; | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| .md-select-backdrop { | |
| background-color: transparent; | |
| } | |
| md-select-menu { | |
| border: 1px solid #fff; | |
| } | |
| } | |
| $sidenav-default-width: 304px !default; | |
| $sidenav-min-space: 56px !default; | |
| md-sidenav { | |
| box-sizing: border-box; | |
| position: absolute; | |
| flex-direction: column; | |
| z-index: $z-index-sidenav; | |
| width: $sidenav-default-width; | |
| min-width: $sidenav-default-width; | |
| max-width: $sidenav-default-width; | |
| bottom: 0; | |
| background-color: white; | |
| overflow: auto; | |
| ul { | |
| list-style: none; | |
| } | |
| &.md-closed { | |
| display: none; | |
| } | |
| &.md-closed-add, | |
| &.md-closed-remove { | |
| display: flex; | |
| transition: 0.2s ease-in all; | |
| } | |
| &.md-closed-add.md-closed-add-active, | |
| &.md-closed-remove.md-closed-remove-active { | |
| transition: $swift-ease-out; | |
| } | |
| &.md-locked-open-add, | |
| &.md-locked-open-remove { | |
| position: static; | |
| display: flex; | |
| transform: translate3d(0, 0, 0); | |
| } | |
| &.md-locked-open { | |
| width: $sidenav-default-width; | |
| min-width: $sidenav-default-width; | |
| max-width: $sidenav-default-width; | |
| } | |
| &.md-locked-open, | |
| &.md-locked-open.md-closed, | |
| &.md-locked-open.md-closed.md-sidenav-left, | |
| &.md-locked-open.md-closed.md-sidenav-right, | |
| &.md-locked-open-remove.md-closed { | |
| position: static; | |
| display: flex; | |
| transform: translate3d(0, 0, 0); | |
| } | |
| &.md-locked-open-remove-active { | |
| transition: width $swift-ease-in-duration $swift-ease-in-timing-function, | |
| min-width $swift-ease-in-duration $swift-ease-in-timing-function; | |
| width: 0; | |
| min-width: 0; | |
| } | |
| &.md-closed.md-locked-open-add { | |
| width: 0; | |
| min-width: 0; | |
| transform: translate3d(0%, 0, 0); | |
| } | |
| &.md-closed.md-locked-open-add-active { | |
| transition: width $swift-ease-in-duration $swift-ease-in-timing-function, | |
| min-width $swift-ease-in-duration $swift-ease-in-timing-function; | |
| width: $sidenav-default-width; | |
| min-width: $sidenav-default-width; | |
| transform: translate3d(0%, 0, 0); | |
| } | |
| @extend .md-sidenav-left; | |
| } | |
| .md-sidenav-backdrop.md-locked-open { | |
| display: none; | |
| } | |
| .md-sidenav-left { | |
| left: 0; | |
| top: 0; | |
| transform: translate3d(0%, 0, 0); | |
| &.md-closed { | |
| transform: translate3d(-100%, 0, 0); | |
| } | |
| } | |
| .md-sidenav-right { | |
| left: 100%; | |
| top: 0; | |
| transform: translate3d(-100%, 0, 0); | |
| &.md-closed { | |
| transform: translate3d(0%, 0, 0); | |
| } | |
| } | |
| @media (max-width: $sidenav-default-width + $sidenav-min-space) { | |
| md-sidenav { | |
| width: 85%; | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| .md-sidenav-left { | |
| border-right: 1px solid #fff; | |
| } | |
| .md-sidenav-right { | |
| border-left: 1px solid #fff; | |
| } | |
| } | |
| $slider-background-color: rgb(200, 200, 200) !default; | |
| $slider-height: 48px !default; | |
| $slider-track-height: 2px !default; | |
| $slider-thumb-width: 32px !default; | |
| $slider-thumb-height: $slider-thumb-width !default; | |
| $slider-thumb-default-scale: 0.5 !default; | |
| $slider-thumb-hover-scale: 0.6 !default; | |
| $slider-thumb-focus-scale: 0.85 !default; | |
| $slider-thumb-disabled-scale: 0.35 !default; | |
| $slider-thumb-disabled-border: 6px !default; | |
| $slider-focus-thumb-width: 48px !default; | |
| $slider-focus-thumb-height: $slider-focus-thumb-width !default; | |
| $slider-focus-ring-border-width: 3px !default; | |
| $slider-arrow-height: 16px !default; | |
| $slider-arrow-width: 28px !default; | |
| $slider-sign-height: 28px !default; | |
| $slider-sign-width: 28px !default; | |
| $slider-sign-top: ($slider-height / 2) - ($slider-thumb-default-scale * $slider-thumb-height / 2) - ($slider-sign-height) - ($slider-arrow-height) + 8px !default; | |
| @keyframes sliderFocusThumb { | |
| 0% { | |
| opacity: 0; | |
| transform: scale(0.0); | |
| } | |
| 50% { | |
| transform: scale(1.0); | |
| opacity: 1; | |
| } | |
| 100% { | |
| opacity: 0; | |
| } | |
| } | |
| @mixin slider-thumb-position($width: $slider-thumb-width, $height: $slider-thumb-height) { | |
| position: absolute; | |
| left: -$width / 2; | |
| top: ($slider-height / 2) - ($height / 2); | |
| width: $width; | |
| height: $height; | |
| border-radius: max($width, $height); | |
| } | |
| md-slider { | |
| height: $slider-height; | |
| position: relative; | |
| display: block; | |
| margin-left: 4px; | |
| margin-right: 4px; | |
| padding: 0; | |
| *, *:after { | |
| box-sizing: border-box; | |
| } | |
| .md-slider-wrapper { | |
| position: relative; | |
| } | |
| /** | |
| * Track | |
| */ | |
| .md-track-container { | |
| width: 100%; | |
| position: absolute; | |
| top: ($slider-height / 2) - ($slider-track-height) / 2; | |
| height: $slider-track-height; | |
| } | |
| .md-track { | |
| position: absolute; | |
| left: 0; | |
| right: 0; | |
| height: 100%; | |
| } | |
| .md-track-fill { | |
| transition: width 0.05s linear; | |
| } | |
| .md-track-ticks { | |
| position: absolute; | |
| left: 0; | |
| right: 0; | |
| height: 100%; | |
| } | |
| .md-track-ticks canvas { | |
| // Restrict the width of the canvas so that ticks are rendered correctly | |
| // when parent elements are resized. Else, the position of the ticks might | |
| // be incorrect as we only update the canvas width attribute on window resize. | |
| width: 100%; | |
| } | |
| /** | |
| * Slider thumb | |
| */ | |
| .md-thumb-container { | |
| position: absolute; | |
| left: 0; | |
| top: 50%; | |
| transform: translate3d(-50%,-50%,0); | |
| transition: left 0.1s linear; | |
| } | |
| .md-thumb { | |
| z-index: 1; | |
| // Positioning the outer area of the thumb 6px bigger than it needs to be keeps | |
| // the :after area being clipped by the background of the focus-thumb animation. | |
| @include slider-thumb-position($slider-thumb-width + 6, $slider-thumb-height + 6); | |
| // We render thumb in an :after selector to fix an obscure problem with the | |
| // thumb being clipped by the focus-ring and focus-thumb while running the focus | |
| // animation. | |
| &:after { | |
| content: ''; | |
| position: absolute; | |
| left: 3px; | |
| top: 3px; | |
| width: $slider-thumb-width; | |
| height: $slider-thumb-height; | |
| border-radius: max($slider-thumb-width, $slider-thumb-height); | |
| border-width: 3px; | |
| border-style: solid; | |
| } | |
| transform: scale($slider-thumb-default-scale); | |
| transition: all 0.1s linear; | |
| } | |
| /* The sign that's focused in discrete mode */ | |
| .md-sign { | |
| /* Center the children (slider-thumb-text) */ | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| position: absolute; | |
| left: -($slider-sign-height / 2); | |
| top: $slider-sign-top; | |
| width: $slider-sign-width; | |
| height: $slider-sign-height; | |
| border-radius: max($slider-sign-height, $slider-sign-width); | |
| transform: scale(0.4) translate3d(0,(-$slider-sign-top + 8) / 0.4,0); | |
| transition: all 0.2s ease-in-out; | |
| /* The arrow pointing down under the sign */ | |
| &:after { | |
| position: absolute; | |
| content: ''; | |
| left: -($slider-sign-width / 2 - $slider-arrow-width / 2); | |
| border-radius: $slider-arrow-height; | |
| top: 19px; | |
| border-left: $slider-arrow-width / 2 solid transparent; | |
| border-right: $slider-arrow-width / 2 solid transparent; | |
| border-top-width: $slider-arrow-height; | |
| border-top-style: solid; | |
| opacity: 0; | |
| transform: translate3d(0,-8px,0); | |
| transition: all 0.2s ease-in-out; | |
| } | |
| .md-thumb-text { | |
| z-index: 1; | |
| font-size: 12px; | |
| font-weight: bold; | |
| } | |
| } | |
| /** | |
| * The border/background that comes in when focused in non-discrete mode | |
| */ | |
| .md-focus-thumb { | |
| @include slider-thumb-position($slider-focus-thumb-width, $slider-focus-thumb-height); | |
| display: none; | |
| opacity: 0; | |
| background-color: #C0C0C0; | |
| animation: sliderFocusThumb 0.4s linear; | |
| } | |
| .md-focus-ring { | |
| @include slider-thumb-position($slider-focus-thumb-width, $slider-focus-thumb-height); | |
| transform: scale(0); | |
| transition: all 0.2s linear; | |
| opacity: 0.26; | |
| } | |
| .md-disabled-thumb { | |
| @include slider-thumb-position( | |
| $slider-thumb-width + $slider-thumb-disabled-border * 2, | |
| $slider-thumb-height + $slider-thumb-disabled-border * 2 | |
| ); | |
| transform: scale($slider-thumb-disabled-scale); | |
| border-width: $slider-thumb-disabled-border; | |
| border-style: solid; | |
| display: none; | |
| } | |
| &.md-min { | |
| .md-thumb { | |
| &:after { | |
| background-color: white; | |
| } | |
| } | |
| .md-sign { | |
| opacity: 0; | |
| } | |
| } | |
| &:focus { | |
| outline: none; | |
| } | |
| /* Don't animate left/right while panning */ | |
| &.md-dragging { | |
| .md-thumb-container, | |
| .md-track-fill { | |
| transition: none; | |
| } | |
| } | |
| &:not([md-discrete]) { | |
| /* Hide the sign and ticks in non-discrete mode */ | |
| .md-track-ticks, | |
| .md-sign { | |
| display: none; | |
| } | |
| &:not([disabled]) { | |
| &:hover { | |
| .md-thumb { | |
| transform: scale($slider-thumb-hover-scale); | |
| } | |
| } | |
| &:focus, | |
| &.md-active { | |
| .md-focus-thumb { | |
| display: block; | |
| } | |
| .md-focus-ring { | |
| transform: scale(1); | |
| } | |
| .md-thumb { | |
| transform: scale($slider-thumb-focus-scale); | |
| } | |
| } | |
| } | |
| } | |
| &[md-discrete] { | |
| /* Hide the focus thumb in discrete mode */ | |
| .md-focus-thumb, | |
| .md-focus-ring { | |
| display: none; | |
| } | |
| &:not([disabled]) { | |
| &:focus, | |
| &.md-active { | |
| .md-sign, | |
| .md-sign:after { | |
| opacity: 1; | |
| transform: translate3d(0,0,0) scale(1.0); | |
| } | |
| } | |
| } | |
| } | |
| &[disabled] { | |
| .md-track-fill { | |
| display: none; | |
| } | |
| .md-sign { | |
| display: none; | |
| } | |
| .md-thumb { | |
| transform: scale($slider-thumb-disabled-scale); | |
| } | |
| .md-disabled-thumb { | |
| display: block; | |
| } | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-slider.md-default-theme .md-track { | |
| border-bottom: 1px solid #fff; | |
| } | |
| } | |
| $subheader-line-height: 1em !default; | |
| $subheader-font-size: rem(1.4) !default; | |
| $subheader-padding: ($baseline-grid * 2) 0px ($baseline-grid * 2) ($baseline-grid * 2) !default; | |
| $subheader-font-weight: 500 !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-wrapper { | |
| &:not(.md-sticky-no-effect) { | |
| .md-subheader { | |
| margin: 0; | |
| } | |
| transition: 0.2s ease-out margin; | |
| &.md-sticky-clone { | |
| z-index: 2; | |
| } | |
| &[sticky-state="active"] { | |
| margin-top: -2px; | |
| } | |
| &:not(.md-sticky-clone)[sticky-prev-state="active"] .md-subheader-inner:after { | |
| animation: subheaderStickyHoverOut 0.3s ease-out both; | |
| } | |
| } | |
| } | |
| .md-subheader { | |
| display: block; | |
| font-size: $subheader-font-size; | |
| font-weight: $subheader-font-weight; | |
| line-height: $subheader-line-height; | |
| margin: $subheader-margin; | |
| margin-right: $subheader-margin-right; | |
| position: relative; | |
| .md-subheader-inner { | |
| display: block; | |
| padding: $subheader-padding; | |
| } | |
| .md-subheader-content { | |
| display: block; | |
| z-index: 1; | |
| position: relative; | |
| } | |
| } | |
| $switch-width: 36px !default; | |
| $switch-height: $baseline-grid * 3 !default; | |
| $switch-bar-height: 14px !default; | |
| $switch-thumb-size: 20px !default; | |
| md-switch { | |
| display: flex; | |
| align-items: center; | |
| margin: 15px; | |
| white-space: nowrap; | |
| cursor: pointer; | |
| outline: none; | |
| user-select: none; | |
| .md-container { | |
| cursor: grab; | |
| width: $switch-width; | |
| height: $switch-height; | |
| position: relative; | |
| user-select: none; | |
| margin-right: 8px; | |
| } | |
| // If the user moves his mouse off the switch, stil display grabbing cursor | |
| &:not([disabled]) { | |
| .md-dragging, | |
| &.md-dragging .md-container { | |
| cursor: grabbing; | |
| } | |
| } | |
| &.md-focused:not([disabled]) { | |
| .md-thumb:before { | |
| left: -8px; | |
| top: -8px; | |
| right: -8px; | |
| bottom: -8px; | |
| } | |
| &:not(.md-checked) { | |
| .md-thumb:before { | |
| background-color: rgba(0, 0, 0, 0.12); | |
| } | |
| } | |
| } | |
| .md-label { | |
| border-color: transparent; | |
| border-width: 0; | |
| } | |
| .md-bar { | |
| left: 1px; | |
| width: $switch-width - 2px; | |
| top: $switch-height / 2 - $switch-bar-height / 2; | |
| height: $switch-bar-height; | |
| border-radius: 8px; | |
| position: absolute; | |
| } | |
| .md-thumb-container { | |
| top: $switch-height / 2 - $switch-thumb-size / 2; | |
| left: 0; | |
| width: $switch-width - $switch-thumb-size; | |
| position: absolute; | |
| transform: translate3d(0,0,0); | |
| z-index: 1; | |
| } | |
| &.md-checked .md-thumb-container { | |
| transform: translate3d(100%,0,0); | |
| } | |
| .md-thumb { | |
| position: absolute; | |
| margin: 0; | |
| left: 0; | |
| top: 0; | |
| outline: none; | |
| height: $switch-thumb-size; | |
| width: $switch-thumb-size; | |
| border-radius: 50%; | |
| box-shadow: $whiteframe-shadow-1dp; | |
| &:before { | |
| background-color: transparent; | |
| border-radius: 50%; | |
| content: ''; | |
| position: absolute; | |
| display: block; | |
| height: auto; | |
| left: 0; | |
| top: 0; | |
| right: 0; | |
| bottom: 0; | |
| transition: all 0.5s; | |
| width: auto; | |
| } | |
| .md-ripple-container { | |
| position: absolute; | |
| display: block; | |
| width: auto; | |
| height: auto; | |
| left: -$switch-thumb-size; | |
| top: -$switch-thumb-size; | |
| right: -$switch-thumb-size; | |
| bottom: -$switch-thumb-size; | |
| } | |
| } | |
| &:not(.md-dragging) { | |
| .md-bar, | |
| .md-thumb-container, | |
| .md-thumb { | |
| transition: $swift-ease-in-out; | |
| transition-property: transform, background-color; | |
| } | |
| .md-bar, | |
| .md-thumb { | |
| transition-delay: 0.05s; | |
| } | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-switch.md-default-theme .md-bar { | |
| background-color: #666; | |
| } | |
| md-switch.md-default-theme.md-checked .md-bar { | |
| background-color: #9E9E9E; | |
| } | |
| md-switch.md-default-theme .md-thumb { | |
| background-color: #fff; | |
| } | |
| } | |
| $tabs-paginator-width: $baseline-grid * 4 !default; | |
| $tabs-tab-width: $baseline-grid * 12 !default; | |
| $tabs-header-height: 48px !default; | |
| @keyframes md-tab-content-hide { | |
| 0% { | |
| opacity: 1; | |
| } | |
| 50% { | |
| opacity: 1; | |
| } | |
| 100% { | |
| opacity: 0; | |
| } | |
| } | |
| md-tab-data { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| z-index: -1; | |
| opacity: 0; | |
| } | |
| md-tabs { | |
| display: block; | |
| margin: 0; | |
| border-radius: 2px; | |
| overflow: hidden; | |
| position: relative; | |
| flex-shrink: 0; | |
| &:not(.md-no-tab-content):not(.md-dynamic-height) { | |
| min-height: 200 + $tabs-header-height; | |
| } | |
| &[md-align-tabs="bottom"] { | |
| md-tabs-wrapper { | |
| position: absolute; | |
| bottom: 0; | |
| left: 0; | |
| right: 0; | |
| height: $tabs-header-height; | |
| } | |
| md-tabs-content-wrapper { | |
| top: 0; | |
| bottom: $tabs-header-height; | |
| } | |
| } | |
| &.md-dynamic-height { | |
| md-tabs-content-wrapper { | |
| min-height: 0; | |
| position: relative; | |
| top: auto; | |
| left: auto; | |
| right: auto; | |
| bottom: auto; | |
| overflow: visible; | |
| } | |
| md-tab-content { | |
| &.md-active { | |
| position: relative; | |
| } | |
| } | |
| } | |
| &[md-border-bottom] { | |
| md-tabs-wrapper { | |
| border-width: 0 0 1px; | |
| border-style: solid; | |
| } | |
| &:not(.md-dynamic-height) { | |
| md-tabs-content-wrapper { | |
| top: $tabs-header-height + 1; | |
| } | |
| } | |
| } | |
| } | |
| md-tabs-wrapper { | |
| display: block; | |
| position: relative; | |
| md-prev-button, md-next-button { | |
| height: 100%; | |
| width: $tabs-paginator-width; | |
| position: absolute; | |
| top: 50%; | |
| transform: translateY(-50%); | |
| line-height: 1em; | |
| z-index: 2; | |
| cursor: pointer; | |
| font-size: 16px; | |
| background: transparent no-repeat center center; | |
| transition: $swift-ease-in-out; | |
| &:focus { | |
| outline: none; | |
| } | |
| &.md-disabled { | |
| opacity: 0.25; | |
| cursor: default; | |
| } | |
| &.ng-leave { | |
| transition: none; | |
| } | |
| md-icon { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| transform: translate3d(-50%, -50%, 0); | |
| } | |
| } | |
| md-prev-button { | |
| left: 0; | |
| background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMjA4IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTUuNCw3LjQgMTQsNiA4LDEyIDE0LDE4IDE1LjQsMTYuNiAxMC44LDEyIAkJIiBzdHlsZT0iZmlsbDp3aGl0ZTsiLz4gPHJlY3QgZmlsbD0ibm9uZSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ii8+IDwvZz4gPC9nPiA8ZyBpZD0iR3JpZCIgZGlzcGxheT0ibm9uZSI+IDxnIGRpc3BsYXk9ImlubGluZSI+IDwvZz4gPC9nPiA8L3N2Zz4NCg=='); | |
| } | |
| md-next-button { | |
| right: 0; | |
| background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE3LjEuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPiA8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPiA8c3ZnIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPiA8ZyBpZD0iSGVhZGVyIj4gPGc+IDxyZWN0IHg9Ii02MTgiIHk9Ii0xMzM2IiBmaWxsPSJub25lIiB3aWR0aD0iMTQwMCIgaGVpZ2h0PSIzNjAwIi8+IDwvZz4gPC9nPiA8ZyBpZD0iTGFiZWwiPiA8L2c+IDxnIGlkPSJJY29uIj4gPGc+IDxwb2x5Z29uIHBvaW50cz0iMTAsNiA4LjYsNy40IDEzLjIsMTIgOC42LDE2LjYgMTAsMTggMTYsMTIgCQkiIHN0eWxlPSJmaWxsOndoaXRlOyIvPiA8cmVjdCBmaWxsPSJub25lIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiLz4gPC9nPiA8L2c+IDxnIGlkPSJHcmlkIiBkaXNwbGF5PSJub25lIj4gPGcgZGlzcGxheT0iaW5saW5lIj4gPC9nPiA8L2c+IDwvc3ZnPg0K'); | |
| md-icon { | |
| transform: translate3d(-50%, -50%, 0) rotate(180deg); | |
| } | |
| } | |
| &.md-stretch-tabs { | |
| md-pagination-wrapper { | |
| width: 100%; | |
| display: flex; | |
| flex-direction: row; | |
| md-tab-item { | |
| flex-grow: 1; | |
| } | |
| } | |
| } | |
| } | |
| md-tabs-canvas { | |
| @include pie-clearfix; | |
| position: relative; | |
| overflow: hidden; | |
| display: block; | |
| height: $tabs-header-height; | |
| .md-dummy-wrapper { | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| } | |
| &.md-paginated { | |
| margin: 0 $tabs-paginator-width; | |
| } | |
| &.md-center-tabs { | |
| display: flex; | |
| flex-direction: column; | |
| text-align: center; | |
| .md-tab { | |
| float: none; | |
| display: inline-block; | |
| } | |
| } | |
| } | |
| md-pagination-wrapper { | |
| @include pie-clearfix; | |
| height: $tabs-header-height; | |
| display: block; | |
| transition: transform $swift-ease-in-out-duration $swift-ease-in-out-timing-function; | |
| position: absolute; | |
| width: 999999px; | |
| left: 0; | |
| transform: translate3d(0, 0, 0); | |
| &.md-center-tabs { | |
| position: relative; | |
| width: initial; | |
| flex: 1; | |
| margin: 0 auto; | |
| } | |
| } | |
| md-tabs-content-wrapper { | |
| display: block; | |
| position: absolute; | |
| top: $tabs-header-height; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| overflow: hidden; | |
| } | |
| md-tab-content { | |
| display: block; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| transform: translateX(0); | |
| transition: transform $swift-ease-in-out-duration $swift-ease-in-out-timing-function; | |
| overflow: auto; | |
| &.md-no-scroll { | |
| bottom: auto; | |
| overflow: hidden; | |
| } | |
| &.ng-leave, &.md-no-transition { | |
| transition: none; | |
| } | |
| &.md-left { | |
| transform: translateX(-100%); | |
| animation: 2 * $swift-ease-in-out-duration md-tab-content-hide; | |
| opacity: 0; | |
| * { | |
| transition: visibility 0s linear; | |
| transition-delay: $swift-ease-in-out-duration; | |
| visibility: hidden; | |
| } | |
| } | |
| &.md-right { | |
| transform: translateX(100%); | |
| animation: 2 * $swift-ease-in-out-duration md-tab-content-hide; | |
| opacity: 0; | |
| * { | |
| transition: visibility 0s linear; | |
| transition-delay: $swift-ease-in-out-duration; | |
| visibility: hidden; | |
| } | |
| } | |
| > div.ng-leave { | |
| animation: 2 * $swift-ease-in-out-duration md-tab-content-hide; | |
| } | |
| } | |
| md-ink-bar { | |
| $duration: $swift-ease-in-out-duration * 0.5; | |
| $multiplier: 0.5; | |
| position: absolute; | |
| left: auto; | |
| right: auto; | |
| bottom: 0; | |
| height: 2px; | |
| &.md-left { | |
| transition: left ($duration * $multiplier) $swift-ease-in-out-timing-function, | |
| right $duration $swift-ease-in-out-timing-function; | |
| } | |
| &.md-right { | |
| transition: left $duration $swift-ease-in-out-timing-function, | |
| right ($duration * $multiplier) $swift-ease-in-out-timing-function; | |
| } | |
| } | |
| md-tab { | |
| position: absolute; | |
| z-index: -1; | |
| left: -9999px; | |
| } | |
| .md-tab { | |
| font-size: 14px; | |
| text-align: center; | |
| line-height: $tabs-header-height - 24; | |
| padding: 12px 24px; | |
| transition: background-color 0.35s $swift-ease-in-out-timing-function; | |
| cursor: pointer; | |
| white-space: nowrap; | |
| position: relative; | |
| text-transform: uppercase; | |
| float: left; | |
| font-weight: 500; | |
| box-sizing: border-box; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| &.md-focused { | |
| box-shadow: none; | |
| outline: none; | |
| } | |
| &.md-active { | |
| cursor: default; | |
| } | |
| &.md-disabled { | |
| pointer-events: none; | |
| touch-action: pan-y; | |
| user-select: none; | |
| -webkit-user-drag: none; | |
| opacity: 0.5; | |
| cursor: default; | |
| } | |
| &.ng-leave { | |
| transition: none; | |
| } | |
| } | |
| md-toolbar + md-tabs { | |
| border-top-left-radius: 0; | |
| border-top-right-radius: 0; | |
| } | |
| .md-sticky-clone { | |
| z-index: 2; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| position: absolute !important; | |
| transform: translate3d(-9999px,-9999px,0); | |
| &[sticky-state="active"] { | |
| transform: translate3d(0, 0, 0); | |
| &:not(.md-sticky-no-effect) .md-subheader-inner { | |
| animation: subheaderStickyHoverIn 0.3s ease-out both; | |
| } | |
| } | |
| } | |
| // See height set globally, depended on by buttons | |
| md-toast { | |
| display: flex; | |
| position:absolute; | |
| z-index: $z-index-toast; | |
| box-sizing: border-box; | |
| align-items: center; | |
| min-height: 48px; | |
| padding-left: 24px; | |
| padding-right: 24px; | |
| box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); | |
| border-radius: 2px; | |
| font-size: 14px; | |
| cursor: default; | |
| height:auto; | |
| max-height: 7*$toast-height; | |
| max-width: 100%; | |
| overflow:hidden; | |
| &.md-capsule { | |
| border-radius: 24px; | |
| } | |
| opacity: 1; | |
| transform: translate3d(0,0,0) rotateZ(0deg); | |
| transition: $swift-ease-out; | |
| &.ng-leave-active { | |
| transition: $swift-ease-in; | |
| } | |
| /* Transition differently when swiping */ | |
| &.md-swipeleft, | |
| &.md-swiperight, | |
| &.md-swipeup, | |
| &.md-swipedown { | |
| transition: $swift-ease-out; | |
| } | |
| &.ng-enter { | |
| transform: translate3d(0, 100%, 0); | |
| &.md-top { | |
| transform: translate3d(0, -100%, 0); | |
| } | |
| opacity: 0; | |
| &.ng-enter-active { | |
| transform: translate3d(0, 0, 0); | |
| opacity: 1; | |
| } | |
| } | |
| &.ng-leave.ng-leave-active { | |
| opacity: 0; | |
| transform: translate3d(0, 100%, 0); | |
| &.md-top { | |
| transform: translate3d(0, -100%, 0); | |
| } | |
| &.md-swipeleft { | |
| transform: translate3d(-100%, 0%, 0); | |
| } | |
| &.md-swiperight { | |
| transform: translate3d(100%, 0%, 0); | |
| } | |
| } | |
| .md-action { | |
| line-height: 19px; | |
| margin-left: 24px; | |
| cursor: pointer; | |
| text-transform: uppercase; | |
| float: right; | |
| &.md-button { | |
| min-width: 0; | |
| } | |
| } | |
| } | |
| @media (max-width: $layout-breakpoint-sm) { | |
| md-toast { | |
| left: 0; | |
| right: 0; | |
| width: 100%; | |
| max-width: 100%; | |
| min-width: 0; | |
| border-radius: 0; | |
| bottom: 0; | |
| &.md-top { | |
| bottom: auto; | |
| top: 0; | |
| } | |
| } | |
| } | |
| @media (min-width: $layout-breakpoint-sm) { | |
| md-toast { | |
| min-width: 288px; | |
| &.md-bottom { | |
| bottom: $toast-margin; | |
| } | |
| &.md-left { | |
| left: $toast-margin; | |
| } | |
| &.md-right { | |
| right: $toast-margin; | |
| } | |
| &.md-top { | |
| top: $toast-margin; | |
| } | |
| /* | |
| * When the toast doesn't take up the whole screen, | |
| * make it rotate when the user swipes it away | |
| */ | |
| &.ng-leave.ng-leave-active { | |
| &.md-swipeleft { | |
| transform: translate3d(-100%, 25%, 0) rotateZ(-15deg); | |
| } | |
| &.md-swiperight { | |
| transform: translate3d(100%, 25%, 0) rotateZ(15deg); | |
| } | |
| &.md-top { | |
| &.md-swipeleft { | |
| transform: translate3d(-100%, 0, 0) rotateZ(-15deg); | |
| } | |
| &.md-swiperight { | |
| transform: translate3d(100%, 0, 0) rotateZ(15deg); | |
| } | |
| } | |
| } | |
| } | |
| } | |
| @media (min-width: $layout-breakpoint-lg) { | |
| md-toast { | |
| max-width: $baseline-grid * 71; | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-toast { | |
| border: 1px solid #fff; | |
| } | |
| } | |
| // Standard/Desktop Heights | |
| $toolbar-tools-height: 64px !default; | |
| $toolbar-height: 64px !default; | |
| $toolbar-medium-tall-height: 88px !default; | |
| $toolbar-tall-height: 128px !default; | |
| // Mobile portrait heights | |
| $toolbar-tools-height-mobile-portrait: 56px !default; | |
| $toolbar-height-mobile-portrait: 56px !default; | |
| // Mobile landscape heights | |
| $toolbar-tools-height-mobile-landscape: 48px !default; | |
| $toolbar-height-mobile-landscape: 48px !default; | |
| $toolbar-indent-margin: 64px !default; | |
| $toolbar-padding: 16px !default; | |
| $icon-button-margin-offset: rem(-0.800) !default; | |
| md-toolbar { | |
| box-sizing: border-box; | |
| display: flex; | |
| flex-direction: column; | |
| position: relative; | |
| z-index: 2; | |
| font-size: rem(2.0); | |
| min-height: $baseline-grid * 8; | |
| width: 100%; | |
| &.md-whiteframe-z1-add, &.md-whiteframe-z1-remove { | |
| transition: box-shadow $swift-ease-in-out-duration linear; | |
| } | |
| md-toolbar-filler { | |
| width: 9 * $baseline-grid; | |
| } | |
| *, | |
| *:before, | |
| *:after { | |
| box-sizing: border-box; | |
| } | |
| &.md-tall { | |
| height: $toolbar-tall-height; | |
| min-height: $toolbar-tall-height; | |
| max-height: $toolbar-tall-height; | |
| } | |
| &.md-medium-tall { | |
| height: $toolbar-medium-tall-height; | |
| min-height: $toolbar-medium-tall-height; | |
| max-height: $toolbar-medium-tall-height; | |
| .md-toolbar-tools { | |
| height: 48px; | |
| min-height: 48px; | |
| max-height: 48px; | |
| } | |
| } | |
| > .md-indent { | |
| margin-left: $toolbar-indent-margin; | |
| } | |
| ~ md-content { | |
| > md-list { | |
| padding: 0; | |
| md-list-item:last-child { | |
| md-divider { | |
| display: none; | |
| } | |
| } | |
| } | |
| } | |
| } | |
| .md-toolbar-tools { | |
| font-size: $title-font-size-base; | |
| letter-spacing: 0.005em; | |
| box-sizing: border-box; | |
| font-weight: 400; | |
| display: flex; | |
| align-items: center; | |
| flex-direction: row; | |
| width: 100%; | |
| height: $toolbar-tools-height; | |
| max-height: $toolbar-tools-height; | |
| padding: 0 $toolbar-padding; | |
| margin: 0; | |
| h1, h2, h3 { | |
| font-size: inherit; | |
| font-weight: inherit; | |
| margin: inherit; | |
| } | |
| a { | |
| color: inherit; | |
| text-decoration: none; | |
| } | |
| .fill-height { | |
| display: flex; | |
| align-items: center; | |
| } | |
| .md-button { | |
| margin-top: 0; | |
| margin-bottom: 0; | |
| } | |
| &> .md-button:first-child { | |
| margin-left: $icon-button-margin-offset; | |
| } | |
| &> .md-button:last-child { | |
| margin-right: $icon-button-margin-offset; | |
| } | |
| &> md-menu:last-child { | |
| margin-right: $icon-button-margin-offset; | |
| & > .md-button { | |
| margin-right: 0; | |
| } | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| border-bottom: 1px solid #fff; | |
| } | |
| } | |
| // Handle mobile portrait | |
| @media only screen and (min-width: 0) and (max-width: $layout-breakpoint-sm) and | |
| (orientation: portrait) { | |
| md-toolbar { | |
| min-height: $toolbar-height-mobile-portrait; | |
| } | |
| .md-toolbar-tools { | |
| height: $toolbar-height-mobile-portrait; | |
| max-height: $toolbar-height-mobile-portrait; | |
| } | |
| } | |
| // Handle mobile landscape | |
| @media only screen and (min-width: 0) and (max-width: $layout-breakpoint-sm) and | |
| (orientation: landscape) { | |
| md-toolbar { | |
| min-height: $toolbar-height-mobile-landscape; | |
| } | |
| .md-toolbar-tools { | |
| height: $toolbar-height-mobile-landscape; | |
| max-height: $toolbar-height-mobile-landscape; | |
| } | |
| } | |
| $tooltip-fontsize-lg: rem(1); | |
| $tooltip-fontsize-sm: rem(1.4); | |
| $tooltip-height-lg: rem(2.2); | |
| $tooltip-height-sm: rem(3.2); | |
| $tooltip-top-margin-lg: rem(1.4); | |
| $tooltip-top-margin-sm: rem(2.4); | |
| $tooltip-lr-padding-lg: rem(0.8); | |
| $tooltip-lr-padding-sm: rem(1.6); | |
| $tooltip-max-width: rem(3.20); | |
| md-tooltip { | |
| position: absolute; | |
| z-index: $z-index-tooltip; | |
| overflow: hidden; | |
| pointer-events: none; | |
| border-radius: 4px; | |
| font-weight: 500; | |
| font-size: $tooltip-fontsize-sm; | |
| @media screen and (min-width: $layout-breakpoint-sm) { | |
| font-size: $tooltip-fontsize-lg; | |
| } | |
| .md-background { | |
| position: absolute; | |
| border-radius: 50%; | |
| transform: translate(-50%, -50%) scale(0); | |
| opacity: 1; | |
| &.md-show-add { | |
| transition: $swift-ease-out; | |
| transform: translate(-50%, -50%) scale(0); | |
| opacity: 0; | |
| } | |
| &.md-show, &.md-show-add-active { | |
| transform: translate(-50%, -50%) scale(1); | |
| opacity: 1; | |
| } | |
| &.md-show-remove { | |
| transition: $swift-ease-in; | |
| &.md-show-remove-active { | |
| transform: translate(-50%, -50%) scale(0); | |
| opacity: 0; | |
| } | |
| } | |
| } | |
| .md-content { | |
| position: relative; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| background: transparent; | |
| opacity: 0; | |
| height: $tooltip-height-sm; | |
| line-height: $tooltip-height-sm; | |
| padding-left: $tooltip-lr-padding-sm; | |
| padding-right: $tooltip-lr-padding-sm; | |
| @media screen and (min-width: $layout-breakpoint-sm) { | |
| height: $tooltip-height-lg; | |
| line-height: $tooltip-height-lg; | |
| padding-left: $tooltip-lr-padding-lg; | |
| padding-right: $tooltip-lr-padding-lg; | |
| } | |
| &.md-show-add { | |
| transition: $swift-ease-out; | |
| opacity: 0; | |
| } | |
| &.md-show, &.md-show-add-active { | |
| opacity: 1; | |
| } | |
| &.md-show-remove { | |
| transition: $swift-ease-in; | |
| &.md-show-remove-active { | |
| opacity: 0; | |
| } | |
| } | |
| } | |
| &.md-hide { | |
| transition: $swift-ease-in; | |
| } | |
| &.md-show { | |
| transition: $swift-ease-out; | |
| pointer-events: auto; | |
| transform: translate3d(0,0,0); | |
| } | |
| } | |
| $virtual-repeat-scrollbar-width: 16px; | |
| .md-virtual-repeat-container { | |
| box-sizing: border-box; | |
| display: block; | |
| margin: 0; | |
| overflow: hidden; | |
| padding: 0; | |
| position: relative; | |
| .md-virtual-repeat-scroller { | |
| bottom: 0; | |
| box-sizing: border-box; | |
| left: 0; | |
| margin: 0; | |
| overflow-x: hidden; | |
| padding: 0; | |
| position: absolute; | |
| right: 0; | |
| top: 0; | |
| } | |
| .md-virtual-repeat-sizer { | |
| box-sizing: border-box; | |
| height: 1px; | |
| display: inline-block; | |
| margin: 0; | |
| padding: 0; | |
| width: 1px; | |
| } | |
| .md-virtual-repeat-offsetter { | |
| box-sizing: border-box; | |
| left: 0; | |
| margin: 0; | |
| padding: 0; | |
| position: absolute; | |
| // Leave room for the scroll bar. | |
| // TODO: Will probably need to perform measurements at runtime. | |
| right: $virtual-repeat-scrollbar-width; | |
| top: 0; | |
| } | |
| } | |
| .md-virtual-repeat-container.md-orient-horizontal { | |
| .md-virtual-repeat-scroller { | |
| overflow-x: auto; | |
| overflow-y: hidden; | |
| } | |
| .md-virtual-repeat-offsetter { | |
| // Leave room for the scroll bar. | |
| // TODO: Will probably need to perform measurements at runtime. | |
| bottom: $virtual-repeat-scrollbar-width; | |
| right: auto; | |
| white-space: nowrap; | |
| } | |
| } | |
| .md-whiteframe-1dp, .md-whiteframe-z1 { | |
| box-shadow: $whiteframe-shadow-1dp; | |
| } | |
| .md-whiteframe-2dp { | |
| box-shadow: $whiteframe-shadow-2dp; | |
| } | |
| .md-whiteframe-3dp { | |
| box-shadow: $whiteframe-shadow-3dp; | |
| } | |
| .md-whiteframe-4dp, .md-whiteframe-z2{ | |
| box-shadow: $whiteframe-shadow-4dp; | |
| } | |
| .md-whiteframe-5dp { | |
| box-shadow: $whiteframe-shadow-5dp; | |
| } | |
| .md-whiteframe-6dp { | |
| box-shadow: $whiteframe-shadow-6dp; | |
| } | |
| .md-whiteframe-7dp, .md-whiteframe-z3 { | |
| box-shadow: $whiteframe-shadow-7dp; | |
| } | |
| .md-whiteframe-8dp { | |
| box-shadow: $whiteframe-shadow-8dp; | |
| } | |
| .md-whiteframe-9dp { | |
| box-shadow: $whiteframe-shadow-9dp; | |
| } | |
| .md-whiteframe-10dp, .md-whiteframe-z4 { | |
| box-shadow: $whiteframe-shadow-10dp; | |
| } | |
| .md-whiteframe-11dp { | |
| box-shadow: $whiteframe-shadow-11dp; | |
| } | |
| .md-whiteframe-12dp { | |
| box-shadow: $whiteframe-shadow-12dp; | |
| } | |
| .md-whiteframe-13dp, .md-whiteframe-z5{ | |
| box-shadow: $whiteframe-shadow-13dp; | |
| } | |
| .md-whiteframe-14dp { | |
| box-shadow: $whiteframe-shadow-14dp; | |
| } | |
| .md-whiteframe-15dp { | |
| box-shadow: $whiteframe-shadow-15dp; | |
| } | |
| .md-whiteframe-16dp { | |
| box-shadow: $whiteframe-shadow-16dp; | |
| } | |
| .md-whiteframe-17dp { | |
| box-shadow: $whiteframe-shadow-17dp; | |
| } | |
| .md-whiteframe-18dp { | |
| box-shadow: $whiteframe-shadow-18dp; | |
| } | |
| .md-whiteframe-19dp { | |
| box-shadow: $whiteframe-shadow-19dp; | |
| } | |
| .md-whiteframe-20dp { | |
| box-shadow: $whiteframe-shadow-20dp; | |
| } | |
| .md-whiteframe-21dp { | |
| box-shadow: $whiteframe-shadow-21dp; | |
| } | |
| .md-whiteframe-22dp { | |
| box-shadow: $whiteframe-shadow-22dp; | |
| } | |
| .md-whiteframe-23dp { | |
| box-shadow: $whiteframe-shadow-23dp; | |
| } | |
| .md-whiteframe-24dp { | |
| box-shadow: $whiteframe-shadow-24dp; | |
| } | |
| @media screen and (-ms-high-contrast: active) { | |
| md-whiteframe { | |
| border: 1px solid #fff; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment