5086 lines
110 KiB
SCSS
5086 lines
110 KiB
SCSS
// Function
|
|
//-- Must be defined before variables
|
|
@function rem($multiplier) {
|
|
$font-size: 10px;
|
|
@return $multiplier * $font-size;
|
|
}
|
|
|
|
// Typography
|
|
// ------------------------------
|
|
$font-family: RobotoDraft, 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-multiplier: 0.7;
|
|
$shadow-key-umbra-opacity: $shadow-multiplier * 0.2;
|
|
$shadow-key-penumbra-opacity: $shadow-multiplier * 0.14;
|
|
$shadow-ambient-shadow-opacity: $shadow-multiplier * 0.12;
|
|
|
|
// NOTE(shyndman): gulp-sass seems to be failing if I split the shadow defs across
|
|
// multiple lines. Ugly. Sorry.
|
|
$whiteframe-shadow-z1: 0px 3px 1px -2px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0px 2px 2px 0px rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0px 1px 5px 0px rgba(0, 0, 0, $shadow-ambient-shadow-opacity) !default;
|
|
$whiteframe-zindex-z1: 1 !default;
|
|
$whiteframe-shadow-z2: 0 2px 4px -1px rgba(0, 0, 0, $shadow-key-umbra-opacity), 0 4px 5px 0 rgba(0, 0, 0, $shadow-key-penumbra-opacity), 0 1px 10px 0 rgba(0, 0, 0, $shadow-ambient-shadow-opacity);
|
|
$whiteframe-zindex-z2: 2 !default;
|
|
$whiteframe-shadow-z3: 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-zindex-z3: 3 !default;
|
|
$whiteframe-shadow-z4: 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-zindex-z4: 4 !default;
|
|
$whiteframe-shadow-z5: 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-zindex-z5: 5 !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;
|
|
|
|
@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, /* Firefox 19+ */
|
|
&:-moz-placeholder, /* Firefox 18- */
|
|
&:-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);
|
|
}
|
|
|
|
// 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 */
|
|
@mixin rtl($prop, $value, $rtl-value) {
|
|
#{$prop}: $value;
|
|
html[dir=rtl] & {
|
|
#{$prop}: $rtl-value;
|
|
}
|
|
}
|
|
|
|
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: scale(0);
|
|
transform-origin: 50% 50%;
|
|
opacity: 0;
|
|
border-radius: 50%;
|
|
&.md-ripple-placed {
|
|
$positionDuration: 0.9s * 2;
|
|
$sizeDuration: 0.65s * 2;
|
|
transition: left $positionDuration $swift-ease-out-timing-function,
|
|
top $positionDuration $swift-ease-out-timing-function,
|
|
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: 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
|
|
// ------------------------------
|
|
|
|
// hide means hide everywhere
|
|
/* Sizes:
|
|
0 <= size < 600 Phone
|
|
600 <= size < 960 Tablet
|
|
960 <= size < 1200 Tablet-Landscape
|
|
1200 <= size PC
|
|
*/
|
|
|
|
[layout] {
|
|
box-sizing: border-box;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -moz-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
|
|
[layout=column] {
|
|
flex-direction: column;
|
|
-webkit-flex-direction: column;
|
|
}
|
|
|
|
[layout=row] {
|
|
flex-direction: row;
|
|
-webkit-flex-direction: row;
|
|
}
|
|
|
|
[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] {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
[layout-fill] {
|
|
margin: 0;
|
|
min-height: 100%;
|
|
width: 100%;
|
|
}
|
|
@-moz-document url-prefix() {
|
|
[layout-fill] {
|
|
margin: 0;
|
|
width: 100%;
|
|
min-height: auto;
|
|
height: inherit;
|
|
}
|
|
}
|
|
|
|
@mixin flex-order-for-name($suffix: null) {
|
|
$selector: 'flex-order';
|
|
@if $suffix != null {
|
|
$selector: 'flex-order-#{$suffix}';
|
|
}
|
|
[#{$selector}="0"] { order: 0; }
|
|
[#{$selector}="1"] { order: 1; }
|
|
[#{$selector}="2"] { order: 2; }
|
|
[#{$selector}="3"] { order: 3; }
|
|
[#{$selector}="4"] { order: 4; }
|
|
[#{$selector}="5"] { order: 5; }
|
|
[#{$selector}="6"] { order: 6; }
|
|
[#{$selector}="7"] { order: 7; }
|
|
[#{$selector}="8"] { order: 8; }
|
|
[#{$selector}="9"] { order: 9; }
|
|
}
|
|
|
|
@mixin layout-for-name($name) {
|
|
[layout-#{$name}] {
|
|
box-sizing: border-box;
|
|
display: -webkit-box;
|
|
display: -webkit-flex;
|
|
display: -moz-box;
|
|
display: -moz-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
}
|
|
[layout-#{$name}=column] {
|
|
flex-direction: column;
|
|
}
|
|
[layout-#{$name}=row] {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
@mixin offset-for-name($name: null) {
|
|
$offsetName: 'offset';
|
|
@if $name != null {
|
|
$offsetName: 'offset-#{$name}';
|
|
}
|
|
@for $i from 1 through 19 {
|
|
[#{$offsetName}="#{$i * 5}"] {
|
|
margin-left: #{$i * 5 + '%'};
|
|
}
|
|
}
|
|
[#{$offsetName}="33"], [#{$offsetName}="34"] {
|
|
margin-left: 33.33%;
|
|
}
|
|
[#{$offsetName}="66"], [#{$offsetName}="67"] {
|
|
margin-left: 66.66%;
|
|
}
|
|
}
|
|
|
|
@mixin flex-properties-for-name($name: null) {
|
|
$flexName: 'flex';
|
|
@if $name != null {
|
|
$flexName: 'flex-#{$name}';
|
|
}
|
|
|
|
[#{$flexName}] {
|
|
box-sizing: border-box;
|
|
flex: 1;
|
|
}
|
|
|
|
|
|
// (0-20) * 5 = 0-100%
|
|
@for $i from 0 through 20 {
|
|
[#{$flexName}="#{$i * 5}"] {
|
|
flex: 0 0 #{$i * 5 + '%'};
|
|
}
|
|
[layout="row"] > [#{$flexName}="#{$i * 5}"] {
|
|
max-width: #{$i * 5 + '%'};
|
|
}
|
|
[layout="column"] > [#{$flexName}="#{$i * 5}"] {
|
|
max-height: #{$i * 5 + '%'};
|
|
}
|
|
}
|
|
|
|
[#{$flexName}="33"], [#{$flexName}="34"] {
|
|
flex: 0 0 33.33%;
|
|
}
|
|
[#{$flexName}="66"], [#{$flexName}="67"] {
|
|
flex: 0 0 66.66%;
|
|
}
|
|
|
|
[layout="row"] {
|
|
> [#{$flexName}="33"], > [#{$flexName}="34"] {
|
|
max-width: 33.33%;
|
|
}
|
|
> [#{$flexName}="66"], > [#{$flexName}="67"] {
|
|
max-width: 66.66%;
|
|
}
|
|
}
|
|
[layout="column"] {
|
|
> [#{$flexName}="33"], > [#{$flexName}="34"] {
|
|
max-height: 33.33%;
|
|
}
|
|
> [#{$flexName}="66"], > [#{$flexName}="67"] {
|
|
max-height: 66.66%;
|
|
}
|
|
}
|
|
}
|
|
|
|
// 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
|
|
// ------------------------------
|
|
|
|
@mixin layout-align-for-name($suffix: null) {
|
|
$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"] {
|
|
justify-content: center;
|
|
}
|
|
|
|
// Main Axis 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"] {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
// Main Axis Space Between
|
|
[#{$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 Center
|
|
[#{$name}="center center"],
|
|
[#{$name}="start center"],
|
|
[#{$name}="end center"],
|
|
[#{$name}="space-between center"],
|
|
[#{$name}="space-around center"] {
|
|
align-items: center;
|
|
}
|
|
|
|
// Cross Axis Start
|
|
[#{$name}="center start"],
|
|
[#{$name}="start start"],
|
|
[#{$name}="end start"],
|
|
[#{$name}="space-between start"],
|
|
[#{$name}="space-around start"] {
|
|
align-items: flex-start;
|
|
}
|
|
|
|
// Cross Axis End
|
|
[#{$name}="center end"],
|
|
[#{$name}="start end"],
|
|
[#{$name}="end end"],
|
|
[#{$name}="space-between end"],
|
|
[#{$name}="space-around end"] {
|
|
align-items: flex-end;
|
|
}
|
|
|
|
}
|
|
|
|
// Flex attributes for layout children
|
|
// ------------------------------
|
|
|
|
@include flex-properties-for-name();
|
|
@include layout-align-for-name();
|
|
@include flex-order-for-name();
|
|
@include offset-for-name();
|
|
|
|
/**
|
|
* `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)`
|
|
*/
|
|
|
|
// SMALL SCREEN
|
|
@media (max-width: $layout-breakpoint-sm - 1) {
|
|
[hide-sm], [hide] {
|
|
&:not([show-sm]):not([show]) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@include flex-order-for-name(sm);
|
|
@include layout-align-for-name(sm);
|
|
@include layout-for-name(sm);
|
|
@include offset-for-name(sm);
|
|
@include flex-properties-for-name(sm);
|
|
}
|
|
|
|
// BIGGER THAN SMALL SCREEN
|
|
@media (min-width: $layout-breakpoint-sm) {
|
|
@include flex-order-for-name(gt-sm);
|
|
@include layout-align-for-name(gt-sm);
|
|
@include layout-for-name(gt-sm);
|
|
@include offset-for-name(gt-sm);
|
|
@include flex-properties-for-name(gt-sm);
|
|
}
|
|
|
|
// MEDIUM SCREEN
|
|
@media (min-width: $layout-breakpoint-sm) and (max-width: $layout-breakpoint-md - 1) {
|
|
[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 flex-order-for-name(md);
|
|
@include layout-align-for-name(md);
|
|
@include layout-for-name(md);
|
|
@include offset-for-name(md);
|
|
@include flex-properties-for-name(md);
|
|
}
|
|
|
|
// BIGGER THAN MEDIUM SCREEN
|
|
@media (min-width: $layout-breakpoint-md) {
|
|
@include flex-order-for-name(gt-md);
|
|
@include layout-align-for-name(gt-md);
|
|
@include layout-for-name(gt-md);
|
|
@include offset-for-name(gt-md);
|
|
@include flex-properties-for-name(gt-md);
|
|
}
|
|
|
|
// LARGE SCREEN
|
|
@media (min-width: $layout-breakpoint-md) and (max-width: $layout-breakpoint-lg - 1) {
|
|
[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 flex-order-for-name(lg);
|
|
@include layout-align-for-name(lg);
|
|
@include layout-for-name(lg);
|
|
@include offset-for-name(lg);
|
|
@include flex-properties-for-name(lg);
|
|
}
|
|
|
|
// BIGGER THAN LARGE SCREEN
|
|
@media (min-width: $layout-breakpoint-lg) {
|
|
[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 flex-order-for-name(gt-lg);
|
|
@include layout-align-for-name(gt-lg);
|
|
@include layout-for-name(gt-lg);
|
|
@include offset-for-name(gt-lg);
|
|
@include flex-properties-for-name(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] {
|
|
padding-bottom: $input-container-padding + $input-error-height;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
height: auto;
|
|
md-input-container {
|
|
padding-bottom: 0;
|
|
}
|
|
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;
|
|
bottom: 0; left: 0; width: 100%;
|
|
height: 3px;
|
|
transition: none;
|
|
|
|
.md-container {
|
|
transition: none;
|
|
top: auto;
|
|
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) {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
border: none;
|
|
box-shadow: none;
|
|
padding: 0 15px;
|
|
font-size: 14px;
|
|
line-height: 40px;
|
|
height: 40px;
|
|
outline: none;
|
|
background: transparent;
|
|
&::-ms-clear {
|
|
display: none;
|
|
}
|
|
}
|
|
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-autocomplete-suggestions {
|
|
position: absolute;
|
|
margin: 0;
|
|
list-style: none;
|
|
padding: 0;
|
|
overflow: auto;
|
|
max-height: 41px * 5.5;
|
|
z-index: $z-index-tooltip;
|
|
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;
|
|
&.ng-enter,
|
|
&.ng-hide-remove {
|
|
transition: none;
|
|
animation: md-autocomplete-list-in 0.2s;
|
|
}
|
|
&.ng-leave,
|
|
&.ng-hide-add {
|
|
transition: none;
|
|
animation: md-autocomplete-list-out 0.2s;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
}
|
|
}
|
|
@media screen and (-ms-high-contrast: active) {
|
|
md-autocomplete,
|
|
.md-autocomplete-suggestions {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|
|
|
|
$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;
|
|
}
|
|
}
|
|
|
|
md-backdrop {
|
|
z-index: $z-index-backdrop;
|
|
&.md-menu-backdrop {
|
|
z-index: $z-index-menu - 1;
|
|
}
|
|
&.md-select-backdrop {
|
|
z-index: $z-index-dialog + 1;
|
|
}
|
|
&.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;
|
|
}
|
|
|
|
opacity: 1;
|
|
|
|
// - Animate background-color alpha only for `.md-opaque` stylings
|
|
// !!Important - Theme-based Background-color and animations can be enabled in backdrop-theme.scss
|
|
|
|
transition: background-color 450ms $swift-ease-in-timing-function;
|
|
|
|
position: absolute;
|
|
top:0;
|
|
bottom:0;
|
|
left: 0;
|
|
right: 0;
|
|
|
|
&.md-click-catcher {
|
|
position: absolute;
|
|
}
|
|
|
|
&.md-opaque.ng-leave {
|
|
transition: background-color 400ms linear;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
$card-padding: 16px !default;
|
|
$card-box-shadow: $whiteframe-shadow-z1 !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;
|
|
}
|
|
}
|
|
|
|
|
|
$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;
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
&.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%);
|
|
display: inline-block;
|
|
width: $checkbox-width;
|
|
height: $checkbox-height;
|
|
@include rtl(left, 0, auto);
|
|
@include rtl(right, auto, 0);
|
|
|
|
&: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;
|
|
}
|
|
|
|
&:after {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
$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-width: rem(5.600) !default;
|
|
$button-fab-height: rem(5.600) !default;
|
|
$button-fab-line-height: rem(5.600) !default;
|
|
$button-fab-padding: rem(1.60) !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;
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
}
|
|
|
|
.md-button {
|
|
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;
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box;
|
|
}
|
|
&: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: 50%;
|
|
.md-ripple-container {
|
|
border-radius: 50%;
|
|
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 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);
|
|
|
|
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: 50%;
|
|
background-clip: padding-box;
|
|
overflow: hidden;
|
|
|
|
transition: 0.2s linear;
|
|
transition-property: background-color, box-shadow;
|
|
.md-ripple-container {
|
|
border-radius: 50%;
|
|
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-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;
|
|
}
|
|
}
|
|
|
|
md-divider {
|
|
display: block;
|
|
border-top-width: 1px;
|
|
border-top-style: solid;
|
|
margin: 0;
|
|
|
|
&[md-inset] {
|
|
margin-left: $baseline-grid * 10;
|
|
}
|
|
}
|
|
|
|
$chip-font-size: rem(1.3) !default;
|
|
$chip-height: rem(3.2) !default;
|
|
$chip-padding: 0 rem(0.8) 0 rem(1.2) !default;
|
|
$chip-margin: rem(0.8) rem(0.8) 0 0 !default;
|
|
$chip-wrap-padding: 0 0 rem(0.8) 0 !default;
|
|
$chip-delete-icon-size: rem(1.8) !default;
|
|
$contact-chip-padding: 0 rem(0.8) 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;
|
|
cursor: text;
|
|
.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%;
|
|
.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 {
|
|
display: inline-block;
|
|
margin-right: rem(-0.5);
|
|
}
|
|
.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;
|
|
}
|
|
}
|
|
|
|
|
|
$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-z5;
|
|
|
|
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-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-fab-speed-dial {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.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: initial;
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
|
|
md-fab-toolbar {
|
|
$icon-delay: 200ms;
|
|
|
|
display: block;
|
|
|
|
/*
|
|
* Closed styling
|
|
*/
|
|
.md-fab-toolbar-wrapper {
|
|
display: block;
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
// Account for the size of the trigger (5.6rem) plus it's margin/shadow (0.6rem * 2)
|
|
height: 6.8rem;
|
|
}
|
|
|
|
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 {
|
|
left: 0;
|
|
}
|
|
|
|
.md-toolbar-tools {
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
&.md-right {
|
|
md-fab-trigger {
|
|
right: 0;
|
|
}
|
|
|
|
.md-toolbar-tools {
|
|
flex-direction: row-reverse;
|
|
|
|
> .md-button:first-child {
|
|
margin-left: 0.6rem;
|
|
}
|
|
|
|
> .md-button:first-child {
|
|
margin-right: -0.8rem;
|
|
}
|
|
|
|
|
|
> .md-button:last-child {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
md-toolbar {
|
|
background-color: transparent !important;
|
|
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;
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
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;
|
|
//}
|
|
|
|
$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;
|
|
|
|
> 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;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
&:invalid {
|
|
outline: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
&.md-no-flex {
|
|
flex: none !important;
|
|
}
|
|
}
|
|
|
|
ng-messages, data-ng-messages, x-ng-messages,
|
|
[ng-messages], [data-ng-messages], [x-ng-messages] {
|
|
order: 3;
|
|
position: relative;
|
|
}
|
|
ng-message, data-ng-message, x-ng-message,
|
|
[ng-message], [data-ng-message], [x-ng-message],
|
|
.md-char-counter {
|
|
//-webkit-font-smoothing: antialiased;
|
|
position: absolute;
|
|
font-size: $input-error-font-size;
|
|
line-height: $input-error-height;
|
|
|
|
&:not(.md-char-counter) {
|
|
padding-right: rem(3);
|
|
}
|
|
|
|
&.ng-enter {
|
|
transition: $swift-ease-out;
|
|
transition-delay: 0.2s;
|
|
}
|
|
&.ng-leave {
|
|
transition: $swift-ease-in;
|
|
}
|
|
&.ng-enter,
|
|
&.ng-leave.ng-leave-active {
|
|
opacity: 0;
|
|
transform: translate3d(0, -20%, 0);
|
|
}
|
|
&.ng-leave,
|
|
&.ng-enter.ng-enter-active {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0);
|
|
}
|
|
}
|
|
.md-char-counter {
|
|
bottom: $input-container-padding;
|
|
right: $input-container-padding;
|
|
}
|
|
|
|
&.md-input-focused,
|
|
&.md-input-has-value {
|
|
label:not(.md-no-float) {
|
|
transform: translate3d(0,$input-label-float-offset,0) scale($input-label-float-scale);
|
|
}
|
|
}
|
|
|
|
// 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 {
|
|
margin-left: $icon-offset;
|
|
}
|
|
}
|
|
|
|
> input {
|
|
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;
|
|
}
|
|
}
|
|
|
|
$list-h3-margin: 0 0 6px 0 !default;
|
|
$list-h4-margin: 10px 0 5px 0 !default;
|
|
$list-h4-font-weight: 400 !default;
|
|
$list-header-line-height: 0.75em !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-text-padding-top: $baseline-grid * 2 !default;
|
|
$list-item-text-padding-bottom: $baseline-grid * 2.5 !default;
|
|
$list-item-inset-divider-offset: 12 * $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: 48px;
|
|
|
|
// 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;
|
|
|
|
.md-list-item-text {
|
|
flex: 1;
|
|
padding: $baseline-grid * 2 0;
|
|
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;
|
|
}
|
|
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;
|
|
}
|
|
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 {
|
|
> .md-avatar:first-child {
|
|
margin-top: $baseline-grid * 1.5;
|
|
}
|
|
> md-icon:first-child {
|
|
align-self: flex-start;
|
|
}
|
|
.md-list-item-text {
|
|
flex: 1;
|
|
padding-top: ($baseline-grid * 2.5) - 1;
|
|
}
|
|
}
|
|
|
|
md-list-item.md-3-line,
|
|
md-list-item.md-3-line > .md-no-style {
|
|
> md-icon:first-child,
|
|
> .md-avatar:first-child {
|
|
margin-top: $baseline-grid * 2;
|
|
}
|
|
}
|
|
|
|
$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;
|
|
overflow: hidden;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
> .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-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;
|
|
}
|
|
}
|
|
}
|
|
|
|
$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-circular-size : 50px !default;
|
|
|
|
@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); }
|
|
}
|
|
|
|
md-progress-circular {
|
|
width: $progress-circular-size;
|
|
height: $progress-circular-size;
|
|
display: block;
|
|
position: relative;
|
|
padding-top: 0 !important;
|
|
margin-bottom: 0 !important;
|
|
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: 5px;
|
|
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.5;
|
|
overflow: hidden;
|
|
.md-half-circle {
|
|
position: absolute;
|
|
top: 0;
|
|
width: $progress-circular-size;
|
|
height: $progress-circular-size;
|
|
box-sizing: border-box;
|
|
border-width: 5px;
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
// TODO: This while-loop generates about 2 kilobytes of css after gzip.
|
|
// Refactor progressCircular to animate with javascript.
|
|
$i: 0;
|
|
@while $i <= 100 {
|
|
&[value="#{$i}"] {
|
|
.md-inner {
|
|
.md-left {
|
|
.md-half-circle {
|
|
@if $i <= 50 {
|
|
transform: rotate(135deg);
|
|
} @else {
|
|
transition: transform 0.1s linear;
|
|
$deg: ($i - 50) / 50 * 180 + 135;
|
|
transform: rotate(#{$deg}deg);
|
|
}
|
|
}
|
|
}
|
|
.md-right {
|
|
.md-half-circle {
|
|
@if $i <= 50 {
|
|
transition: transform 0.1s linear;
|
|
$deg: $i / 50 * 180 - 135;
|
|
transform: rotate(#{$deg}deg);
|
|
} @else {
|
|
transform: rotate(45deg);
|
|
}
|
|
}
|
|
}
|
|
.md-gap {
|
|
border-bottom-width: 5px;
|
|
border-bottom-style: solid;
|
|
@if $i <= 50 {
|
|
border-bottom-color: transparent !important;
|
|
} @else {
|
|
transition: border-bottom-color 0.1s linear;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$i: $i + 1;
|
|
}
|
|
|
|
&[md-mode=indeterminate] {
|
|
.md-spinner-wrapper {
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.ng-hide md-progress-circular,
|
|
md-progress-circular.ng-hide {
|
|
&[md-mode=indeterminate] {
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$progress-linear-bar-height: 5px !default;
|
|
|
|
md-progress-linear:not([md-mode="indeterminate"]) {
|
|
display: block;
|
|
width: 100%;
|
|
height: $progress-linear-bar-height;
|
|
|
|
.md-container {
|
|
overflow: hidden;
|
|
position: relative;
|
|
height: $progress-linear-bar-height;
|
|
top: $progress-linear-bar-height;
|
|
transform: translate(0, 5px) scale(1, 0);
|
|
transition: all .3s linear;
|
|
}
|
|
|
|
.md-container.md-ready {
|
|
transform: translate(0, 0) scale(1, 1);
|
|
}
|
|
|
|
.md-bar {
|
|
height: $progress-linear-bar-height;
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
.md-bar1, .md-bar2 {
|
|
transition: all 0.2s linear;
|
|
}
|
|
|
|
&[md-mode=determinate] {
|
|
.md-bar1 {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
&[md-mode=buffer] {
|
|
.md-container {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.md-dashed:before {
|
|
content: "";
|
|
display: block;
|
|
height: $progress-linear-bar-height;
|
|
width: 100%;
|
|
margin-top: 0;
|
|
position: absolute;
|
|
background-color: transparent;
|
|
background-size: 10px 10px !important;
|
|
background-position: 0px -23px;
|
|
animation: buffer 3s infinite linear;
|
|
}
|
|
}
|
|
|
|
&[md-mode=query] {
|
|
.md-bar2 {
|
|
animation: query .8s infinite cubic-bezier(0.390, 0.575, 0.565, 1.000);
|
|
}
|
|
}
|
|
}
|
|
|
|
md-progress-linear[md-mode="indeterminate"] {
|
|
display: block;
|
|
width: 100%;
|
|
height: $progress-linear-bar-height;
|
|
position: relative;
|
|
.md-container {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
position: relative;
|
|
height: $progress-linear-bar-height;
|
|
top: $progress-linear-bar-height;
|
|
transition: all .3s linear;
|
|
.md-bar {
|
|
height: $progress-linear-bar-height;
|
|
left: 0;
|
|
width: 288 * 100% / 360;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
|
|
@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;
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
input {
|
|
display: none;
|
|
}
|
|
|
|
.md-container {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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: 200ms;
|
|
> * {
|
|
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-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;
|
|
&: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;
|
|
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 {
|
|
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-z1;
|
|
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 {
|
|
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;
|
|
|
|
*,
|
|
*:before,
|
|
*:after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
&.md-closed {
|
|
display: none;
|
|
}
|
|
&.md-closed-add,
|
|
&.md-closed-remove {
|
|
display: flex;
|
|
/* this is required as of 1.3x to properly
|
|
apply all styling in a show/hide animation */
|
|
transition: 0s 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);
|
|
border: 2px solid #D6D6D6;
|
|
background-color: transparent;
|
|
transform: scale(0);
|
|
transition: all 0.2s linear;
|
|
}
|
|
.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 */
|
|
&.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,
|
|
&.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,
|
|
&.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;
|
|
}
|
|
}
|
|
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|
|
|
|
$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 {
|
|
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 {
|
|
padding: $subheader-padding;
|
|
}
|
|
|
|
&:not(.md-sticky-no-effect) {
|
|
&:after {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
top: 0;
|
|
right: -$subheader-margin-right;
|
|
content: '';
|
|
}
|
|
|
|
transition: 0.2s ease-out margin;
|
|
&.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-content {
|
|
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-z1;
|
|
|
|
&: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;
|
|
&.ng-animate {
|
|
transition: height $swift-ease-in-out-duration $swift-ease-in-out-timing-function;
|
|
}
|
|
&: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 {
|
|
position: absolute;
|
|
left: auto;
|
|
right: auto;
|
|
bottom: 0;
|
|
height: 2px;
|
|
&.md-left {
|
|
transition: left ($swift-ease-in-out-duration * 0.45) $swift-ease-in-out-timing-function,
|
|
right $swift-ease-in-out-duration $swift-ease-in-out-timing-function;
|
|
}
|
|
&.md-right {
|
|
transition: left $swift-ease-in-out-duration $swift-ease-in-out-timing-function,
|
|
right ($swift-ease-in-out-duration * 0.45) $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;
|
|
}
|
|
|
|
// See height set globally, depended on by buttons
|
|
|
|
|
|
md-toast {
|
|
display: flex;
|
|
position:absolute;
|
|
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;
|
|
|
|
max-width: 100%;
|
|
max-height: 40px;
|
|
|
|
height: $toast-height;
|
|
z-index: $z-index-toast;
|
|
|
|
&.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;
|
|
}
|
|
}
|
|
|
|
$toolbar-tools-height: 64px !default;
|
|
$toolbar-height: 64px !default;
|
|
$toolbar-medium-tall-height: 88px !default;
|
|
$toolbar-tall-height: 128px !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;
|
|
}
|
|
|
|
*,
|
|
*: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;
|
|
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;
|
|
}
|
|
}
|
|
|
|
$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;
|
|
overflow-y: auto;
|
|
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-z1 {
|
|
box-shadow: $whiteframe-shadow-z1;
|
|
}
|
|
.md-whiteframe-z2 {
|
|
box-shadow: $whiteframe-shadow-z2;
|
|
}
|
|
.md-whiteframe-z3 {
|
|
box-shadow: $whiteframe-shadow-z3;
|
|
}
|
|
.md-whiteframe-z4 {
|
|
box-shadow: $whiteframe-shadow-z4;
|
|
}
|
|
.md-whiteframe-z5 {
|
|
box-shadow: $whiteframe-shadow-z5;
|
|
}
|
|
|
|
@media screen and (-ms-high-contrast: active) {
|
|
md-whiteframe {
|
|
border: 1px solid #fff;
|
|
}
|
|
}
|