material_design_lite-rails 1.0.6 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/material_design_lite/rails/version.rb +1 -1
- data/vendor/assets/javascripts/material.js +377 -301
- data/vendor/assets/stylesheets/material.css +1582 -266
- metadata +2 -2
@@ -1,6 +1,6 @@
|
|
1
1
|
/**
|
2
2
|
* material-design-lite - Material Design Components in CSS, JS and HTML
|
3
|
-
* @version v1.0
|
3
|
+
* @version v1.1.0
|
4
4
|
* @license Apache-2.0
|
5
5
|
* @copyright 2015 Google, Inc.
|
6
6
|
* @link https://github.com/google/material-design-lite
|
@@ -62,6 +62,13 @@
|
|
62
62
|
* -----Shadows
|
63
63
|
* -----Grid
|
64
64
|
* -----Data table
|
65
|
+
* -----Dialog
|
66
|
+
* -----Snackbar
|
67
|
+
*
|
68
|
+
* Even though all variables have the `!default` directive, most of them
|
69
|
+
* should not be changed as they are dependent one another. This can cause
|
70
|
+
* visual distortions (like alignment issues) that are hard to track down
|
71
|
+
* and fix.
|
65
72
|
*/
|
66
73
|
/* ========== TYPOGRAPHY ========== */
|
67
74
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -162,6 +169,8 @@
|
|
162
169
|
/* SHADOWS */
|
163
170
|
/* GRID */
|
164
171
|
/* DATA TABLE */
|
172
|
+
/* DIALOG */
|
173
|
+
/* SNACKBAR */
|
165
174
|
/* TOOLTIP */
|
166
175
|
/**
|
167
176
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -181,6 +190,7 @@
|
|
181
190
|
/* Typography */
|
182
191
|
/* Shadows */
|
183
192
|
/* Animations */
|
193
|
+
/* Dialog */
|
184
194
|
/**
|
185
195
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
186
196
|
*
|
@@ -251,6 +261,13 @@
|
|
251
261
|
* -----Shadows
|
252
262
|
* -----Grid
|
253
263
|
* -----Data table
|
264
|
+
* -----Dialog
|
265
|
+
* -----Snackbar
|
266
|
+
*
|
267
|
+
* Even though all variables have the `!default` directive, most of them
|
268
|
+
* should not be changed as they are dependent one another. This can cause
|
269
|
+
* visual distortions (like alignment issues) that are hard to track down
|
270
|
+
* and fix.
|
254
271
|
*/
|
255
272
|
/* ========== TYPOGRAPHY ========== */
|
256
273
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -351,6 +368,8 @@
|
|
351
368
|
/* SHADOWS */
|
352
369
|
/* GRID */
|
353
370
|
/* DATA TABLE */
|
371
|
+
/* DIALOG */
|
372
|
+
/* SNACKBAR */
|
354
373
|
/* TOOLTIP */
|
355
374
|
/*
|
356
375
|
* What follows is the result of much research on cross-browser styling.
|
@@ -662,6 +681,13 @@ main {
|
|
662
681
|
* -----Shadows
|
663
682
|
* -----Grid
|
664
683
|
* -----Data table
|
684
|
+
* -----Dialog
|
685
|
+
* -----Snackbar
|
686
|
+
*
|
687
|
+
* Even though all variables have the `!default` directive, most of them
|
688
|
+
* should not be changed as they are dependent one another. This can cause
|
689
|
+
* visual distortions (like alignment issues) that are hard to track down
|
690
|
+
* and fix.
|
665
691
|
*/
|
666
692
|
/* ========== TYPOGRAPHY ========== */
|
667
693
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -762,6 +788,8 @@ main {
|
|
762
788
|
/* SHADOWS */
|
763
789
|
/* GRID */
|
764
790
|
/* DATA TABLE */
|
791
|
+
/* DIALOG */
|
792
|
+
/* SNACKBAR */
|
765
793
|
/* TOOLTIP */
|
766
794
|
/**
|
767
795
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -781,6 +809,7 @@ main {
|
|
781
809
|
/* Typography */
|
782
810
|
/* Shadows */
|
783
811
|
/* Animations */
|
812
|
+
/* Dialog */
|
784
813
|
html, body {
|
785
814
|
font-family: "Helvetica", "Arial", sans-serif;
|
786
815
|
font-size: 14px;
|
@@ -1163,6 +1192,21 @@ ul, ol {
|
|
1163
1192
|
.mdl-typography--font-black {
|
1164
1193
|
font-weight: 900 !important; }
|
1165
1194
|
|
1195
|
+
.material-icons {
|
1196
|
+
font-family: 'Material Icons';
|
1197
|
+
font-weight: normal;
|
1198
|
+
font-style: normal;
|
1199
|
+
font-size: 24px;
|
1200
|
+
line-height: 1;
|
1201
|
+
letter-spacing: normal;
|
1202
|
+
text-transform: none;
|
1203
|
+
display: inline-block;
|
1204
|
+
word-wrap: normal;
|
1205
|
+
-moz-font-feature-settings: 'liga';
|
1206
|
+
font-feature-settings: 'liga';
|
1207
|
+
-webkit-font-feature-settings: 'liga';
|
1208
|
+
-webkit-font-smoothing: antialiased; }
|
1209
|
+
|
1166
1210
|
/**
|
1167
1211
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
1168
1212
|
*
|
@@ -1218,6 +1262,13 @@ ul, ol {
|
|
1218
1262
|
* -----Shadows
|
1219
1263
|
* -----Grid
|
1220
1264
|
* -----Data table
|
1265
|
+
* -----Dialog
|
1266
|
+
* -----Snackbar
|
1267
|
+
*
|
1268
|
+
* Even though all variables have the `!default` directive, most of them
|
1269
|
+
* should not be changed as they are dependent one another. This can cause
|
1270
|
+
* visual distortions (like alignment issues) that are hard to track down
|
1271
|
+
* and fix.
|
1221
1272
|
*/
|
1222
1273
|
/* ========== TYPOGRAPHY ========== */
|
1223
1274
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -1318,6 +1369,8 @@ ul, ol {
|
|
1318
1369
|
/* SHADOWS */
|
1319
1370
|
/* GRID */
|
1320
1371
|
/* DATA TABLE */
|
1372
|
+
/* DIALOG */
|
1373
|
+
/* SNACKBAR */
|
1321
1374
|
/* TOOLTIP */
|
1322
1375
|
.mdl-color-text--red {
|
1323
1376
|
color: rgb(244,67,54) !important; }
|
@@ -3054,6 +3107,13 @@ ul, ol {
|
|
3054
3107
|
* -----Shadows
|
3055
3108
|
* -----Grid
|
3056
3109
|
* -----Data table
|
3110
|
+
* -----Dialog
|
3111
|
+
* -----Snackbar
|
3112
|
+
*
|
3113
|
+
* Even though all variables have the `!default` directive, most of them
|
3114
|
+
* should not be changed as they are dependent one another. This can cause
|
3115
|
+
* visual distortions (like alignment issues) that are hard to track down
|
3116
|
+
* and fix.
|
3057
3117
|
*/
|
3058
3118
|
/* ========== TYPOGRAPHY ========== */
|
3059
3119
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -3154,6 +3214,8 @@ ul, ol {
|
|
3154
3214
|
/* SHADOWS */
|
3155
3215
|
/* GRID */
|
3156
3216
|
/* DATA TABLE */
|
3217
|
+
/* DIALOG */
|
3218
|
+
/* SNACKBAR */
|
3157
3219
|
/* TOOLTIP */
|
3158
3220
|
.mdl-ripple {
|
3159
3221
|
background: rgb(0,0,0);
|
@@ -3165,13 +3227,13 @@ ul, ol {
|
|
3165
3227
|
position: absolute;
|
3166
3228
|
top: 0;
|
3167
3229
|
-webkit-transform: translate(-50%, -50%);
|
3168
|
-
-ms-transform: translate(-50%, -50%);
|
3169
3230
|
transform: translate(-50%, -50%);
|
3170
3231
|
width: 50px;
|
3171
3232
|
overflow: hidden; }
|
3172
3233
|
.mdl-ripple.is-animating {
|
3173
|
-
|
3174
|
-
|
3234
|
+
transition: width 0.3s cubic-bezier(0, 0, 0.2, 1), height 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.2, 1);
|
3235
|
+
transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), width 0.3s cubic-bezier(0, 0, 0.2, 1), height 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1);
|
3236
|
+
transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), width 0.3s cubic-bezier(0, 0, 0.2, 1), height 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.2, 1); }
|
3175
3237
|
.mdl-ripple.is-visible {
|
3176
3238
|
opacity: 0.3; }
|
3177
3239
|
|
@@ -3230,6 +3292,13 @@ ul, ol {
|
|
3230
3292
|
* -----Shadows
|
3231
3293
|
* -----Grid
|
3232
3294
|
* -----Data table
|
3295
|
+
* -----Dialog
|
3296
|
+
* -----Snackbar
|
3297
|
+
*
|
3298
|
+
* Even though all variables have the `!default` directive, most of them
|
3299
|
+
* should not be changed as they are dependent one another. This can cause
|
3300
|
+
* visual distortions (like alignment issues) that are hard to track down
|
3301
|
+
* and fix.
|
3233
3302
|
*/
|
3234
3303
|
/* ========== TYPOGRAPHY ========== */
|
3235
3304
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -3330,22 +3399,20 @@ ul, ol {
|
|
3330
3399
|
/* SHADOWS */
|
3331
3400
|
/* GRID */
|
3332
3401
|
/* DATA TABLE */
|
3402
|
+
/* DIALOG */
|
3403
|
+
/* SNACKBAR */
|
3333
3404
|
/* TOOLTIP */
|
3334
3405
|
.mdl-animation--default {
|
3335
|
-
|
3336
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
3406
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
3337
3407
|
|
3338
3408
|
.mdl-animation--fast-out-slow-in {
|
3339
|
-
|
3340
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
3409
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
3341
3410
|
|
3342
3411
|
.mdl-animation--linear-out-slow-in {
|
3343
|
-
|
3344
|
-
transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
|
3412
|
+
transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
|
3345
3413
|
|
3346
3414
|
.mdl-animation--fast-out-linear-in {
|
3347
|
-
|
3348
|
-
transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
|
3415
|
+
transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
|
3349
3416
|
|
3350
3417
|
/**
|
3351
3418
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -3402,6 +3469,13 @@ ul, ol {
|
|
3402
3469
|
* -----Shadows
|
3403
3470
|
* -----Grid
|
3404
3471
|
* -----Data table
|
3472
|
+
* -----Dialog
|
3473
|
+
* -----Snackbar
|
3474
|
+
*
|
3475
|
+
* Even though all variables have the `!default` directive, most of them
|
3476
|
+
* should not be changed as they are dependent one another. This can cause
|
3477
|
+
* visual distortions (like alignment issues) that are hard to track down
|
3478
|
+
* and fix.
|
3405
3479
|
*/
|
3406
3480
|
/* ========== TYPOGRAPHY ========== */
|
3407
3481
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -3502,6 +3576,8 @@ ul, ol {
|
|
3502
3576
|
/* SHADOWS */
|
3503
3577
|
/* GRID */
|
3504
3578
|
/* DATA TABLE */
|
3579
|
+
/* DIALOG */
|
3580
|
+
/* SNACKBAR */
|
3505
3581
|
/* TOOLTIP */
|
3506
3582
|
.mdl-badge {
|
3507
3583
|
position: relative;
|
@@ -3511,26 +3587,21 @@ ul, ol {
|
|
3511
3587
|
margin-right: auto; }
|
3512
3588
|
.mdl-badge[data-badge]:after {
|
3513
3589
|
content: attr(data-badge);
|
3514
|
-
display: -webkit-box;
|
3515
3590
|
display: -webkit-flex;
|
3516
3591
|
display: -ms-flexbox;
|
3517
3592
|
display: flex;
|
3518
|
-
-webkit-box-orient: horizontal;
|
3519
|
-
-webkit-box-direction: normal;
|
3520
3593
|
-webkit-flex-direction: row;
|
3521
3594
|
-ms-flex-direction: row;
|
3522
3595
|
flex-direction: row;
|
3523
3596
|
-webkit-flex-wrap: wrap;
|
3524
3597
|
-ms-flex-wrap: wrap;
|
3525
3598
|
flex-wrap: wrap;
|
3526
|
-
-webkit-box-pack: center;
|
3527
3599
|
-webkit-justify-content: center;
|
3528
3600
|
-ms-flex-pack: center;
|
3529
3601
|
justify-content: center;
|
3530
3602
|
-webkit-align-content: center;
|
3531
3603
|
-ms-flex-line-pack: center;
|
3532
3604
|
align-content: center;
|
3533
|
-
-webkit-box-align: center;
|
3534
3605
|
-webkit-align-items: center;
|
3535
3606
|
-ms-flex-align: center;
|
3536
3607
|
align-items: center;
|
@@ -3550,8 +3621,12 @@ ul, ol {
|
|
3550
3621
|
right: -5px; }
|
3551
3622
|
.mdl-badge.mdl-badge--no-background[data-badge]:after {
|
3552
3623
|
color: rgb(255,64,129);
|
3553
|
-
background:
|
3624
|
+
background: rgba(255,255,255,0.2);
|
3554
3625
|
box-shadow: 0 0 1px gray; }
|
3626
|
+
.mdl-badge.mdl-badge--overlap {
|
3627
|
+
margin-right: 10px; }
|
3628
|
+
.mdl-badge.mdl-badge--overlap:after {
|
3629
|
+
right: -10px; }
|
3555
3630
|
|
3556
3631
|
/**
|
3557
3632
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -3608,6 +3683,13 @@ ul, ol {
|
|
3608
3683
|
* -----Shadows
|
3609
3684
|
* -----Grid
|
3610
3685
|
* -----Data table
|
3686
|
+
* -----Dialog
|
3687
|
+
* -----Snackbar
|
3688
|
+
*
|
3689
|
+
* Even though all variables have the `!default` directive, most of them
|
3690
|
+
* should not be changed as they are dependent one another. This can cause
|
3691
|
+
* visual distortions (like alignment issues) that are hard to track down
|
3692
|
+
* and fix.
|
3611
3693
|
*/
|
3612
3694
|
/* ========== TYPOGRAPHY ========== */
|
3613
3695
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -3708,6 +3790,8 @@ ul, ol {
|
|
3708
3790
|
/* SHADOWS */
|
3709
3791
|
/* GRID */
|
3710
3792
|
/* DATA TABLE */
|
3793
|
+
/* DIALOG */
|
3794
|
+
/* SNACKBAR */
|
3711
3795
|
/* TOOLTIP */
|
3712
3796
|
/**
|
3713
3797
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -3727,6 +3811,7 @@ ul, ol {
|
|
3727
3811
|
/* Typography */
|
3728
3812
|
/* Shadows */
|
3729
3813
|
/* Animations */
|
3814
|
+
/* Dialog */
|
3730
3815
|
.mdl-button {
|
3731
3816
|
background: transparent;
|
3732
3817
|
border: none;
|
@@ -3734,6 +3819,7 @@ ul, ol {
|
|
3734
3819
|
color: rgb(0,0,0);
|
3735
3820
|
position: relative;
|
3736
3821
|
height: 36px;
|
3822
|
+
margin: 0;
|
3737
3823
|
min-width: 64px;
|
3738
3824
|
padding: 0 16px;
|
3739
3825
|
display: inline-block;
|
@@ -3744,9 +3830,8 @@ ul, ol {
|
|
3744
3830
|
line-height: 1;
|
3745
3831
|
letter-spacing: 0;
|
3746
3832
|
overflow: hidden;
|
3747
|
-
will-change: box-shadow
|
3748
|
-
|
3749
|
-
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
3833
|
+
will-change: box-shadow;
|
3834
|
+
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
3750
3835
|
outline: none;
|
3751
3836
|
cursor: pointer;
|
3752
3837
|
text-decoration: none;
|
@@ -3808,7 +3893,6 @@ input.mdl-button[type="submit"] {
|
|
3808
3893
|
top: 50%;
|
3809
3894
|
left: 50%;
|
3810
3895
|
-webkit-transform: translate(-12px, -12px);
|
3811
|
-
-ms-transform: translate(-12px, -12px);
|
3812
3896
|
transform: translate(-12px, -12px);
|
3813
3897
|
line-height: 24px;
|
3814
3898
|
width: 24px; }
|
@@ -3854,7 +3938,6 @@ input.mdl-button[type="submit"] {
|
|
3854
3938
|
top: 50%;
|
3855
3939
|
left: 50%;
|
3856
3940
|
-webkit-transform: translate(-12px, -12px);
|
3857
|
-
-ms-transform: translate(-12px, -12px);
|
3858
3941
|
transform: translate(-12px, -12px);
|
3859
3942
|
line-height: 24px;
|
3860
3943
|
width: 24px; }
|
@@ -3905,13 +3988,12 @@ input.mdl-button[type="submit"] {
|
|
3905
3988
|
|
3906
3989
|
.mdl-button--fab[disabled][disabled], .mdl-button--fab.mdl-button--disabled.mdl-button--disabled {
|
3907
3990
|
background-color: rgba(0,0,0, 0.12);
|
3908
|
-
color: rgba(0,0,0, 0.26);
|
3909
|
-
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
|
3991
|
+
color: rgba(0,0,0, 0.26); }
|
3910
3992
|
|
3911
3993
|
.mdl-button--raised[disabled][disabled], .mdl-button--raised.mdl-button--disabled.mdl-button--disabled {
|
3912
3994
|
background-color: rgba(0,0,0, 0.12);
|
3913
3995
|
color: rgba(0,0,0, 0.26);
|
3914
|
-
box-shadow:
|
3996
|
+
box-shadow: none; }
|
3915
3997
|
|
3916
3998
|
.mdl-button--colored[disabled][disabled], .mdl-button--colored.mdl-button--disabled.mdl-button--disabled {
|
3917
3999
|
color: rgba(0,0,0, 0.26); }
|
@@ -3974,6 +4056,13 @@ input.mdl-button[type="submit"] {
|
|
3974
4056
|
* -----Shadows
|
3975
4057
|
* -----Grid
|
3976
4058
|
* -----Data table
|
4059
|
+
* -----Dialog
|
4060
|
+
* -----Snackbar
|
4061
|
+
*
|
4062
|
+
* Even though all variables have the `!default` directive, most of them
|
4063
|
+
* should not be changed as they are dependent one another. This can cause
|
4064
|
+
* visual distortions (like alignment issues) that are hard to track down
|
4065
|
+
* and fix.
|
3977
4066
|
*/
|
3978
4067
|
/* ========== TYPOGRAPHY ========== */
|
3979
4068
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -4074,14 +4163,13 @@ input.mdl-button[type="submit"] {
|
|
4074
4163
|
/* SHADOWS */
|
4075
4164
|
/* GRID */
|
4076
4165
|
/* DATA TABLE */
|
4166
|
+
/* DIALOG */
|
4167
|
+
/* SNACKBAR */
|
4077
4168
|
/* TOOLTIP */
|
4078
4169
|
.mdl-card {
|
4079
|
-
display: -webkit-box;
|
4080
4170
|
display: -webkit-flex;
|
4081
4171
|
display: -ms-flexbox;
|
4082
4172
|
display: flex;
|
4083
|
-
-webkit-box-orient: vertical;
|
4084
|
-
-webkit-box-direction: normal;
|
4085
4173
|
-webkit-flex-direction: column;
|
4086
4174
|
-ms-flex-direction: column;
|
4087
4175
|
flex-direction: column;
|
@@ -4106,17 +4194,14 @@ input.mdl-button[type="submit"] {
|
|
4106
4194
|
box-sizing: border-box; }
|
4107
4195
|
|
4108
4196
|
.mdl-card__title {
|
4109
|
-
-webkit-box-align: center;
|
4110
4197
|
-webkit-align-items: center;
|
4111
4198
|
-ms-flex-align: center;
|
4112
4199
|
align-items: center;
|
4113
4200
|
color: rgb(0,0,0);
|
4114
4201
|
display: block;
|
4115
|
-
display: -webkit-box;
|
4116
4202
|
display: -webkit-flex;
|
4117
4203
|
display: -ms-flexbox;
|
4118
4204
|
display: flex;
|
4119
|
-
-webkit-box-pack: stretch;
|
4120
4205
|
-webkit-justify-content: stretch;
|
4121
4206
|
-ms-flex-pack: stretch;
|
4122
4207
|
justify-content: stretch;
|
@@ -4125,7 +4210,6 @@ input.mdl-button[type="submit"] {
|
|
4125
4210
|
-webkit-perspective-origin: 165px 56px;
|
4126
4211
|
perspective-origin: 165px 56px;
|
4127
4212
|
-webkit-transform-origin: 165px 56px;
|
4128
|
-
-ms-transform-origin: 165px 56px;
|
4129
4213
|
transform-origin: 165px 56px;
|
4130
4214
|
box-sizing: border-box; }
|
4131
4215
|
.mdl-card__title.mdl-card--border {
|
@@ -4137,7 +4221,6 @@ input.mdl-button[type="submit"] {
|
|
4137
4221
|
align-self: flex-end;
|
4138
4222
|
color: inherit;
|
4139
4223
|
display: block;
|
4140
|
-
display: -webkit-box;
|
4141
4224
|
display: -webkit-flex;
|
4142
4225
|
display: -ms-flexbox;
|
4143
4226
|
display: flex;
|
@@ -4146,7 +4229,6 @@ input.mdl-button[type="submit"] {
|
|
4146
4229
|
line-height: normal;
|
4147
4230
|
overflow: hidden;
|
4148
4231
|
-webkit-transform-origin: 149px 48px;
|
4149
|
-
-ms-transform-origin: 149px 48px;
|
4150
4232
|
transform-origin: 149px 48px;
|
4151
4233
|
margin: 0; }
|
4152
4234
|
|
@@ -4157,7 +4239,7 @@ input.mdl-button[type="submit"] {
|
|
4157
4239
|
|
4158
4240
|
.mdl-card__supporting-text {
|
4159
4241
|
color: rgba(0,0,0, 0.54);
|
4160
|
-
font-size:
|
4242
|
+
font-size: 1rem;
|
4161
4243
|
line-height: 18px;
|
4162
4244
|
overflow: hidden;
|
4163
4245
|
padding: 16px 16px;
|
@@ -4174,7 +4256,6 @@ input.mdl-button[type="submit"] {
|
|
4174
4256
|
border-top: 1px solid rgba(0, 0, 0, 0.1); }
|
4175
4257
|
|
4176
4258
|
.mdl-card--expand {
|
4177
|
-
-webkit-box-flex: 1;
|
4178
4259
|
-webkit-flex-grow: 1;
|
4179
4260
|
-ms-flex-positive: 1;
|
4180
4261
|
flex-grow: 1; }
|
@@ -4239,6 +4320,13 @@ input.mdl-button[type="submit"] {
|
|
4239
4320
|
* -----Shadows
|
4240
4321
|
* -----Grid
|
4241
4322
|
* -----Data table
|
4323
|
+
* -----Dialog
|
4324
|
+
* -----Snackbar
|
4325
|
+
*
|
4326
|
+
* Even though all variables have the `!default` directive, most of them
|
4327
|
+
* should not be changed as they are dependent one another. This can cause
|
4328
|
+
* visual distortions (like alignment issues) that are hard to track down
|
4329
|
+
* and fix.
|
4242
4330
|
*/
|
4243
4331
|
/* ========== TYPOGRAPHY ========== */
|
4244
4332
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -4339,6 +4427,8 @@ input.mdl-button[type="submit"] {
|
|
4339
4427
|
/* SHADOWS */
|
4340
4428
|
/* GRID */
|
4341
4429
|
/* DATA TABLE */
|
4430
|
+
/* DIALOG */
|
4431
|
+
/* SNACKBAR */
|
4342
4432
|
/* TOOLTIP */
|
4343
4433
|
/**
|
4344
4434
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -4358,6 +4448,7 @@ input.mdl-button[type="submit"] {
|
|
4358
4448
|
/* Typography */
|
4359
4449
|
/* Shadows */
|
4360
4450
|
/* Animations */
|
4451
|
+
/* Dialog */
|
4361
4452
|
.mdl-checkbox {
|
4362
4453
|
position: relative;
|
4363
4454
|
z-index: 1;
|
@@ -4402,6 +4493,7 @@ input.mdl-button[type="submit"] {
|
|
4402
4493
|
z-index: 2; }
|
4403
4494
|
.mdl-checkbox.is-checked .mdl-checkbox__box-outline {
|
4404
4495
|
border: 2px solid rgb(63,81,181); }
|
4496
|
+
fieldset[disabled] .mdl-checkbox .mdl-checkbox__box-outline,
|
4405
4497
|
.mdl-checkbox.is-disabled .mdl-checkbox__box-outline {
|
4406
4498
|
border: 2px solid rgba(0,0,0, 0.26);
|
4407
4499
|
cursor: auto; }
|
@@ -4432,14 +4524,12 @@ input.mdl-button[type="submit"] {
|
|
4432
4524
|
-webkit-mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcCI+CiAgICAgIDxwYXRoCiAgICAgICAgIGQ9Ik0gMCwwIDAsMSAxLDEgMSwwIDAsMCB6IE0gMC44NTM0Mzc1LDAuMTY3MTg3NSAwLjk1OTY4NzUsMC4yNzMxMjUgMC40MjkzNzUsMC44MDM0Mzc1IDAuMzIzMTI1LDAuOTA5Njg3NSAwLjIxNzE4NzUsMC44MDM0Mzc1IDAuMDQwMzEyNSwwLjYyNjg3NSAwLjE0NjU2MjUsMC41MjA2MjUgMC4zMjMxMjUsMC42OTc1IDAuODUzNDM3NSwwLjE2NzE4NzUgeiIKICAgICAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KICAgIDwvY2xpcFBhdGg+CiAgICA8bWFzayBpZD0ibWFzayIgbWFza1VuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgbWFza0NvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPgogICAgICA8cGF0aAogICAgICAgICBkPSJNIDAsMCAwLDEgMSwxIDEsMCAwLDAgeiBNIDAuODUzNDM3NSwwLjE2NzE4NzUgMC45NTk2ODc1LDAuMjczMTI1IDAuNDI5Mzc1LDAuODAzNDM3NSAwLjMyMzEyNSwwLjkwOTY4NzUgMC4yMTcxODc1LDAuODAzNDM3NSAwLjA0MDMxMjUsMC42MjY4NzUgMC4xNDY1NjI1LDAuNTIwNjI1IDAuMzIzMTI1LDAuNjk3NSAwLjg1MzQzNzUsMC4xNjcxODc1IHoiCiAgICAgICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+CiAgICA8L21hc2s+CiAgPC9kZWZzPgogIDxyZWN0CiAgICAgd2lkdGg9IjEiCiAgICAgaGVpZ2h0PSIxIgogICAgIHg9IjAiCiAgICAgeT0iMCIKICAgICBjbGlwLXBhdGg9InVybCgjY2xpcCkiCiAgICAgc3R5bGU9ImZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KPC9zdmc+Cg==");
|
4433
4525
|
mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8ZGVmcz4KICAgIDxjbGlwUGF0aCBpZD0iY2xpcCI+CiAgICAgIDxwYXRoCiAgICAgICAgIGQ9Ik0gMCwwIDAsMSAxLDEgMSwwIDAsMCB6IE0gMC44NTM0Mzc1LDAuMTY3MTg3NSAwLjk1OTY4NzUsMC4yNzMxMjUgMC40MjkzNzUsMC44MDM0Mzc1IDAuMzIzMTI1LDAuOTA5Njg3NSAwLjIxNzE4NzUsMC44MDM0Mzc1IDAuMDQwMzEyNSwwLjYyNjg3NSAwLjE0NjU2MjUsMC41MjA2MjUgMC4zMjMxMjUsMC42OTc1IDAuODUzNDM3NSwwLjE2NzE4NzUgeiIKICAgICAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KICAgIDwvY2xpcFBhdGg+CiAgICA8bWFzayBpZD0ibWFzayIgbWFza1VuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgbWFza0NvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPgogICAgICA8cGF0aAogICAgICAgICBkPSJNIDAsMCAwLDEgMSwxIDEsMCAwLDAgeiBNIDAuODUzNDM3NSwwLjE2NzE4NzUgMC45NTk2ODc1LDAuMjczMTI1IDAuNDI5Mzc1LDAuODAzNDM3NSAwLjMyMzEyNSwwLjkwOTY4NzUgMC4yMTcxODc1LDAuODAzNDM3NSAwLjA0MDMxMjUsMC42MjY4NzUgMC4xNDY1NjI1LDAuNTIwNjI1IDAuMzIzMTI1LDAuNjk3NSAwLjg1MzQzNzUsMC4xNjcxODc1IHoiCiAgICAgICAgIHN0eWxlPSJmaWxsOiNmZmZmZmY7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmUiIC8+CiAgICA8L21hc2s+CiAgPC9kZWZzPgogIDxyZWN0CiAgICAgd2lkdGg9IjEiCiAgICAgaGVpZ2h0PSIxIgogICAgIHg9IjAiCiAgICAgeT0iMCIKICAgICBjbGlwLXBhdGg9InVybCgjY2xpcCkiCiAgICAgc3R5bGU9ImZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtzdHJva2U6bm9uZSIgLz4KPC9zdmc+Cg==");
|
4434
4526
|
background: transparent;
|
4435
|
-
|
4436
|
-
|
4437
|
-
|
4438
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
4439
|
-
-webkit-transition-property: background;
|
4440
|
-
transition-property: background; }
|
4527
|
+
transition-duration: 0.28s;
|
4528
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
4529
|
+
transition-property: background; }
|
4441
4530
|
.mdl-checkbox.is-checked .mdl-checkbox__tick-outline {
|
4442
4531
|
background: rgb(63,81,181) url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K"); }
|
4532
|
+
fieldset[disabled] .mdl-checkbox.is-checked .mdl-checkbox__tick-outline,
|
4443
4533
|
.mdl-checkbox.is-checked.is-disabled .mdl-checkbox__tick-outline {
|
4444
4534
|
background: rgba(0,0,0, 0.26) url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K"); }
|
4445
4535
|
|
@@ -4449,6 +4539,7 @@ input.mdl-button[type="submit"] {
|
|
4449
4539
|
font-size: 16px;
|
4450
4540
|
line-height: 24px;
|
4451
4541
|
margin: 0; }
|
4542
|
+
fieldset[disabled] .mdl-checkbox .mdl-checkbox__label,
|
4452
4543
|
.mdl-checkbox.is-disabled .mdl-checkbox__label {
|
4453
4544
|
color: rgba(0,0,0, 0.26);
|
4454
4545
|
cursor: auto; }
|
@@ -4467,8 +4558,10 @@ input.mdl-button[type="submit"] {
|
|
4467
4558
|
-webkit-mask-image: -webkit-radial-gradient(circle, white, black); }
|
4468
4559
|
.mdl-checkbox__ripple-container .mdl-ripple {
|
4469
4560
|
background: rgb(63,81,181); }
|
4561
|
+
fieldset[disabled] .mdl-checkbox .mdl-checkbox__ripple-container,
|
4470
4562
|
.mdl-checkbox.is-disabled .mdl-checkbox__ripple-container {
|
4471
4563
|
cursor: auto; }
|
4564
|
+
fieldset[disabled] .mdl-checkbox .mdl-checkbox__ripple-container .mdl-ripple,
|
4472
4565
|
.mdl-checkbox.is-disabled .mdl-checkbox__ripple-container .mdl-ripple {
|
4473
4566
|
background: transparent; }
|
4474
4567
|
|
@@ -4527,6 +4620,13 @@ input.mdl-button[type="submit"] {
|
|
4527
4620
|
* -----Shadows
|
4528
4621
|
* -----Grid
|
4529
4622
|
* -----Data table
|
4623
|
+
* -----Dialog
|
4624
|
+
* -----Snackbar
|
4625
|
+
*
|
4626
|
+
* Even though all variables have the `!default` directive, most of them
|
4627
|
+
* should not be changed as they are dependent one another. This can cause
|
4628
|
+
* visual distortions (like alignment issues) that are hard to track down
|
4629
|
+
* and fix.
|
4530
4630
|
*/
|
4531
4631
|
/* ========== TYPOGRAPHY ========== */
|
4532
4632
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -4627,6 +4727,8 @@ input.mdl-button[type="submit"] {
|
|
4627
4727
|
/* SHADOWS */
|
4628
4728
|
/* GRID */
|
4629
4729
|
/* DATA TABLE */
|
4730
|
+
/* DIALOG */
|
4731
|
+
/* SNACKBAR */
|
4630
4732
|
/* TOOLTIP */
|
4631
4733
|
/**
|
4632
4734
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -4646,6 +4748,7 @@ input.mdl-button[type="submit"] {
|
|
4646
4748
|
/* Typography */
|
4647
4749
|
/* Shadows */
|
4648
4750
|
/* Animations */
|
4751
|
+
/* Dialog */
|
4649
4752
|
.mdl-data-table {
|
4650
4753
|
position: relative;
|
4651
4754
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
@@ -4660,18 +4763,15 @@ input.mdl-button[type="submit"] {
|
|
4660
4763
|
.mdl-data-table tbody tr {
|
4661
4764
|
position: relative;
|
4662
4765
|
height: 48px;
|
4663
|
-
|
4664
|
-
|
4665
|
-
|
4666
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
4667
|
-
-webkit-transition-property: background-color;
|
4668
|
-
transition-property: background-color; }
|
4766
|
+
transition-duration: 0.28s;
|
4767
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
4768
|
+
transition-property: background-color; }
|
4669
4769
|
.mdl-data-table tbody tr.is-selected {
|
4670
4770
|
background-color: #e0e0e0; }
|
4671
4771
|
.mdl-data-table tbody tr:hover {
|
4672
4772
|
background-color: #eeeeee; }
|
4673
4773
|
.mdl-data-table td, .mdl-data-table th {
|
4674
|
-
padding: 0 18px
|
4774
|
+
padding: 0 18px 12px 18px;
|
4675
4775
|
text-align: right; }
|
4676
4776
|
.mdl-data-table td:first-of-type, .mdl-data-table th:first-of-type {
|
4677
4777
|
padding-left: 24px; }
|
@@ -4679,16 +4779,14 @@ input.mdl-button[type="submit"] {
|
|
4679
4779
|
padding-right: 24px; }
|
4680
4780
|
.mdl-data-table td {
|
4681
4781
|
position: relative;
|
4682
|
-
vertical-align:
|
4782
|
+
vertical-align: middle;
|
4683
4783
|
height: 48px;
|
4684
4784
|
border-top: 1px solid rgba(0, 0, 0, 0.12);
|
4685
4785
|
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
|
4686
4786
|
padding-top: 12px;
|
4687
4787
|
box-sizing: border-box; }
|
4688
4788
|
.mdl-data-table td .mdl-data-table__select {
|
4689
|
-
vertical-align:
|
4690
|
-
position: absolute;
|
4691
|
-
left: 24px; }
|
4789
|
+
vertical-align: middle; }
|
4692
4790
|
.mdl-data-table th {
|
4693
4791
|
position: relative;
|
4694
4792
|
vertical-align: bottom;
|
@@ -4702,10 +4800,27 @@ input.mdl-button[type="submit"] {
|
|
4702
4800
|
color: rgba(0, 0, 0, 0.54);
|
4703
4801
|
padding-bottom: 8px;
|
4704
4802
|
box-sizing: border-box; }
|
4705
|
-
.mdl-data-table th .mdl-data-
|
4706
|
-
|
4707
|
-
|
4708
|
-
|
4803
|
+
.mdl-data-table th .mdl-data-table__header--sorted-ascending, .mdl-data-table th .mdl-data-table__header--sorted-descending {
|
4804
|
+
color: rgba(0, 0, 0, 0.87); }
|
4805
|
+
.mdl-data-table th .mdl-data-table__header--sorted-ascending:before, .mdl-data-table th .mdl-data-table__header--sorted-descending:before {
|
4806
|
+
font-size: 16px;
|
4807
|
+
font-family: 'Material Icons';
|
4808
|
+
font-weight: normal;
|
4809
|
+
font-style: normal;
|
4810
|
+
font-size: 24px;
|
4811
|
+
line-height: 1;
|
4812
|
+
letter-spacing: normal;
|
4813
|
+
text-transform: none;
|
4814
|
+
display: inline-block;
|
4815
|
+
word-wrap: normal;
|
4816
|
+
-moz-font-feature-settings: 'liga';
|
4817
|
+
font-feature-settings: 'liga';
|
4818
|
+
-webkit-font-feature-settings: 'liga';
|
4819
|
+
-webkit-font-smoothing: antialiased; }
|
4820
|
+
.mdl-data-table th .mdl-data-table__header--sorted-ascending:before {
|
4821
|
+
content: "\e5d8"; }
|
4822
|
+
.mdl-data-table th .mdl-data-table__header--sorted-descending:before {
|
4823
|
+
content: "\e5db"; }
|
4709
4824
|
|
4710
4825
|
.mdl-data-table__select {
|
4711
4826
|
width: 16px; }
|
@@ -4768,6 +4883,235 @@ input.mdl-button[type="submit"] {
|
|
4768
4883
|
* -----Shadows
|
4769
4884
|
* -----Grid
|
4770
4885
|
* -----Data table
|
4886
|
+
* -----Dialog
|
4887
|
+
* -----Snackbar
|
4888
|
+
*
|
4889
|
+
* Even though all variables have the `!default` directive, most of them
|
4890
|
+
* should not be changed as they are dependent one another. This can cause
|
4891
|
+
* visual distortions (like alignment issues) that are hard to track down
|
4892
|
+
* and fix.
|
4893
|
+
*/
|
4894
|
+
/* ========== TYPOGRAPHY ========== */
|
4895
|
+
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
4896
|
+
page loading. For important text, such as the body, we want it to load
|
4897
|
+
immediately and not wait for the web font load, whereas for other sections,
|
4898
|
+
such as headers and titles, we're OK with things taking a bit longer to load.
|
4899
|
+
We do have some optional classes and parameters in the mixins, in case you
|
4900
|
+
definitely want to make sure you're using the preferred font and don't mind
|
4901
|
+
the performance hit.
|
4902
|
+
We should be able to improve on this once CSS Font Loading L3 becomes more
|
4903
|
+
widely available.
|
4904
|
+
*/
|
4905
|
+
/* ========== COLORS ========== */
|
4906
|
+
/**
|
4907
|
+
*
|
4908
|
+
* Material design color palettes.
|
4909
|
+
* @see http://www.google.com/design/spec/style/color.html
|
4910
|
+
*
|
4911
|
+
**/
|
4912
|
+
/**
|
4913
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
4914
|
+
*
|
4915
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
4916
|
+
* you may not use this file except in compliance with the License.
|
4917
|
+
* You may obtain a copy of the License at
|
4918
|
+
*
|
4919
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
4920
|
+
*
|
4921
|
+
* Unless required by applicable law or agreed to in writing, software
|
4922
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
4923
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
4924
|
+
* See the License for the specific language governing permissions and
|
4925
|
+
* limitations under the License.
|
4926
|
+
*/
|
4927
|
+
/* ========== Color Palettes ========== */
|
4928
|
+
/* colors.scss */
|
4929
|
+
/**
|
4930
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
4931
|
+
*
|
4932
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
4933
|
+
* you may not use this file except in compliance with the License.
|
4934
|
+
* You may obtain a copy of the License at
|
4935
|
+
*
|
4936
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
4937
|
+
*
|
4938
|
+
* Unless required by applicable law or agreed to in writing, software
|
4939
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
4940
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
4941
|
+
* See the License for the specific language governing permissions and
|
4942
|
+
* limitations under the License.
|
4943
|
+
*/
|
4944
|
+
/* ========== IMAGES ========== */
|
4945
|
+
/* ========== Color & Themes ========== */
|
4946
|
+
/* ========== Typography ========== */
|
4947
|
+
/* ========== Components ========== */
|
4948
|
+
/* ========== Standard Buttons ========== */
|
4949
|
+
/* ========== Icon Toggles ========== */
|
4950
|
+
/* ========== Radio Buttons ========== */
|
4951
|
+
/* ========== Ripple effect ========== */
|
4952
|
+
/* ========== Layout ========== */
|
4953
|
+
/* ========== Content Tabs ========== */
|
4954
|
+
/* ========== Checkboxes ========== */
|
4955
|
+
/* ========== Switches ========== */
|
4956
|
+
/* ========== Spinner ========== */
|
4957
|
+
/* ========== Text fields ========== */
|
4958
|
+
/* ========== Card ========== */
|
4959
|
+
/* ========== Sliders ========== */
|
4960
|
+
/* ========== Progress ========== */
|
4961
|
+
/* ========== List ========== */
|
4962
|
+
/* ========== Item ========== */
|
4963
|
+
/* ========== Dropdown menu ========== */
|
4964
|
+
/* ========== Tooltips ========== */
|
4965
|
+
/* ========== Footer ========== */
|
4966
|
+
/* TEXTFIELD */
|
4967
|
+
/* SWITCH */
|
4968
|
+
/* SPINNER */
|
4969
|
+
/* RADIO */
|
4970
|
+
/* MENU */
|
4971
|
+
/* LIST */
|
4972
|
+
/* LAYOUT */
|
4973
|
+
/* ICON TOGGLE */
|
4974
|
+
/* FOOTER */
|
4975
|
+
/*mega-footer*/
|
4976
|
+
/*mini-footer*/
|
4977
|
+
/* CHECKBOX */
|
4978
|
+
/* CARD */
|
4979
|
+
/* Card dimensions */
|
4980
|
+
/* Cover image */
|
4981
|
+
/* BUTTON */
|
4982
|
+
/**
|
4983
|
+
*
|
4984
|
+
* Dimensions
|
4985
|
+
*
|
4986
|
+
*/
|
4987
|
+
/* ANIMATION */
|
4988
|
+
/* PROGRESS */
|
4989
|
+
/* BADGE */
|
4990
|
+
/* SHADOWS */
|
4991
|
+
/* GRID */
|
4992
|
+
/* DATA TABLE */
|
4993
|
+
/* DIALOG */
|
4994
|
+
/* SNACKBAR */
|
4995
|
+
/* TOOLTIP */
|
4996
|
+
/**
|
4997
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
4998
|
+
*
|
4999
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
5000
|
+
* you may not use this file except in compliance with the License.
|
5001
|
+
* You may obtain a copy of the License at
|
5002
|
+
*
|
5003
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
5004
|
+
*
|
5005
|
+
* Unless required by applicable law or agreed to in writing, software
|
5006
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
5007
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
5008
|
+
* See the License for the specific language governing permissions and
|
5009
|
+
* limitations under the License.
|
5010
|
+
*/
|
5011
|
+
/* Typography */
|
5012
|
+
/* Shadows */
|
5013
|
+
/* Animations */
|
5014
|
+
/* Dialog */
|
5015
|
+
.mdl-dialog {
|
5016
|
+
border: none;
|
5017
|
+
box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.14), 0 11px 15px -7px rgba(0, 0, 0, 0.12), 0 24px 38px 3px rgba(0, 0, 0, 0.2);
|
5018
|
+
width: 280px; }
|
5019
|
+
.mdl-dialog__title {
|
5020
|
+
padding: 24px 24px 0;
|
5021
|
+
margin: 0;
|
5022
|
+
font-size: 2.5rem; }
|
5023
|
+
.mdl-dialog__actions {
|
5024
|
+
padding: 8px 8px 8px 24px;
|
5025
|
+
display: -webkit-flex;
|
5026
|
+
display: -ms-flexbox;
|
5027
|
+
display: flex;
|
5028
|
+
-webkit-flex-direction: row-reverse;
|
5029
|
+
-ms-flex-direction: row-reverse;
|
5030
|
+
flex-direction: row-reverse;
|
5031
|
+
-webkit-flex-wrap: wrap;
|
5032
|
+
-ms-flex-wrap: wrap;
|
5033
|
+
flex-wrap: wrap; }
|
5034
|
+
.mdl-dialog__actions > * {
|
5035
|
+
margin-right: 8px;
|
5036
|
+
height: 36px; }
|
5037
|
+
.mdl-dialog__actions > *:first-child {
|
5038
|
+
margin-right: 0; }
|
5039
|
+
.mdl-dialog__actions--full-width {
|
5040
|
+
padding: 0 0 8px 0; }
|
5041
|
+
.mdl-dialog__actions--full-width > * {
|
5042
|
+
height: 48px;
|
5043
|
+
-webkit-flex: 0 0 100%;
|
5044
|
+
-ms-flex: 0 0 100%;
|
5045
|
+
flex: 0 0 100%;
|
5046
|
+
padding-right: 16px;
|
5047
|
+
margin-right: 0;
|
5048
|
+
text-align: right; }
|
5049
|
+
.mdl-dialog__content {
|
5050
|
+
padding: 20px 24px 24px 24px;
|
5051
|
+
color: rgba(0,0,0, 0.54); }
|
5052
|
+
|
5053
|
+
/**
|
5054
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
5055
|
+
*
|
5056
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
5057
|
+
* you may not use this file except in compliance with the License.
|
5058
|
+
* You may obtain a copy of the License at
|
5059
|
+
*
|
5060
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
5061
|
+
*
|
5062
|
+
* Unless required by applicable law or agreed to in writing, software
|
5063
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
5064
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
5065
|
+
* See the License for the specific language governing permissions and
|
5066
|
+
* limitations under the License.
|
5067
|
+
*/
|
5068
|
+
/**
|
5069
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
5070
|
+
*
|
5071
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
5072
|
+
* you may not use this file except in compliance with the License.
|
5073
|
+
* You may obtain a copy of the License at
|
5074
|
+
*
|
5075
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
5076
|
+
*
|
5077
|
+
* Unless required by applicable law or agreed to in writing, software
|
5078
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
5079
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
5080
|
+
* See the License for the specific language governing permissions and
|
5081
|
+
* limitations under the License.
|
5082
|
+
*/
|
5083
|
+
/*------------------------------------* $CONTENTS
|
5084
|
+
\*------------------------------------*/
|
5085
|
+
/**
|
5086
|
+
* STYLE GUIDE VARIABLES------------------Declarations of Sass variables
|
5087
|
+
* -----Typography
|
5088
|
+
* -----Colors
|
5089
|
+
* -----Textfield
|
5090
|
+
* -----Switch
|
5091
|
+
* -----Spinner
|
5092
|
+
* -----Radio
|
5093
|
+
* -----Menu
|
5094
|
+
* -----List
|
5095
|
+
* -----Layout
|
5096
|
+
* -----Icon toggles
|
5097
|
+
* -----Footer
|
5098
|
+
* -----Column
|
5099
|
+
* -----Checkbox
|
5100
|
+
* -----Card
|
5101
|
+
* -----Button
|
5102
|
+
* -----Animation
|
5103
|
+
* -----Progress
|
5104
|
+
* -----Badge
|
5105
|
+
* -----Shadows
|
5106
|
+
* -----Grid
|
5107
|
+
* -----Data table
|
5108
|
+
* -----Dialog
|
5109
|
+
* -----Snackbar
|
5110
|
+
*
|
5111
|
+
* Even though all variables have the `!default` directive, most of them
|
5112
|
+
* should not be changed as they are dependent one another. This can cause
|
5113
|
+
* visual distortions (like alignment issues) that are hard to track down
|
5114
|
+
* and fix.
|
4771
5115
|
*/
|
4772
5116
|
/* ========== TYPOGRAPHY ========== */
|
4773
5117
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -4868,6 +5212,8 @@ input.mdl-button[type="submit"] {
|
|
4868
5212
|
/* SHADOWS */
|
4869
5213
|
/* GRID */
|
4870
5214
|
/* DATA TABLE */
|
5215
|
+
/* DIALOG */
|
5216
|
+
/* SNACKBAR */
|
4871
5217
|
/* TOOLTIP */
|
4872
5218
|
/**
|
4873
5219
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -4887,6 +5233,7 @@ input.mdl-button[type="submit"] {
|
|
4887
5233
|
/* Typography */
|
4888
5234
|
/* Shadows */
|
4889
5235
|
/* Animations */
|
5236
|
+
/* Dialog */
|
4890
5237
|
.mdl-mega-footer {
|
4891
5238
|
padding: 16px 40px;
|
4892
5239
|
color: rgb(158,158,158);
|
@@ -5078,7 +5425,7 @@ input.mdl-button[type="submit"] {
|
|
5078
5425
|
.mdl-mega-footer--heading-checkbox + .mdl-mega-footer__heading:after,
|
5079
5426
|
.mdl-mega-footer__heading-checkbox + .mdl-mega-footer--heading:after,
|
5080
5427
|
.mdl-mega-footer__heading-checkbox + .mdl-mega-footer__heading:after {
|
5081
|
-
|
5428
|
+
content: ''; }
|
5082
5429
|
.mdl-mega-footer--heading-checkbox:checked ~ .mdl-mega-footer--link-list,
|
5083
5430
|
.mdl-mega-footer--heading-checkbox:checked ~ .mdl-mega-footer__link-list,
|
5084
5431
|
.mdl-mega-footer--heading-checkbox:checked + .mdl-mega-footer__heading + .mdl-mega-footer__link-list,
|
@@ -5170,6 +5517,13 @@ input.mdl-button[type="submit"] {
|
|
5170
5517
|
* -----Shadows
|
5171
5518
|
* -----Grid
|
5172
5519
|
* -----Data table
|
5520
|
+
* -----Dialog
|
5521
|
+
* -----Snackbar
|
5522
|
+
*
|
5523
|
+
* Even though all variables have the `!default` directive, most of them
|
5524
|
+
* should not be changed as they are dependent one another. This can cause
|
5525
|
+
* visual distortions (like alignment issues) that are hard to track down
|
5526
|
+
* and fix.
|
5173
5527
|
*/
|
5174
5528
|
/* ========== TYPOGRAPHY ========== */
|
5175
5529
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -5270,16 +5624,16 @@ input.mdl-button[type="submit"] {
|
|
5270
5624
|
/* SHADOWS */
|
5271
5625
|
/* GRID */
|
5272
5626
|
/* DATA TABLE */
|
5627
|
+
/* DIALOG */
|
5628
|
+
/* SNACKBAR */
|
5273
5629
|
/* TOOLTIP */
|
5274
5630
|
.mdl-mini-footer {
|
5275
|
-
display: -webkit-box;
|
5276
5631
|
display: -webkit-flex;
|
5277
5632
|
display: -ms-flexbox;
|
5278
5633
|
display: flex;
|
5279
5634
|
-webkit-flex-flow: row wrap;
|
5280
5635
|
-ms-flex-flow: row wrap;
|
5281
5636
|
flex-flow: row wrap;
|
5282
|
-
-webkit-box-pack: justify;
|
5283
5637
|
-webkit-justify-content: space-between;
|
5284
5638
|
-ms-flex-pack: justify;
|
5285
5639
|
justify-content: space-between;
|
@@ -5294,7 +5648,6 @@ input.mdl-button[type="submit"] {
|
|
5294
5648
|
|
5295
5649
|
.mdl-mini-footer--link-list,
|
5296
5650
|
.mdl-mini-footer__link-list {
|
5297
|
-
display: -webkit-box;
|
5298
5651
|
display: -webkit-flex;
|
5299
5652
|
display: -ms-flexbox;
|
5300
5653
|
display: flex;
|
@@ -5321,7 +5674,6 @@ input.mdl-button[type="submit"] {
|
|
5321
5674
|
.mdl-mini-footer--left-section,
|
5322
5675
|
.mdl-mini-footer__left-section {
|
5323
5676
|
display: inline-block;
|
5324
|
-
-webkit-box-ordinal-group: 1;
|
5325
5677
|
-webkit-order: 0;
|
5326
5678
|
-ms-flex-order: 0;
|
5327
5679
|
order: 0; }
|
@@ -5329,7 +5681,6 @@ input.mdl-button[type="submit"] {
|
|
5329
5681
|
.mdl-mini-footer--right-section,
|
5330
5682
|
.mdl-mini-footer__right-section {
|
5331
5683
|
display: inline-block;
|
5332
|
-
-webkit-box-ordinal-group: 2;
|
5333
5684
|
-webkit-order: 1;
|
5334
5685
|
-ms-flex-order: 1;
|
5335
5686
|
order: 1; }
|
@@ -5398,6 +5749,13 @@ input.mdl-button[type="submit"] {
|
|
5398
5749
|
* -----Shadows
|
5399
5750
|
* -----Grid
|
5400
5751
|
* -----Data table
|
5752
|
+
* -----Dialog
|
5753
|
+
* -----Snackbar
|
5754
|
+
*
|
5755
|
+
* Even though all variables have the `!default` directive, most of them
|
5756
|
+
* should not be changed as they are dependent one another. This can cause
|
5757
|
+
* visual distortions (like alignment issues) that are hard to track down
|
5758
|
+
* and fix.
|
5401
5759
|
*/
|
5402
5760
|
/* ========== TYPOGRAPHY ========== */
|
5403
5761
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -5498,6 +5856,8 @@ input.mdl-button[type="submit"] {
|
|
5498
5856
|
/* SHADOWS */
|
5499
5857
|
/* GRID */
|
5500
5858
|
/* DATA TABLE */
|
5859
|
+
/* DIALOG */
|
5860
|
+
/* SNACKBAR */
|
5501
5861
|
/* TOOLTIP */
|
5502
5862
|
.mdl-icon-toggle {
|
5503
5863
|
position: relative;
|
@@ -5538,8 +5898,7 @@ input.mdl-button[type="submit"] {
|
|
5538
5898
|
text-align: center;
|
5539
5899
|
background-color: transparent;
|
5540
5900
|
will-change: background-color;
|
5541
|
-
|
5542
|
-
transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
|
5901
|
+
transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
|
5543
5902
|
.mdl-icon-toggle__label.material-icons {
|
5544
5903
|
line-height: 32px;
|
5545
5904
|
font-size: 24px; }
|
@@ -5548,8 +5907,7 @@ input.mdl-button[type="submit"] {
|
|
5548
5907
|
.mdl-icon-toggle.is-disabled .mdl-icon-toggle__label {
|
5549
5908
|
color: rgba(0,0,0, 0.26);
|
5550
5909
|
cursor: auto;
|
5551
|
-
|
5552
|
-
transition: none; }
|
5910
|
+
transition: none; }
|
5553
5911
|
.mdl-icon-toggle.is-focused .mdl-icon-toggle__label {
|
5554
5912
|
background-color: rgba(0,0,0, 0.12); }
|
5555
5913
|
.mdl-icon-toggle.is-focused.is-checked .mdl-icon-toggle__label {
|
@@ -5629,6 +5987,13 @@ input.mdl-button[type="submit"] {
|
|
5629
5987
|
* -----Shadows
|
5630
5988
|
* -----Grid
|
5631
5989
|
* -----Data table
|
5990
|
+
* -----Dialog
|
5991
|
+
* -----Snackbar
|
5992
|
+
*
|
5993
|
+
* Even though all variables have the `!default` directive, most of them
|
5994
|
+
* should not be changed as they are dependent one another. This can cause
|
5995
|
+
* visual distortions (like alignment issues) that are hard to track down
|
5996
|
+
* and fix.
|
5632
5997
|
*/
|
5633
5998
|
/* ========== TYPOGRAPHY ========== */
|
5634
5999
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -5729,6 +6094,8 @@ input.mdl-button[type="submit"] {
|
|
5729
6094
|
/* SHADOWS */
|
5730
6095
|
/* GRID */
|
5731
6096
|
/* DATA TABLE */
|
6097
|
+
/* DIALOG */
|
6098
|
+
/* SNACKBAR */
|
5732
6099
|
/* TOOLTIP */
|
5733
6100
|
/**
|
5734
6101
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -5748,61 +6115,332 @@ input.mdl-button[type="submit"] {
|
|
5748
6115
|
/* Typography */
|
5749
6116
|
/* Shadows */
|
5750
6117
|
/* Animations */
|
5751
|
-
|
6118
|
+
/* Dialog */
|
6119
|
+
.mdl-list {
|
5752
6120
|
display: block;
|
5753
|
-
|
5754
|
-
|
5755
|
-
border: none;
|
5756
|
-
position: absolute;
|
5757
|
-
overflow: visible;
|
5758
|
-
height: 0;
|
5759
|
-
width: 0;
|
5760
|
-
visibility: hidden;
|
5761
|
-
z-index: -1; }
|
5762
|
-
.mdl-menu__container.is-visible, .mdl-menu__container.is-animating {
|
5763
|
-
z-index: 999;
|
5764
|
-
visibility: visible; }
|
6121
|
+
padding: 8px 0;
|
6122
|
+
list-style: none; }
|
5765
6123
|
|
5766
|
-
.mdl-
|
5767
|
-
|
5768
|
-
|
5769
|
-
|
5770
|
-
|
5771
|
-
|
5772
|
-
|
5773
|
-
|
5774
|
-
|
5775
|
-
|
5776
|
-
|
5777
|
-
|
5778
|
-
|
5779
|
-
|
5780
|
-
|
5781
|
-
|
5782
|
-
|
5783
|
-
|
5784
|
-
|
5785
|
-
|
5786
|
-
|
5787
|
-
|
5788
|
-
|
5789
|
-
|
5790
|
-
|
5791
|
-
-webkit-
|
5792
|
-
-ms-
|
5793
|
-
|
5794
|
-
|
5795
|
-
|
5796
|
-
|
5797
|
-
|
5798
|
-
|
5799
|
-
|
5800
|
-
|
5801
|
-
|
5802
|
-
|
5803
|
-
|
5804
|
-
-webkit-
|
5805
|
-
-ms-
|
6124
|
+
.mdl-list__item {
|
6125
|
+
font-size: 14px;
|
6126
|
+
font-weight: 400;
|
6127
|
+
line-height: 24px;
|
6128
|
+
letter-spacing: 0;
|
6129
|
+
display: -webkit-flex;
|
6130
|
+
display: -ms-flexbox;
|
6131
|
+
display: flex;
|
6132
|
+
box-sizing: border-box;
|
6133
|
+
height: 48px;
|
6134
|
+
-webkit-flex-direction: row;
|
6135
|
+
-ms-flex-direction: row;
|
6136
|
+
flex-direction: row;
|
6137
|
+
-webkit-flex-wrap: nowrap;
|
6138
|
+
-ms-flex-wrap: nowrap;
|
6139
|
+
flex-wrap: nowrap;
|
6140
|
+
-webkit-align-items: center;
|
6141
|
+
-ms-flex-align: center;
|
6142
|
+
align-items: center;
|
6143
|
+
padding: 16px 16px 20px 16px;
|
6144
|
+
cursor: default; }
|
6145
|
+
.mdl-list__item .mdl-list__item-primary-content {
|
6146
|
+
-webkit-order: 0;
|
6147
|
+
-ms-flex-order: 0;
|
6148
|
+
order: 0;
|
6149
|
+
-webkit-flex-grow: 2;
|
6150
|
+
-ms-flex-positive: 2;
|
6151
|
+
flex-grow: 2;
|
6152
|
+
text-decoration: none; }
|
6153
|
+
.mdl-list__item .mdl-list__item-primary-content .material-icons {
|
6154
|
+
font-size: 40px;
|
6155
|
+
line-height: 0;
|
6156
|
+
vertical-align: middle;
|
6157
|
+
padding: 0 12px 0 0; }
|
6158
|
+
.mdl-list__item .mdl-list__item-secondary-content {
|
6159
|
+
display: -webkit-flex;
|
6160
|
+
display: -ms-flexbox;
|
6161
|
+
display: flex;
|
6162
|
+
-webkit-flex-flow: column;
|
6163
|
+
-ms-flex-flow: column;
|
6164
|
+
flex-flow: column;
|
6165
|
+
-webkit-align-items: flex-end;
|
6166
|
+
-ms-flex-align: end;
|
6167
|
+
align-items: flex-end; }
|
6168
|
+
.mdl-list__item .mdl-list__item-secondary-content .mdl-list__item-secondary-action label {
|
6169
|
+
display: inline; }
|
6170
|
+
.mdl-list__item .mdl-list__item-secondary-content .mdl-list__item-secondary-info {
|
6171
|
+
font-size: 12px;
|
6172
|
+
font-weight: 400;
|
6173
|
+
line-height: 1;
|
6174
|
+
letter-spacing: 0;
|
6175
|
+
margin-bottom: 10px;
|
6176
|
+
color: rgba(0,0,0, 0.54); }
|
6177
|
+
.mdl-list__item .mdl-list__item-secondary-content .mdl-list__item-sub-header {
|
6178
|
+
padding: 0 0 0 16px; }
|
6179
|
+
|
6180
|
+
.mdl-list__item-avatar {
|
6181
|
+
height: 56px; }
|
6182
|
+
|
6183
|
+
.mdl-list__item--two-line {
|
6184
|
+
height: 72px; }
|
6185
|
+
.mdl-list__item--two-line .mdl-list__item-primary-content .material-icons {
|
6186
|
+
vertical-align: text-bottom; }
|
6187
|
+
.mdl-list__item--two-line .mdl-list__item-primary-content .mdl-list__item-sub-title {
|
6188
|
+
font-size: 12px;
|
6189
|
+
font-weight: 400;
|
6190
|
+
line-height: 1;
|
6191
|
+
letter-spacing: 0;
|
6192
|
+
display: block;
|
6193
|
+
padding: 0 0 0 56px; }
|
6194
|
+
|
6195
|
+
.mdl-list__item--three-line {
|
6196
|
+
height: 88px; }
|
6197
|
+
.mdl-list__item--three-line .mdl-list__item-primary-content .material-icons {
|
6198
|
+
vertical-align: text-bottom; }
|
6199
|
+
.mdl-list__item--three-line .mdl-list__item-text-body {
|
6200
|
+
font-size: 12px;
|
6201
|
+
font-weight: 400;
|
6202
|
+
line-height: 1;
|
6203
|
+
letter-spacing: 0;
|
6204
|
+
color: rgba(0,0,0, 0.54);
|
6205
|
+
display: block;
|
6206
|
+
height: 24px;
|
6207
|
+
padding: 0 0 0 56px;
|
6208
|
+
overflow: hidden; }
|
6209
|
+
|
6210
|
+
/**
|
6211
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
6212
|
+
*
|
6213
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6214
|
+
* you may not use this file except in compliance with the License.
|
6215
|
+
* You may obtain a copy of the License at
|
6216
|
+
*
|
6217
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
6218
|
+
*
|
6219
|
+
* Unless required by applicable law or agreed to in writing, software
|
6220
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
6221
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
6222
|
+
* See the License for the specific language governing permissions and
|
6223
|
+
* limitations under the License.
|
6224
|
+
*/
|
6225
|
+
/**
|
6226
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
6227
|
+
*
|
6228
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6229
|
+
* you may not use this file except in compliance with the License.
|
6230
|
+
* You may obtain a copy of the License at
|
6231
|
+
*
|
6232
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
6233
|
+
*
|
6234
|
+
* Unless required by applicable law or agreed to in writing, software
|
6235
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
6236
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
6237
|
+
* See the License for the specific language governing permissions and
|
6238
|
+
* limitations under the License.
|
6239
|
+
*/
|
6240
|
+
/*------------------------------------* $CONTENTS
|
6241
|
+
\*------------------------------------*/
|
6242
|
+
/**
|
6243
|
+
* STYLE GUIDE VARIABLES------------------Declarations of Sass variables
|
6244
|
+
* -----Typography
|
6245
|
+
* -----Colors
|
6246
|
+
* -----Textfield
|
6247
|
+
* -----Switch
|
6248
|
+
* -----Spinner
|
6249
|
+
* -----Radio
|
6250
|
+
* -----Menu
|
6251
|
+
* -----List
|
6252
|
+
* -----Layout
|
6253
|
+
* -----Icon toggles
|
6254
|
+
* -----Footer
|
6255
|
+
* -----Column
|
6256
|
+
* -----Checkbox
|
6257
|
+
* -----Card
|
6258
|
+
* -----Button
|
6259
|
+
* -----Animation
|
6260
|
+
* -----Progress
|
6261
|
+
* -----Badge
|
6262
|
+
* -----Shadows
|
6263
|
+
* -----Grid
|
6264
|
+
* -----Data table
|
6265
|
+
* -----Dialog
|
6266
|
+
* -----Snackbar
|
6267
|
+
*
|
6268
|
+
* Even though all variables have the `!default` directive, most of them
|
6269
|
+
* should not be changed as they are dependent one another. This can cause
|
6270
|
+
* visual distortions (like alignment issues) that are hard to track down
|
6271
|
+
* and fix.
|
6272
|
+
*/
|
6273
|
+
/* ========== TYPOGRAPHY ========== */
|
6274
|
+
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
6275
|
+
page loading. For important text, such as the body, we want it to load
|
6276
|
+
immediately and not wait for the web font load, whereas for other sections,
|
6277
|
+
such as headers and titles, we're OK with things taking a bit longer to load.
|
6278
|
+
We do have some optional classes and parameters in the mixins, in case you
|
6279
|
+
definitely want to make sure you're using the preferred font and don't mind
|
6280
|
+
the performance hit.
|
6281
|
+
We should be able to improve on this once CSS Font Loading L3 becomes more
|
6282
|
+
widely available.
|
6283
|
+
*/
|
6284
|
+
/* ========== COLORS ========== */
|
6285
|
+
/**
|
6286
|
+
*
|
6287
|
+
* Material design color palettes.
|
6288
|
+
* @see http://www.google.com/design/spec/style/color.html
|
6289
|
+
*
|
6290
|
+
**/
|
6291
|
+
/**
|
6292
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
6293
|
+
*
|
6294
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6295
|
+
* you may not use this file except in compliance with the License.
|
6296
|
+
* You may obtain a copy of the License at
|
6297
|
+
*
|
6298
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
6299
|
+
*
|
6300
|
+
* Unless required by applicable law or agreed to in writing, software
|
6301
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
6302
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
6303
|
+
* See the License for the specific language governing permissions and
|
6304
|
+
* limitations under the License.
|
6305
|
+
*/
|
6306
|
+
/* ========== Color Palettes ========== */
|
6307
|
+
/* colors.scss */
|
6308
|
+
/**
|
6309
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
6310
|
+
*
|
6311
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6312
|
+
* you may not use this file except in compliance with the License.
|
6313
|
+
* You may obtain a copy of the License at
|
6314
|
+
*
|
6315
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
6316
|
+
*
|
6317
|
+
* Unless required by applicable law or agreed to in writing, software
|
6318
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
6319
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
6320
|
+
* See the License for the specific language governing permissions and
|
6321
|
+
* limitations under the License.
|
6322
|
+
*/
|
6323
|
+
/* ========== IMAGES ========== */
|
6324
|
+
/* ========== Color & Themes ========== */
|
6325
|
+
/* ========== Typography ========== */
|
6326
|
+
/* ========== Components ========== */
|
6327
|
+
/* ========== Standard Buttons ========== */
|
6328
|
+
/* ========== Icon Toggles ========== */
|
6329
|
+
/* ========== Radio Buttons ========== */
|
6330
|
+
/* ========== Ripple effect ========== */
|
6331
|
+
/* ========== Layout ========== */
|
6332
|
+
/* ========== Content Tabs ========== */
|
6333
|
+
/* ========== Checkboxes ========== */
|
6334
|
+
/* ========== Switches ========== */
|
6335
|
+
/* ========== Spinner ========== */
|
6336
|
+
/* ========== Text fields ========== */
|
6337
|
+
/* ========== Card ========== */
|
6338
|
+
/* ========== Sliders ========== */
|
6339
|
+
/* ========== Progress ========== */
|
6340
|
+
/* ========== List ========== */
|
6341
|
+
/* ========== Item ========== */
|
6342
|
+
/* ========== Dropdown menu ========== */
|
6343
|
+
/* ========== Tooltips ========== */
|
6344
|
+
/* ========== Footer ========== */
|
6345
|
+
/* TEXTFIELD */
|
6346
|
+
/* SWITCH */
|
6347
|
+
/* SPINNER */
|
6348
|
+
/* RADIO */
|
6349
|
+
/* MENU */
|
6350
|
+
/* LIST */
|
6351
|
+
/* LAYOUT */
|
6352
|
+
/* ICON TOGGLE */
|
6353
|
+
/* FOOTER */
|
6354
|
+
/*mega-footer*/
|
6355
|
+
/*mini-footer*/
|
6356
|
+
/* CHECKBOX */
|
6357
|
+
/* CARD */
|
6358
|
+
/* Card dimensions */
|
6359
|
+
/* Cover image */
|
6360
|
+
/* BUTTON */
|
6361
|
+
/**
|
6362
|
+
*
|
6363
|
+
* Dimensions
|
6364
|
+
*
|
6365
|
+
*/
|
6366
|
+
/* ANIMATION */
|
6367
|
+
/* PROGRESS */
|
6368
|
+
/* BADGE */
|
6369
|
+
/* SHADOWS */
|
6370
|
+
/* GRID */
|
6371
|
+
/* DATA TABLE */
|
6372
|
+
/* DIALOG */
|
6373
|
+
/* SNACKBAR */
|
6374
|
+
/* TOOLTIP */
|
6375
|
+
/**
|
6376
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
6377
|
+
*
|
6378
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
6379
|
+
* you may not use this file except in compliance with the License.
|
6380
|
+
* You may obtain a copy of the License at
|
6381
|
+
*
|
6382
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
6383
|
+
*
|
6384
|
+
* Unless required by applicable law or agreed to in writing, software
|
6385
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
6386
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
6387
|
+
* See the License for the specific language governing permissions and
|
6388
|
+
* limitations under the License.
|
6389
|
+
*/
|
6390
|
+
/* Typography */
|
6391
|
+
/* Shadows */
|
6392
|
+
/* Animations */
|
6393
|
+
/* Dialog */
|
6394
|
+
.mdl-menu__container {
|
6395
|
+
display: block;
|
6396
|
+
margin: 0;
|
6397
|
+
padding: 0;
|
6398
|
+
border: none;
|
6399
|
+
position: absolute;
|
6400
|
+
overflow: visible;
|
6401
|
+
height: 0;
|
6402
|
+
width: 0;
|
6403
|
+
visibility: hidden;
|
6404
|
+
z-index: -1; }
|
6405
|
+
.mdl-menu__container.is-visible, .mdl-menu__container.is-animating {
|
6406
|
+
z-index: 999;
|
6407
|
+
visibility: visible; }
|
6408
|
+
|
6409
|
+
.mdl-menu__outline {
|
6410
|
+
display: block;
|
6411
|
+
background: rgb(255,255,255);
|
6412
|
+
margin: 0;
|
6413
|
+
padding: 0;
|
6414
|
+
border: none;
|
6415
|
+
border-radius: 2px;
|
6416
|
+
position: absolute;
|
6417
|
+
top: 0;
|
6418
|
+
left: 0;
|
6419
|
+
overflow: hidden;
|
6420
|
+
opacity: 0;
|
6421
|
+
-webkit-transform: scale(0);
|
6422
|
+
transform: scale(0);
|
6423
|
+
-webkit-transform-origin: 0 0;
|
6424
|
+
transform-origin: 0 0;
|
6425
|
+
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
6426
|
+
will-change: transform;
|
6427
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
6428
|
+
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
6429
|
+
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
6430
|
+
z-index: -1; }
|
6431
|
+
.mdl-menu__container.is-visible .mdl-menu__outline {
|
6432
|
+
opacity: 1;
|
6433
|
+
-webkit-transform: scale(1);
|
6434
|
+
transform: scale(1);
|
6435
|
+
z-index: 999; }
|
6436
|
+
.mdl-menu__outline.mdl-menu--bottom-right {
|
6437
|
+
-webkit-transform-origin: 100% 0;
|
6438
|
+
transform-origin: 100% 0; }
|
6439
|
+
.mdl-menu__outline.mdl-menu--top-left {
|
6440
|
+
-webkit-transform-origin: 0 100%;
|
6441
|
+
transform-origin: 0 100%; }
|
6442
|
+
.mdl-menu__outline.mdl-menu--top-right {
|
6443
|
+
-webkit-transform-origin: 100% 100%;
|
5806
6444
|
transform-origin: 100% 100%; }
|
5807
6445
|
|
5808
6446
|
.mdl-menu {
|
@@ -5822,8 +6460,7 @@ input.mdl-button[type="submit"] {
|
|
5822
6460
|
opacity: 1;
|
5823
6461
|
z-index: 999; }
|
5824
6462
|
.mdl-menu.is-animating {
|
5825
|
-
|
5826
|
-
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), clip 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
|
6463
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), clip 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
|
5827
6464
|
.mdl-menu.mdl-menu--bottom-right {
|
5828
6465
|
left: auto;
|
5829
6466
|
right: 0; }
|
@@ -5860,8 +6497,7 @@ input.mdl-button[type="submit"] {
|
|
5860
6497
|
line-height: 48px;
|
5861
6498
|
white-space: nowrap;
|
5862
6499
|
opacity: 0;
|
5863
|
-
|
5864
|
-
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
6500
|
+
transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
5865
6501
|
-webkit-user-select: none;
|
5866
6502
|
-moz-user-select: none;
|
5867
6503
|
-ms-user-select: none;
|
@@ -5870,15 +6506,17 @@ input.mdl-button[type="submit"] {
|
|
5870
6506
|
opacity: 1; }
|
5871
6507
|
.mdl-menu__item::-moz-focus-inner {
|
5872
6508
|
border: 0; }
|
5873
|
-
.mdl-menu__item
|
6509
|
+
.mdl-menu__item--full-bleed-divider {
|
6510
|
+
border-bottom: 1px solid rgba(0,0,0, 0.12); }
|
6511
|
+
.mdl-menu__item[disabled], .mdl-menu__item[data-mdl-disabled] {
|
5874
6512
|
color: rgb(189,189,189);
|
5875
6513
|
background-color: transparent;
|
5876
6514
|
cursor: auto; }
|
5877
|
-
.mdl-menu__item[disabled]:hover {
|
6515
|
+
.mdl-menu__item[disabled]:hover, .mdl-menu__item[data-mdl-disabled]:hover {
|
5878
6516
|
background-color: transparent; }
|
5879
|
-
.mdl-menu__item[disabled]:focus {
|
6517
|
+
.mdl-menu__item[disabled]:focus, .mdl-menu__item[data-mdl-disabled]:focus {
|
5880
6518
|
background-color: transparent; }
|
5881
|
-
.mdl-menu__item[disabled] .mdl-ripple {
|
6519
|
+
.mdl-menu__item[disabled] .mdl-ripple, .mdl-menu__item[data-mdl-disabled] .mdl-ripple {
|
5882
6520
|
background: transparent; }
|
5883
6521
|
.mdl-menu__item:hover {
|
5884
6522
|
background-color: rgb(238,238,238); }
|
@@ -5953,6 +6591,13 @@ input.mdl-button[type="submit"] {
|
|
5953
6591
|
* -----Shadows
|
5954
6592
|
* -----Grid
|
5955
6593
|
* -----Data table
|
6594
|
+
* -----Dialog
|
6595
|
+
* -----Snackbar
|
6596
|
+
*
|
6597
|
+
* Even though all variables have the `!default` directive, most of them
|
6598
|
+
* should not be changed as they are dependent one another. This can cause
|
6599
|
+
* visual distortions (like alignment issues) that are hard to track down
|
6600
|
+
* and fix.
|
5956
6601
|
*/
|
5957
6602
|
/* ========== TYPOGRAPHY ========== */
|
5958
6603
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -6053,12 +6698,15 @@ input.mdl-button[type="submit"] {
|
|
6053
6698
|
/* SHADOWS */
|
6054
6699
|
/* GRID */
|
6055
6700
|
/* DATA TABLE */
|
6701
|
+
/* DIALOG */
|
6702
|
+
/* SNACKBAR */
|
6056
6703
|
/* TOOLTIP */
|
6057
6704
|
.mdl-progress {
|
6058
6705
|
display: block;
|
6059
6706
|
position: relative;
|
6060
6707
|
height: 4px;
|
6061
|
-
width: 500px;
|
6708
|
+
width: 500px;
|
6709
|
+
max-width: 100%; }
|
6062
6710
|
|
6063
6711
|
.mdl-progress > .bar {
|
6064
6712
|
display: block;
|
@@ -6066,8 +6714,7 @@ input.mdl-button[type="submit"] {
|
|
6066
6714
|
top: 0;
|
6067
6715
|
bottom: 0;
|
6068
6716
|
width: 0%;
|
6069
|
-
|
6070
|
-
transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
|
6717
|
+
transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
|
6071
6718
|
|
6072
6719
|
.mdl-progress > .progressbar {
|
6073
6720
|
background-color: rgb(63,81,181);
|
@@ -6075,7 +6722,6 @@ input.mdl-button[type="submit"] {
|
|
6075
6722
|
left: 0; }
|
6076
6723
|
|
6077
6724
|
.mdl-progress > .bufferbar {
|
6078
|
-
background-image: -webkit-linear-gradient(left, rgba(255,255,255, 0.7), rgba(255,255,255, 0.7)), -webkit-linear-gradient(left, rgb(63,81,181), rgb(63,81,181));
|
6079
6725
|
background-image: linear-gradient(to right, rgba(255,255,255, 0.7), rgba(255,255,255, 0.7)), linear-gradient(to right, rgb(63,81,181), rgb(63,81,181));
|
6080
6726
|
z-index: 0;
|
6081
6727
|
left: 0; }
|
@@ -6084,16 +6730,17 @@ input.mdl-button[type="submit"] {
|
|
6084
6730
|
right: 0; }
|
6085
6731
|
|
6086
6732
|
@supports (-webkit-appearance: none) {
|
6733
|
+
.mdl-progress:not(.mdl-progress--indeterminate):not(.mdl-progress--indeterminate) > .auxbar,
|
6087
6734
|
.mdl-progress:not(.mdl-progress__indeterminate):not(.mdl-progress__indeterminate) > .auxbar {
|
6088
|
-
background-image: -webkit-linear-gradient(left, rgba(255,255,255, 0.7), rgba(255,255,255, 0.7)), -webkit-linear-gradient(left, rgb(63,81,181), rgb(63,81,181));
|
6089
6735
|
background-image: linear-gradient(to right, rgba(255,255,255, 0.7), rgba(255,255,255, 0.7)), linear-gradient(to right, rgb(63,81,181), rgb(63,81,181));
|
6090
6736
|
-webkit-mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cjxzdmcgd2lkdGg9IjEyIiBoZWlnaHQ9IjQiIHZpZXdQb3J0PSIwIDAgMTIgNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxlbGxpcHNlIGN4PSIyIiBjeT0iMiIgcng9IjIiIHJ5PSIyIj4KICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSIyIiB0bz0iLTEwIiBkdXI9IjAuNnMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogIDwvZWxsaXBzZT4KICA8ZWxsaXBzZSBjeD0iMTQiIGN5PSIyIiByeD0iMiIgcnk9IjIiIGNsYXNzPSJsb2FkZXIiPgogICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iY3giIGZyb209IjE0IiB0bz0iMiIgZHVyPSIwLjZzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4KICA8L2VsbGlwc2U+Cjwvc3ZnPgo=");
|
6091
6737
|
mask: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIj8+Cjxzdmcgd2lkdGg9IjEyIiBoZWlnaHQ9IjQiIHZpZXdQb3J0PSIwIDAgMTIgNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgogIDxlbGxpcHNlIGN4PSIyIiBjeT0iMiIgcng9IjIiIHJ5PSIyIj4KICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImN4IiBmcm9tPSIyIiB0bz0iLTEwIiBkdXI9IjAuNnMiIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPgogIDwvZWxsaXBzZT4KICA8ZWxsaXBzZSBjeD0iMTQiIGN5PSIyIiByeD0iMiIgcnk9IjIiIGNsYXNzPSJsb2FkZXIiPgogICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iY3giIGZyb209IjE0IiB0bz0iMiIgZHVyPSIwLjZzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4KICA8L2VsbGlwc2U+Cjwvc3ZnPgo="); } }
|
6092
6738
|
|
6739
|
+
.mdl-progress:not(.mdl-progress--indeterminate) > .auxbar,
|
6093
6740
|
.mdl-progress:not(.mdl-progress__indeterminate) > .auxbar {
|
6094
|
-
background-image: -webkit-linear-gradient(left, rgba(255,255,255, 0.9), rgba(255,255,255, 0.9)), -webkit-linear-gradient(left, rgb(63,81,181), rgb(63,81,181));
|
6095
6741
|
background-image: linear-gradient(to right, rgba(255,255,255, 0.9), rgba(255,255,255, 0.9)), linear-gradient(to right, rgb(63,81,181), rgb(63,81,181)); }
|
6096
6742
|
|
6743
|
+
.mdl-progress.mdl-progress--indeterminate > .bar1,
|
6097
6744
|
.mdl-progress.mdl-progress__indeterminate > .bar1 {
|
6098
6745
|
background-color: rgb(63,81,181);
|
6099
6746
|
-webkit-animation-name: indeterminate1;
|
@@ -6105,6 +6752,7 @@ input.mdl-button[type="submit"] {
|
|
6105
6752
|
-webkit-animation-timing-function: linear;
|
6106
6753
|
animation-timing-function: linear; }
|
6107
6754
|
|
6755
|
+
.mdl-progress.mdl-progress--indeterminate > .bar3,
|
6108
6756
|
.mdl-progress.mdl-progress__indeterminate > .bar3 {
|
6109
6757
|
background-image: none;
|
6110
6758
|
background-color: rgb(63,81,181);
|
@@ -6222,6 +6870,13 @@ input.mdl-button[type="submit"] {
|
|
6222
6870
|
* -----Shadows
|
6223
6871
|
* -----Grid
|
6224
6872
|
* -----Data table
|
6873
|
+
* -----Dialog
|
6874
|
+
* -----Snackbar
|
6875
|
+
*
|
6876
|
+
* Even though all variables have the `!default` directive, most of them
|
6877
|
+
* should not be changed as they are dependent one another. This can cause
|
6878
|
+
* visual distortions (like alignment issues) that are hard to track down
|
6879
|
+
* and fix.
|
6225
6880
|
*/
|
6226
6881
|
/* ========== TYPOGRAPHY ========== */
|
6227
6882
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -6322,6 +6977,8 @@ input.mdl-button[type="submit"] {
|
|
6322
6977
|
/* SHADOWS */
|
6323
6978
|
/* GRID */
|
6324
6979
|
/* DATA TABLE */
|
6980
|
+
/* DIALOG */
|
6981
|
+
/* SNACKBAR */
|
6325
6982
|
/* TOOLTIP */
|
6326
6983
|
/**
|
6327
6984
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -6341,8 +6998,8 @@ input.mdl-button[type="submit"] {
|
|
6341
6998
|
/* Typography */
|
6342
6999
|
/* Shadows */
|
6343
7000
|
/* Animations */
|
7001
|
+
/* Dialog */
|
6344
7002
|
.mdl-navigation {
|
6345
|
-
display: -webkit-box;
|
6346
7003
|
display: -webkit-flex;
|
6347
7004
|
display: -ms-flexbox;
|
6348
7005
|
display: flex;
|
@@ -6354,19 +7011,21 @@ input.mdl-button[type="submit"] {
|
|
6354
7011
|
.mdl-navigation__link {
|
6355
7012
|
color: rgb(66,66,66);
|
6356
7013
|
text-decoration: none;
|
6357
|
-
|
6358
|
-
font-size:
|
6359
|
-
|
7014
|
+
margin: 0;
|
7015
|
+
font-size: 14px;
|
7016
|
+
font-weight: 400;
|
7017
|
+
line-height: 24px;
|
7018
|
+
letter-spacing: 0;
|
7019
|
+
opacity: 0.87; }
|
7020
|
+
.mdl-navigation__link .material-icons {
|
7021
|
+
vertical-align: middle; }
|
6360
7022
|
|
6361
7023
|
.mdl-layout {
|
6362
7024
|
width: 100%;
|
6363
7025
|
height: 100%;
|
6364
|
-
display: -webkit-box;
|
6365
7026
|
display: -webkit-flex;
|
6366
7027
|
display: -ms-flexbox;
|
6367
7028
|
display: flex;
|
6368
|
-
-webkit-box-orient: vertical;
|
6369
|
-
-webkit-box-direction: normal;
|
6370
7029
|
-webkit-flex-direction: column;
|
6371
7030
|
-ms-flex-direction: column;
|
6372
7031
|
flex-direction: column;
|
@@ -6399,18 +7058,14 @@ input.mdl-button[type="submit"] {
|
|
6399
7058
|
box-sizing: border-box; }
|
6400
7059
|
|
6401
7060
|
.mdl-layout-spacer {
|
6402
|
-
-webkit-box-flex: 1;
|
6403
7061
|
-webkit-flex-grow: 1;
|
6404
7062
|
-ms-flex-positive: 1;
|
6405
7063
|
flex-grow: 1; }
|
6406
7064
|
|
6407
7065
|
.mdl-layout__drawer {
|
6408
|
-
display: -webkit-box;
|
6409
7066
|
display: -webkit-flex;
|
6410
7067
|
display: -ms-flexbox;
|
6411
7068
|
display: flex;
|
6412
|
-
-webkit-box-orient: vertical;
|
6413
|
-
-webkit-box-direction: normal;
|
6414
7069
|
-webkit-flex-direction: column;
|
6415
7070
|
-ms-flex-direction: column;
|
6416
7071
|
flex-direction: column;
|
@@ -6428,24 +7083,21 @@ input.mdl-button[type="submit"] {
|
|
6428
7083
|
border-right: 1px solid rgb(224,224,224);
|
6429
7084
|
background: rgb(250,250,250);
|
6430
7085
|
-webkit-transform: translateX(-250px);
|
6431
|
-
-ms-transform: translateX(-250px);
|
6432
7086
|
transform: translateX(-250px);
|
6433
7087
|
-webkit-transform-style: preserve-3d;
|
6434
7088
|
transform-style: preserve-3d;
|
6435
7089
|
will-change: transform;
|
6436
|
-
|
6437
|
-
|
6438
|
-
|
6439
|
-
|
6440
|
-
|
6441
|
-
transition-property: transform;
|
7090
|
+
transition-duration: 0.2s;
|
7091
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
7092
|
+
transition-property: -webkit-transform;
|
7093
|
+
transition-property: transform;
|
7094
|
+
transition-property: transform, -webkit-transform;
|
6442
7095
|
color: rgb(66,66,66);
|
6443
7096
|
overflow: visible;
|
6444
7097
|
overflow-y: auto;
|
6445
7098
|
z-index: 5; }
|
6446
7099
|
.mdl-layout__drawer.is-visible {
|
6447
7100
|
-webkit-transform: translateX(0);
|
6448
|
-
-ms-transform: translateX(0);
|
6449
7101
|
transform: translateX(0); }
|
6450
7102
|
.mdl-layout__drawer.is-visible ~ .mdl-layout__content.mdl-layout__content {
|
6451
7103
|
overflow: hidden; }
|
@@ -6463,14 +7115,12 @@ input.mdl-button[type="submit"] {
|
|
6463
7115
|
line-height: 56px;
|
6464
7116
|
padding-left: 16px; } }
|
6465
7117
|
.mdl-layout__drawer .mdl-navigation {
|
6466
|
-
-webkit-box-orient: vertical;
|
6467
|
-
-webkit-box-direction: normal;
|
6468
7118
|
-webkit-flex-direction: column;
|
6469
7119
|
-ms-flex-direction: column;
|
6470
7120
|
flex-direction: column;
|
6471
|
-
-webkit-box-align: stretch;
|
6472
7121
|
-webkit-align-items: stretch;
|
6473
7122
|
-ms-flex-align: stretch;
|
7123
|
+
-ms-grid-row-align: stretch;
|
6474
7124
|
align-items: stretch;
|
6475
7125
|
padding-top: 16px; }
|
6476
7126
|
.mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
|
@@ -6492,7 +7142,6 @@ input.mdl-button[type="submit"] {
|
|
6492
7142
|
@media screen and (min-width: 1025px) {
|
6493
7143
|
.mdl-layout--fixed-drawer > .mdl-layout__drawer {
|
6494
7144
|
-webkit-transform: translateX(0);
|
6495
|
-
-ms-transform: translateX(0);
|
6496
7145
|
transform: translateX(0); } }
|
6497
7146
|
|
6498
7147
|
.mdl-layout__drawer-button {
|
@@ -6528,22 +7177,22 @@ input.mdl-button[type="submit"] {
|
|
6528
7177
|
color: rgba(0, 0, 0, 0.5); } }
|
6529
7178
|
@media screen and (min-width: 1025px) {
|
6530
7179
|
.mdl-layout--fixed-drawer > .mdl-layout__drawer-button {
|
7180
|
+
display: none; }
|
7181
|
+
.mdl-layout--no-desktop-drawer-button .mdl-layout__drawer-button {
|
6531
7182
|
display: none; } }
|
7183
|
+
.mdl-layout--no-drawer-button .mdl-layout__drawer-button {
|
7184
|
+
display: none; }
|
6532
7185
|
|
6533
7186
|
.mdl-layout__header {
|
6534
|
-
display: -webkit-box;
|
6535
7187
|
display: -webkit-flex;
|
6536
7188
|
display: -ms-flexbox;
|
6537
7189
|
display: flex;
|
6538
|
-
-webkit-box-orient: vertical;
|
6539
|
-
-webkit-box-direction: normal;
|
6540
7190
|
-webkit-flex-direction: column;
|
6541
7191
|
-ms-flex-direction: column;
|
6542
7192
|
flex-direction: column;
|
6543
7193
|
-webkit-flex-wrap: nowrap;
|
6544
7194
|
-ms-flex-wrap: nowrap;
|
6545
7195
|
flex-wrap: nowrap;
|
6546
|
-
-webkit-box-pack: start;
|
6547
7196
|
-webkit-justify-content: flex-start;
|
6548
7197
|
-ms-flex-pack: start;
|
6549
7198
|
justify-content: flex-start;
|
@@ -6561,12 +7210,9 @@ input.mdl-button[type="submit"] {
|
|
6561
7210
|
background-color: rgb(63,81,181);
|
6562
7211
|
color: rgb(255,255,255);
|
6563
7212
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
6564
|
-
|
6565
|
-
|
6566
|
-
|
6567
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
6568
|
-
-webkit-transition-property: max-height, box-shadow;
|
6569
|
-
transition-property: max-height, box-shadow; }
|
7213
|
+
transition-duration: 0.2s;
|
7214
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
7215
|
+
transition-property: max-height, box-shadow; }
|
6570
7216
|
@media screen and (max-width: 1024px) {
|
6571
7217
|
.mdl-layout__header {
|
6572
7218
|
min-height: 56px; } }
|
@@ -6605,7 +7251,6 @@ input.mdl-button[type="submit"] {
|
|
6605
7251
|
.mdl-layout__header {
|
6606
7252
|
display: none; }
|
6607
7253
|
.mdl-layout--fixed-header > .mdl-layout__header {
|
6608
|
-
display: -webkit-box;
|
6609
7254
|
display: -webkit-flex;
|
6610
7255
|
display: -ms-flexbox;
|
6611
7256
|
display: flex; } }
|
@@ -6625,14 +7270,15 @@ input.mdl-button[type="submit"] {
|
|
6625
7270
|
overflow: hidden; }
|
6626
7271
|
.mdl-layout__header--waterfall.is-casting-shadow {
|
6627
7272
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
|
7273
|
+
.mdl-layout__header--waterfall.mdl-layout__header--waterfall-hide-top {
|
7274
|
+
-webkit-justify-content: flex-end;
|
7275
|
+
-ms-flex-pack: end;
|
7276
|
+
justify-content: flex-end; }
|
6628
7277
|
|
6629
7278
|
.mdl-layout__header-row {
|
6630
|
-
display: -webkit-box;
|
6631
7279
|
display: -webkit-flex;
|
6632
7280
|
display: -ms-flexbox;
|
6633
7281
|
display: flex;
|
6634
|
-
-webkit-box-orient: horizontal;
|
6635
|
-
-webkit-box-direction: normal;
|
6636
7282
|
-webkit-flex-direction: row;
|
6637
7283
|
-ms-flex-direction: row;
|
6638
7284
|
flex-direction: row;
|
@@ -6646,17 +7292,23 @@ input.mdl-button[type="submit"] {
|
|
6646
7292
|
-webkit-align-self: stretch;
|
6647
7293
|
-ms-flex-item-align: stretch;
|
6648
7294
|
align-self: stretch;
|
6649
|
-
-webkit-box-align: center;
|
6650
7295
|
-webkit-align-items: center;
|
6651
7296
|
-ms-flex-align: center;
|
6652
7297
|
align-items: center;
|
6653
7298
|
height: 64px;
|
6654
7299
|
margin: 0;
|
6655
7300
|
padding: 0 40px 0 80px; }
|
7301
|
+
.mdl-layout--no-drawer-button .mdl-layout__header-row {
|
7302
|
+
padding-left: 40px; }
|
7303
|
+
@media screen and (min-width: 1025px) {
|
7304
|
+
.mdl-layout--no-desktop-drawer-button .mdl-layout__header-row {
|
7305
|
+
padding-left: 40px; } }
|
6656
7306
|
@media screen and (max-width: 1024px) {
|
6657
7307
|
.mdl-layout__header-row {
|
6658
7308
|
height: 56px;
|
6659
|
-
padding: 0 16px 0 72px; }
|
7309
|
+
padding: 0 16px 0 72px; }
|
7310
|
+
.mdl-layout--no-drawer-button .mdl-layout__header-row {
|
7311
|
+
padding-left: 16px; } }
|
6660
7312
|
.mdl-layout__header-row > * {
|
6661
7313
|
-webkit-flex-shrink: 0;
|
6662
7314
|
-ms-flex-negative: 0;
|
@@ -6667,14 +7319,12 @@ input.mdl-button[type="submit"] {
|
|
6667
7319
|
margin: 0;
|
6668
7320
|
padding: 0;
|
6669
7321
|
height: 64px;
|
6670
|
-
-webkit-box-orient: horizontal;
|
6671
|
-
-webkit-box-direction: normal;
|
6672
7322
|
-webkit-flex-direction: row;
|
6673
7323
|
-ms-flex-direction: row;
|
6674
7324
|
flex-direction: row;
|
6675
|
-
-webkit-box-align: center;
|
6676
7325
|
-webkit-align-items: center;
|
6677
7326
|
-ms-flex-align: center;
|
7327
|
+
-ms-grid-row-align: center;
|
6678
7328
|
align-items: center; }
|
6679
7329
|
@media screen and (max-width: 1024px) {
|
6680
7330
|
.mdl-layout__header-row .mdl-navigation {
|
@@ -6698,22 +7348,29 @@ input.mdl-button[type="submit"] {
|
|
6698
7348
|
width: 100%;
|
6699
7349
|
z-index: 4;
|
6700
7350
|
visibility: hidden;
|
6701
|
-
|
6702
|
-
|
6703
|
-
-
|
6704
|
-
transition-duration: 0.2s;
|
6705
|
-
-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
6706
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
7351
|
+
transition-property: background-color;
|
7352
|
+
transition-duration: 0.2s;
|
7353
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
6707
7354
|
.mdl-layout__obfuscator.is-visible {
|
6708
7355
|
background-color: rgba(0, 0, 0, 0.5);
|
6709
7356
|
visibility: visible; }
|
7357
|
+
@supports (pointer-events: auto) {
|
7358
|
+
.mdl-layout__obfuscator {
|
7359
|
+
background-color: rgba(0, 0, 0, 0.5);
|
7360
|
+
opacity: 0;
|
7361
|
+
transition-property: opacity;
|
7362
|
+
visibility: visible;
|
7363
|
+
pointer-events: none; }
|
7364
|
+
.mdl-layout__obfuscator.is-visible {
|
7365
|
+
pointer-events: auto;
|
7366
|
+
opacity: 1; } }
|
6710
7367
|
|
6711
7368
|
.mdl-layout__content {
|
6712
7369
|
-ms-flex: 0 1 auto;
|
7370
|
+
position: relative;
|
6713
7371
|
display: inline-block;
|
6714
7372
|
overflow-y: auto;
|
6715
7373
|
overflow-x: hidden;
|
6716
|
-
-webkit-box-flex: 1;
|
6717
7374
|
-webkit-flex-grow: 1;
|
6718
7375
|
-ms-flex-positive: 1;
|
6719
7376
|
flex-grow: 1;
|
@@ -6735,7 +7392,6 @@ input.mdl-button[type="submit"] {
|
|
6735
7392
|
margin: 0;
|
6736
7393
|
width: calc(100% - 112px);
|
6737
7394
|
padding: 0 0 0 56px;
|
6738
|
-
display: -webkit-box;
|
6739
7395
|
display: -webkit-flex;
|
6740
7396
|
display: -ms-flexbox;
|
6741
7397
|
display: flex;
|
@@ -6744,10 +7400,20 @@ input.mdl-button[type="submit"] {
|
|
6744
7400
|
overflow-x: scroll; }
|
6745
7401
|
.mdl-layout__tab-bar::-webkit-scrollbar {
|
6746
7402
|
display: none; }
|
7403
|
+
.mdl-layout--no-drawer-button .mdl-layout__tab-bar {
|
7404
|
+
padding-left: 16px;
|
7405
|
+
width: calc(100% - 32px); }
|
7406
|
+
@media screen and (min-width: 1025px) {
|
7407
|
+
.mdl-layout--no-desktop-drawer-button .mdl-layout__tab-bar {
|
7408
|
+
padding-left: 16px;
|
7409
|
+
width: calc(100% - 32px); } }
|
6747
7410
|
@media screen and (max-width: 1024px) {
|
6748
7411
|
.mdl-layout__tab-bar {
|
6749
7412
|
width: calc(100% - 60px);
|
6750
|
-
padding: 0 0 0 60px; }
|
7413
|
+
padding: 0 0 0 60px; }
|
7414
|
+
.mdl-layout--no-drawer-button .mdl-layout__tab-bar {
|
7415
|
+
width: calc(100% - 8px);
|
7416
|
+
padding-left: 4px; } }
|
6751
7417
|
.mdl-layout--fixed-tabs .mdl-layout__tab-bar {
|
6752
7418
|
padding: 0;
|
6753
7419
|
overflow: hidden;
|
@@ -6760,7 +7426,6 @@ input.mdl-button[type="submit"] {
|
|
6760
7426
|
border: none;
|
6761
7427
|
margin: 0;
|
6762
7428
|
z-index: 2;
|
6763
|
-
-webkit-box-flex: 0;
|
6764
7429
|
-webkit-flex-grow: 0;
|
6765
7430
|
-ms-flex-positive: 0;
|
6766
7431
|
flex-grow: 0;
|
@@ -6788,6 +7453,13 @@ input.mdl-button[type="submit"] {
|
|
6788
7453
|
-moz-user-select: none;
|
6789
7454
|
-ms-user-select: none;
|
6790
7455
|
user-select: none; }
|
7456
|
+
.mdl-layout--no-desktop-drawer-button .mdl-layout__tab-bar-button,
|
7457
|
+
.mdl-layout--no-drawer-button .mdl-layout__tab-bar-button {
|
7458
|
+
width: 16px; }
|
7459
|
+
.mdl-layout--no-desktop-drawer-button .mdl-layout__tab-bar-button .material-icons,
|
7460
|
+
.mdl-layout--no-drawer-button .mdl-layout__tab-bar-button .material-icons {
|
7461
|
+
position: relative;
|
7462
|
+
left: -4px; }
|
6791
7463
|
@media screen and (max-width: 1024px) {
|
6792
7464
|
.mdl-layout__tab-bar-button {
|
6793
7465
|
display: none;
|
@@ -6812,7 +7484,6 @@ input.mdl-button[type="submit"] {
|
|
6812
7484
|
float: left;
|
6813
7485
|
position: relative;
|
6814
7486
|
display: block;
|
6815
|
-
-webkit-box-flex: 0;
|
6816
7487
|
-webkit-flex-grow: 0;
|
6817
7488
|
-ms-flex-positive: 0;
|
6818
7489
|
flex-grow: 0;
|
@@ -6833,7 +7504,6 @@ input.mdl-button[type="submit"] {
|
|
6833
7504
|
padding: 0 12px 0 12px; } }
|
6834
7505
|
.mdl-layout--fixed-tabs .mdl-layout__tab {
|
6835
7506
|
float: none;
|
6836
|
-
-webkit-box-flex: 1;
|
6837
7507
|
-webkit-flex-grow: 1;
|
6838
7508
|
-ms-flex-positive: 1;
|
6839
7509
|
flex-grow: 1;
|
@@ -6851,8 +7521,7 @@ input.mdl-button[type="submit"] {
|
|
6851
7521
|
background: rgb(255,64,129);
|
6852
7522
|
-webkit-animation: border-expand 0.2s cubic-bezier(0.4, 0, 0.4, 1) 0.01s alternate forwards;
|
6853
7523
|
animation: border-expand 0.2s cubic-bezier(0.4, 0, 0.4, 1) 0.01s alternate forwards;
|
6854
|
-
|
6855
|
-
transition: all 1s cubic-bezier(0.4, 0, 1, 1); }
|
7524
|
+
transition: all 1s cubic-bezier(0.4, 0, 1, 1); }
|
6856
7525
|
.mdl-layout__tab .mdl-layout__tab-ripple-container {
|
6857
7526
|
display: block;
|
6858
7527
|
position: absolute;
|
@@ -6927,6 +7596,13 @@ input.mdl-button[type="submit"] {
|
|
6927
7596
|
* -----Shadows
|
6928
7597
|
* -----Grid
|
6929
7598
|
* -----Data table
|
7599
|
+
* -----Dialog
|
7600
|
+
* -----Snackbar
|
7601
|
+
*
|
7602
|
+
* Even though all variables have the `!default` directive, most of them
|
7603
|
+
* should not be changed as they are dependent one another. This can cause
|
7604
|
+
* visual distortions (like alignment issues) that are hard to track down
|
7605
|
+
* and fix.
|
6930
7606
|
*/
|
6931
7607
|
/* ========== TYPOGRAPHY ========== */
|
6932
7608
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -7027,6 +7703,8 @@ input.mdl-button[type="submit"] {
|
|
7027
7703
|
/* SHADOWS */
|
7028
7704
|
/* GRID */
|
7029
7705
|
/* DATA TABLE */
|
7706
|
+
/* DIALOG */
|
7707
|
+
/* SNACKBAR */
|
7030
7708
|
/* TOOLTIP */
|
7031
7709
|
/**
|
7032
7710
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -7046,6 +7724,7 @@ input.mdl-button[type="submit"] {
|
|
7046
7724
|
/* Typography */
|
7047
7725
|
/* Shadows */
|
7048
7726
|
/* Animations */
|
7727
|
+
/* Dialog */
|
7049
7728
|
.mdl-radio {
|
7050
7729
|
position: relative;
|
7051
7730
|
font-size: 16px;
|
@@ -7087,6 +7766,7 @@ input.mdl-button[type="submit"] {
|
|
7087
7766
|
z-index: 2; }
|
7088
7767
|
.mdl-radio.is-checked .mdl-radio__outer-circle {
|
7089
7768
|
border: 2px solid rgb(63,81,181); }
|
7769
|
+
.mdl-radio__outer-circle fieldset[disabled] .mdl-radio,
|
7090
7770
|
.mdl-radio.is-disabled .mdl-radio__outer-circle {
|
7091
7771
|
border: 2px solid rgba(0,0,0, 0.26);
|
7092
7772
|
cursor: auto; }
|
@@ -7101,12 +7781,11 @@ input.mdl-button[type="submit"] {
|
|
7101
7781
|
width: 8px;
|
7102
7782
|
height: 8px;
|
7103
7783
|
cursor: pointer;
|
7104
|
-
|
7105
|
-
|
7106
|
-
|
7107
|
-
|
7108
|
-
|
7109
|
-
transition-property: transform;
|
7784
|
+
transition-duration: 0.28s;
|
7785
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
7786
|
+
transition-property: -webkit-transform;
|
7787
|
+
transition-property: transform;
|
7788
|
+
transition-property: transform, -webkit-transform;
|
7110
7789
|
-webkit-transform: scale3d(0, 0, 0);
|
7111
7790
|
transform: scale3d(0, 0, 0);
|
7112
7791
|
border-radius: 50%;
|
@@ -7114,6 +7793,7 @@ input.mdl-button[type="submit"] {
|
|
7114
7793
|
.mdl-radio.is-checked .mdl-radio__inner-circle {
|
7115
7794
|
-webkit-transform: scale3d(1, 1, 1);
|
7116
7795
|
transform: scale3d(1, 1, 1); }
|
7796
|
+
fieldset[disabled] .mdl-radio .mdl-radio__inner-circle,
|
7117
7797
|
.mdl-radio.is-disabled .mdl-radio__inner-circle {
|
7118
7798
|
background: rgba(0,0,0, 0.26);
|
7119
7799
|
cursor: auto; }
|
@@ -7122,6 +7802,7 @@ input.mdl-button[type="submit"] {
|
|
7122
7802
|
|
7123
7803
|
.mdl-radio__label {
|
7124
7804
|
cursor: pointer; }
|
7805
|
+
fieldset[disabled] .mdl-radio .mdl-radio__label,
|
7125
7806
|
.mdl-radio.is-disabled .mdl-radio__label {
|
7126
7807
|
color: rgba(0,0,0, 0.26);
|
7127
7808
|
cursor: auto; }
|
@@ -7140,8 +7821,10 @@ input.mdl-button[type="submit"] {
|
|
7140
7821
|
-webkit-mask-image: -webkit-radial-gradient(circle, white, black); }
|
7141
7822
|
.mdl-radio__ripple-container .mdl-ripple {
|
7142
7823
|
background: rgb(63,81,181); }
|
7824
|
+
fieldset[disabled] .mdl-radio .mdl-radio__ripple-container,
|
7143
7825
|
.mdl-radio.is-disabled .mdl-radio__ripple-container {
|
7144
7826
|
cursor: auto; }
|
7827
|
+
fieldset[disabled] .mdl-radio .mdl-radio__ripple-container .mdl-ripple,
|
7145
7828
|
.mdl-radio.is-disabled .mdl-radio__ripple-container .mdl-ripple {
|
7146
7829
|
background: transparent; }
|
7147
7830
|
|
@@ -7200,6 +7883,13 @@ input.mdl-button[type="submit"] {
|
|
7200
7883
|
* -----Shadows
|
7201
7884
|
* -----Grid
|
7202
7885
|
* -----Data table
|
7886
|
+
* -----Dialog
|
7887
|
+
* -----Snackbar
|
7888
|
+
*
|
7889
|
+
* Even though all variables have the `!default` directive, most of them
|
7890
|
+
* should not be changed as they are dependent one another. This can cause
|
7891
|
+
* visual distortions (like alignment issues) that are hard to track down
|
7892
|
+
* and fix.
|
7203
7893
|
*/
|
7204
7894
|
/* ========== TYPOGRAPHY ========== */
|
7205
7895
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -7300,6 +7990,8 @@ input.mdl-button[type="submit"] {
|
|
7300
7990
|
/* SHADOWS */
|
7301
7991
|
/* GRID */
|
7302
7992
|
/* DATA TABLE */
|
7993
|
+
/* DIALOG */
|
7994
|
+
/* SNACKBAR */
|
7303
7995
|
/* TOOLTIP */
|
7304
7996
|
_:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
7305
7997
|
-ms-appearance: none;
|
@@ -7360,8 +8052,9 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7360
8052
|
border-radius: 50%;
|
7361
8053
|
background: rgb(63,81,181);
|
7362
8054
|
border: none;
|
7363
|
-
|
7364
|
-
|
8055
|
+
transition: border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
|
8056
|
+
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
8057
|
+
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1); }
|
7365
8058
|
.mdl-slider.is-upgraded::-moz-range-thumb {
|
7366
8059
|
-moz-appearance: none;
|
7367
8060
|
width: 12px;
|
@@ -7390,17 +8083,16 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7390
8083
|
border: none;
|
7391
8084
|
border-radius: 50%;
|
7392
8085
|
background: rgb(63,81,181);
|
7393
|
-
|
7394
|
-
|
7395
|
-
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
8086
|
+
transform: scale(0.375);
|
8087
|
+
transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
|
8088
|
+
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
8089
|
+
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1); }
|
7396
8090
|
.mdl-slider.is-upgraded:focus:not(:active)::-ms-thumb {
|
7397
8091
|
background: radial-gradient(circle closest-side, rgb(63,81,181) 0%, rgb(63,81,181) 37.5%, rgba(63,81,181, 0.26) 37.5%, rgba(63,81,181, 0.26) 100%);
|
7398
|
-
|
7399
|
-
transform: scale(1); }
|
8092
|
+
transform: scale(1); }
|
7400
8093
|
.mdl-slider.is-upgraded:active::-ms-thumb {
|
7401
8094
|
background: rgb(63,81,181);
|
7402
|
-
|
7403
|
-
transform: scale(0.5625); }
|
8095
|
+
transform: scale(0.5625); }
|
7404
8096
|
.mdl-slider.is-upgraded.is-lowest-value::-webkit-slider-thumb {
|
7405
8097
|
border: 2px solid rgba(0,0,0, 0.26);
|
7406
8098
|
background: transparent; }
|
@@ -7430,11 +8122,9 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7430
8122
|
background: radial-gradient(circle closest-side, transparent 0%, transparent 66.67%, rgba(0,0,0, 0.26) 66.67%, rgba(0,0,0, 0.26) 100%); }
|
7431
8123
|
.mdl-slider.is-upgraded.is-lowest-value:focus:not(:active)::-ms-thumb {
|
7432
8124
|
background: radial-gradient(circle closest-side, rgba(0,0,0, 0.12) 0%, rgba(0,0,0, 0.12) 25%, rgba(0,0,0, 0.26) 25%, rgba(0,0,0, 0.26) 37.5%, rgba(0,0,0, 0.12) 37.5%, rgba(0,0,0, 0.12) 100%);
|
7433
|
-
|
7434
|
-
transform: scale(1); }
|
8125
|
+
transform: scale(1); }
|
7435
8126
|
.mdl-slider.is-upgraded.is-lowest-value:active::-ms-thumb {
|
7436
|
-
|
7437
|
-
transform: scale(0.5625);
|
8127
|
+
transform: scale(0.5625);
|
7438
8128
|
background: radial-gradient(circle closest-side, transparent 0%, transparent 77.78%, rgba(0,0,0, 0.26) 77.78%, rgba(0,0,0, 0.26) 100%); }
|
7439
8129
|
.mdl-slider.is-upgraded.is-lowest-value::-ms-fill-lower {
|
7440
8130
|
background: transparent; }
|
@@ -7469,12 +8159,10 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7469
8159
|
.mdl-slider__background-flex > .mdl-slider__background-upper {
|
7470
8160
|
left: 6px; }
|
7471
8161
|
.mdl-slider.is-upgraded:disabled:focus::-ms-thumb, .mdl-slider.is-upgraded:disabled:active::-ms-thumb, .mdl-slider.is-upgraded:disabled::-ms-thumb {
|
7472
|
-
|
7473
|
-
transform: scale(0.25);
|
8162
|
+
transform: scale(0.25);
|
7474
8163
|
background: rgba(0,0,0, 0.26); }
|
7475
8164
|
.mdl-slider.is-upgraded.is-lowest-value:disabled:focus::-ms-thumb, .mdl-slider.is-upgraded.is-lowest-value:disabled:active::-ms-thumb, .mdl-slider.is-upgraded.is-lowest-value:disabled::-ms-thumb {
|
7476
|
-
|
7477
|
-
transform: scale(0.25);
|
8165
|
+
transform: scale(0.25);
|
7478
8166
|
background: radial-gradient(circle closest-side, transparent 0%, transparent 50%, rgba(0,0,0, 0.26) 50%, rgba(0,0,0, 0.26) 100%); }
|
7479
8167
|
.mdl-slider.is-upgraded:disabled::-ms-fill-lower {
|
7480
8168
|
margin-right: 6px;
|
@@ -7495,12 +8183,9 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7495
8183
|
height: 18px;
|
7496
8184
|
position: relative;
|
7497
8185
|
background: none;
|
7498
|
-
display: -webkit-box;
|
7499
8186
|
display: -webkit-flex;
|
7500
8187
|
display: -ms-flexbox;
|
7501
8188
|
display: flex;
|
7502
|
-
-webkit-box-orient: horizontal;
|
7503
|
-
-webkit-box-direction: normal;
|
7504
8189
|
-webkit-flex-direction: row;
|
7505
8190
|
-ms-flex-direction: row;
|
7506
8191
|
flex-direction: row; }
|
@@ -7513,7 +8198,6 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7513
8198
|
top: 50%;
|
7514
8199
|
left: 0;
|
7515
8200
|
margin: 0 26px;
|
7516
|
-
display: -webkit-box;
|
7517
8201
|
display: -webkit-flex;
|
7518
8202
|
display: -ms-flexbox;
|
7519
8203
|
display: flex;
|
@@ -7521,12 +8205,10 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7521
8205
|
border: 0;
|
7522
8206
|
padding: 0;
|
7523
8207
|
-webkit-transform: translate(0, -1px);
|
7524
|
-
-ms-transform: translate(0, -1px);
|
7525
8208
|
transform: translate(0, -1px); }
|
7526
8209
|
|
7527
8210
|
.mdl-slider__background-lower {
|
7528
8211
|
background: rgb(63,81,181);
|
7529
|
-
-webkit-box-flex: 0;
|
7530
8212
|
-webkit-flex: 0;
|
7531
8213
|
-ms-flex: 0;
|
7532
8214
|
flex: 0;
|
@@ -7536,15 +8218,13 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7536
8218
|
|
7537
8219
|
.mdl-slider__background-upper {
|
7538
8220
|
background: rgba(0,0,0, 0.26);
|
7539
|
-
-webkit-box-flex: 0;
|
7540
8221
|
-webkit-flex: 0;
|
7541
8222
|
-ms-flex: 0;
|
7542
8223
|
flex: 0;
|
7543
8224
|
position: relative;
|
7544
8225
|
border: 0;
|
7545
8226
|
padding: 0;
|
7546
|
-
|
7547
|
-
transition: left 0.18s cubic-bezier(0.4, 0, 0.2, 1); }
|
8227
|
+
transition: left 0.18s cubic-bezier(0.4, 0, 0.2, 1); }
|
7548
8228
|
|
7549
8229
|
/**
|
7550
8230
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -7601,6 +8281,13 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7601
8281
|
* -----Shadows
|
7602
8282
|
* -----Grid
|
7603
8283
|
* -----Data table
|
8284
|
+
* -----Dialog
|
8285
|
+
* -----Snackbar
|
8286
|
+
*
|
8287
|
+
* Even though all variables have the `!default` directive, most of them
|
8288
|
+
* should not be changed as they are dependent one another. This can cause
|
8289
|
+
* visual distortions (like alignment issues) that are hard to track down
|
8290
|
+
* and fix.
|
7604
8291
|
*/
|
7605
8292
|
/* ========== TYPOGRAPHY ========== */
|
7606
8293
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -7701,6 +8388,259 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7701
8388
|
/* SHADOWS */
|
7702
8389
|
/* GRID */
|
7703
8390
|
/* DATA TABLE */
|
8391
|
+
/* DIALOG */
|
8392
|
+
/* SNACKBAR */
|
8393
|
+
/* TOOLTIP */
|
8394
|
+
/**
|
8395
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
8396
|
+
*
|
8397
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8398
|
+
* you may not use this file except in compliance with the License.
|
8399
|
+
* You may obtain a copy of the License at
|
8400
|
+
*
|
8401
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
8402
|
+
*
|
8403
|
+
* Unless required by applicable law or agreed to in writing, software
|
8404
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
8405
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
8406
|
+
* See the License for the specific language governing permissions and
|
8407
|
+
* limitations under the License.
|
8408
|
+
*/
|
8409
|
+
/* Typography */
|
8410
|
+
/* Shadows */
|
8411
|
+
/* Animations */
|
8412
|
+
/* Dialog */
|
8413
|
+
.mdl-snackbar {
|
8414
|
+
position: fixed;
|
8415
|
+
bottom: 0;
|
8416
|
+
left: 50%;
|
8417
|
+
margin-right: -50%;
|
8418
|
+
cursor: default;
|
8419
|
+
background-color: #323232;
|
8420
|
+
z-index: 10000;
|
8421
|
+
display: -webkit-flex;
|
8422
|
+
display: -ms-flexbox;
|
8423
|
+
display: flex;
|
8424
|
+
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
8425
|
+
will-change: transform;
|
8426
|
+
-webkit-transform: translate(0, 80px);
|
8427
|
+
transform: translate(0, 80px);
|
8428
|
+
transition: -webkit-transform 0.25s cubic-bezier(0.4, 0, 1, 1);
|
8429
|
+
transition: transform 0.25s cubic-bezier(0.4, 0, 1, 1);
|
8430
|
+
transition: transform 0.25s cubic-bezier(0.4, 0, 1, 1), -webkit-transform 0.25s cubic-bezier(0.4, 0, 1, 1);
|
8431
|
+
pointer-events: none; }
|
8432
|
+
@media (max-width: 479px) {
|
8433
|
+
.mdl-snackbar {
|
8434
|
+
width: 100%;
|
8435
|
+
left: 0;
|
8436
|
+
min-height: 48px;
|
8437
|
+
max-height: 80px; } }
|
8438
|
+
@media (min-width: 480px) {
|
8439
|
+
.mdl-snackbar {
|
8440
|
+
min-width: 288px;
|
8441
|
+
max-width: 568px;
|
8442
|
+
border-radius: 2px; } }
|
8443
|
+
.mdl-snackbar--active {
|
8444
|
+
-webkit-transform: translate(0, 0);
|
8445
|
+
transform: translate(0, 0);
|
8446
|
+
pointer-events: auto;
|
8447
|
+
transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.2, 1);
|
8448
|
+
transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1);
|
8449
|
+
transition: transform 0.25s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.25s cubic-bezier(0, 0, 0.2, 1); }
|
8450
|
+
.mdl-snackbar__text {
|
8451
|
+
padding: 14px 24px;
|
8452
|
+
vertical-align: middle;
|
8453
|
+
color: white; }
|
8454
|
+
.mdl-snackbar__action {
|
8455
|
+
background: transparent;
|
8456
|
+
border: none;
|
8457
|
+
color: rgb(255,64,129);
|
8458
|
+
text-transform: uppercase;
|
8459
|
+
padding: 14px 24px;
|
8460
|
+
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
8461
|
+
font-size: 14px;
|
8462
|
+
font-weight: 500;
|
8463
|
+
text-transform: uppercase;
|
8464
|
+
line-height: 1;
|
8465
|
+
letter-spacing: 0;
|
8466
|
+
overflow: hidden;
|
8467
|
+
outline: none;
|
8468
|
+
opacity: 0;
|
8469
|
+
pointer-events: none;
|
8470
|
+
cursor: pointer;
|
8471
|
+
text-decoration: none;
|
8472
|
+
text-align: center;
|
8473
|
+
vertical-align: middle; }
|
8474
|
+
.mdl-snackbar__action::-moz-focus-inner {
|
8475
|
+
border: 0; }
|
8476
|
+
.mdl-snackbar__action:not([aria-hidden]) {
|
8477
|
+
opacity: 1;
|
8478
|
+
pointer-events: auto; }
|
8479
|
+
|
8480
|
+
/**
|
8481
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
8482
|
+
*
|
8483
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8484
|
+
* you may not use this file except in compliance with the License.
|
8485
|
+
* You may obtain a copy of the License at
|
8486
|
+
*
|
8487
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
8488
|
+
*
|
8489
|
+
* Unless required by applicable law or agreed to in writing, software
|
8490
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
8491
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
8492
|
+
* See the License for the specific language governing permissions and
|
8493
|
+
* limitations under the License.
|
8494
|
+
*/
|
8495
|
+
/**
|
8496
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
8497
|
+
*
|
8498
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8499
|
+
* you may not use this file except in compliance with the License.
|
8500
|
+
* You may obtain a copy of the License at
|
8501
|
+
*
|
8502
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
8503
|
+
*
|
8504
|
+
* Unless required by applicable law or agreed to in writing, software
|
8505
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
8506
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
8507
|
+
* See the License for the specific language governing permissions and
|
8508
|
+
* limitations under the License.
|
8509
|
+
*/
|
8510
|
+
/*------------------------------------* $CONTENTS
|
8511
|
+
\*------------------------------------*/
|
8512
|
+
/**
|
8513
|
+
* STYLE GUIDE VARIABLES------------------Declarations of Sass variables
|
8514
|
+
* -----Typography
|
8515
|
+
* -----Colors
|
8516
|
+
* -----Textfield
|
8517
|
+
* -----Switch
|
8518
|
+
* -----Spinner
|
8519
|
+
* -----Radio
|
8520
|
+
* -----Menu
|
8521
|
+
* -----List
|
8522
|
+
* -----Layout
|
8523
|
+
* -----Icon toggles
|
8524
|
+
* -----Footer
|
8525
|
+
* -----Column
|
8526
|
+
* -----Checkbox
|
8527
|
+
* -----Card
|
8528
|
+
* -----Button
|
8529
|
+
* -----Animation
|
8530
|
+
* -----Progress
|
8531
|
+
* -----Badge
|
8532
|
+
* -----Shadows
|
8533
|
+
* -----Grid
|
8534
|
+
* -----Data table
|
8535
|
+
* -----Dialog
|
8536
|
+
* -----Snackbar
|
8537
|
+
*
|
8538
|
+
* Even though all variables have the `!default` directive, most of them
|
8539
|
+
* should not be changed as they are dependent one another. This can cause
|
8540
|
+
* visual distortions (like alignment issues) that are hard to track down
|
8541
|
+
* and fix.
|
8542
|
+
*/
|
8543
|
+
/* ========== TYPOGRAPHY ========== */
|
8544
|
+
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
8545
|
+
page loading. For important text, such as the body, we want it to load
|
8546
|
+
immediately and not wait for the web font load, whereas for other sections,
|
8547
|
+
such as headers and titles, we're OK with things taking a bit longer to load.
|
8548
|
+
We do have some optional classes and parameters in the mixins, in case you
|
8549
|
+
definitely want to make sure you're using the preferred font and don't mind
|
8550
|
+
the performance hit.
|
8551
|
+
We should be able to improve on this once CSS Font Loading L3 becomes more
|
8552
|
+
widely available.
|
8553
|
+
*/
|
8554
|
+
/* ========== COLORS ========== */
|
8555
|
+
/**
|
8556
|
+
*
|
8557
|
+
* Material design color palettes.
|
8558
|
+
* @see http://www.google.com/design/spec/style/color.html
|
8559
|
+
*
|
8560
|
+
**/
|
8561
|
+
/**
|
8562
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
8563
|
+
*
|
8564
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8565
|
+
* you may not use this file except in compliance with the License.
|
8566
|
+
* You may obtain a copy of the License at
|
8567
|
+
*
|
8568
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
8569
|
+
*
|
8570
|
+
* Unless required by applicable law or agreed to in writing, software
|
8571
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
8572
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
8573
|
+
* See the License for the specific language governing permissions and
|
8574
|
+
* limitations under the License.
|
8575
|
+
*/
|
8576
|
+
/* ========== Color Palettes ========== */
|
8577
|
+
/* colors.scss */
|
8578
|
+
/**
|
8579
|
+
* Copyright 2015 Google Inc. All Rights Reserved.
|
8580
|
+
*
|
8581
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
8582
|
+
* you may not use this file except in compliance with the License.
|
8583
|
+
* You may obtain a copy of the License at
|
8584
|
+
*
|
8585
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
8586
|
+
*
|
8587
|
+
* Unless required by applicable law or agreed to in writing, software
|
8588
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
8589
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
8590
|
+
* See the License for the specific language governing permissions and
|
8591
|
+
* limitations under the License.
|
8592
|
+
*/
|
8593
|
+
/* ========== IMAGES ========== */
|
8594
|
+
/* ========== Color & Themes ========== */
|
8595
|
+
/* ========== Typography ========== */
|
8596
|
+
/* ========== Components ========== */
|
8597
|
+
/* ========== Standard Buttons ========== */
|
8598
|
+
/* ========== Icon Toggles ========== */
|
8599
|
+
/* ========== Radio Buttons ========== */
|
8600
|
+
/* ========== Ripple effect ========== */
|
8601
|
+
/* ========== Layout ========== */
|
8602
|
+
/* ========== Content Tabs ========== */
|
8603
|
+
/* ========== Checkboxes ========== */
|
8604
|
+
/* ========== Switches ========== */
|
8605
|
+
/* ========== Spinner ========== */
|
8606
|
+
/* ========== Text fields ========== */
|
8607
|
+
/* ========== Card ========== */
|
8608
|
+
/* ========== Sliders ========== */
|
8609
|
+
/* ========== Progress ========== */
|
8610
|
+
/* ========== List ========== */
|
8611
|
+
/* ========== Item ========== */
|
8612
|
+
/* ========== Dropdown menu ========== */
|
8613
|
+
/* ========== Tooltips ========== */
|
8614
|
+
/* ========== Footer ========== */
|
8615
|
+
/* TEXTFIELD */
|
8616
|
+
/* SWITCH */
|
8617
|
+
/* SPINNER */
|
8618
|
+
/* RADIO */
|
8619
|
+
/* MENU */
|
8620
|
+
/* LIST */
|
8621
|
+
/* LAYOUT */
|
8622
|
+
/* ICON TOGGLE */
|
8623
|
+
/* FOOTER */
|
8624
|
+
/*mega-footer*/
|
8625
|
+
/*mini-footer*/
|
8626
|
+
/* CHECKBOX */
|
8627
|
+
/* CARD */
|
8628
|
+
/* Card dimensions */
|
8629
|
+
/* Cover image */
|
8630
|
+
/* BUTTON */
|
8631
|
+
/**
|
8632
|
+
*
|
8633
|
+
* Dimensions
|
8634
|
+
*
|
8635
|
+
*/
|
8636
|
+
/* ANIMATION */
|
8637
|
+
/* PROGRESS */
|
8638
|
+
/* BADGE */
|
8639
|
+
/* SHADOWS */
|
8640
|
+
/* GRID */
|
8641
|
+
/* DATA TABLE */
|
8642
|
+
/* DIALOG */
|
8643
|
+
/* SNACKBAR */
|
7704
8644
|
/* TOOLTIP */
|
7705
8645
|
.mdl-spinner {
|
7706
8646
|
display: inline-block;
|
@@ -7970,7 +8910,6 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7970
8910
|
.mdl-spinner__left .mdl-spinner__circle {
|
7971
8911
|
border-right-color: transparent !important;
|
7972
8912
|
-webkit-transform: rotate(129deg);
|
7973
|
-
-ms-transform: rotate(129deg);
|
7974
8913
|
transform: rotate(129deg); }
|
7975
8914
|
.mdl-spinner.is-active .mdl-spinner__left .mdl-spinner__circle {
|
7976
8915
|
-webkit-animation: mdl-spinner__left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
|
@@ -7979,7 +8918,6 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
7979
8918
|
left: -100%;
|
7980
8919
|
border-left-color: transparent !important;
|
7981
8920
|
-webkit-transform: rotate(-129deg);
|
7982
|
-
-ms-transform: rotate(-129deg);
|
7983
8921
|
transform: rotate(-129deg); }
|
7984
8922
|
.mdl-spinner.is-active .mdl-spinner__right .mdl-spinner__circle {
|
7985
8923
|
-webkit-animation: mdl-spinner__right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
|
@@ -8084,6 +9022,13 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8084
9022
|
* -----Shadows
|
8085
9023
|
* -----Grid
|
8086
9024
|
* -----Data table
|
9025
|
+
* -----Dialog
|
9026
|
+
* -----Snackbar
|
9027
|
+
*
|
9028
|
+
* Even though all variables have the `!default` directive, most of them
|
9029
|
+
* should not be changed as they are dependent one another. This can cause
|
9030
|
+
* visual distortions (like alignment issues) that are hard to track down
|
9031
|
+
* and fix.
|
8087
9032
|
*/
|
8088
9033
|
/* ========== TYPOGRAPHY ========== */
|
8089
9034
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -8184,6 +9129,8 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8184
9129
|
/* SHADOWS */
|
8185
9130
|
/* GRID */
|
8186
9131
|
/* DATA TABLE */
|
9132
|
+
/* DIALOG */
|
9133
|
+
/* SNACKBAR */
|
8187
9134
|
/* TOOLTIP */
|
8188
9135
|
/**
|
8189
9136
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -8203,6 +9150,7 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8203
9150
|
/* Typography */
|
8204
9151
|
/* Shadows */
|
8205
9152
|
/* Animations */
|
9153
|
+
/* Dialog */
|
8206
9154
|
.mdl-switch {
|
8207
9155
|
position: relative;
|
8208
9156
|
z-index: 1;
|
@@ -8248,6 +9196,7 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8248
9196
|
cursor: pointer; }
|
8249
9197
|
.mdl-switch.is-checked .mdl-switch__track {
|
8250
9198
|
background: rgba(63,81,181, 0.5); }
|
9199
|
+
.mdl-switch__track fieldset[disabled] .mdl-switch,
|
8251
9200
|
.mdl-switch.is-disabled .mdl-switch__track {
|
8252
9201
|
background: rgba(0,0,0, 0.12);
|
8253
9202
|
cursor: auto; }
|
@@ -8262,16 +9211,14 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8262
9211
|
border-radius: 50%;
|
8263
9212
|
cursor: pointer;
|
8264
9213
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
8265
|
-
|
8266
|
-
|
8267
|
-
|
8268
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
8269
|
-
-webkit-transition-property: left;
|
8270
|
-
transition-property: left; }
|
9214
|
+
transition-duration: 0.28s;
|
9215
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
9216
|
+
transition-property: left; }
|
8271
9217
|
.mdl-switch.is-checked .mdl-switch__thumb {
|
8272
9218
|
background: rgb(63,81,181);
|
8273
9219
|
left: 16px;
|
8274
9220
|
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12); }
|
9221
|
+
.mdl-switch__thumb fieldset[disabled] .mdl-switch,
|
8275
9222
|
.mdl-switch.is-disabled .mdl-switch__thumb {
|
8276
9223
|
background: rgb(189,189,189);
|
8277
9224
|
cursor: auto; }
|
@@ -8281,7 +9228,6 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8281
9228
|
top: 50%;
|
8282
9229
|
left: 50%;
|
8283
9230
|
-webkit-transform: translate(-4px, -4px);
|
8284
|
-
-ms-transform: translate(-4px, -4px);
|
8285
9231
|
transform: translate(-4px, -4px);
|
8286
9232
|
display: inline-block;
|
8287
9233
|
box-sizing: border-box;
|
@@ -8303,6 +9249,7 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8303
9249
|
line-height: 24px;
|
8304
9250
|
margin: 0;
|
8305
9251
|
left: 24px; }
|
9252
|
+
.mdl-switch__label fieldset[disabled] .mdl-switch,
|
8306
9253
|
.mdl-switch.is-disabled .mdl-switch__label {
|
8307
9254
|
color: rgb(189,189,189);
|
8308
9255
|
cursor: auto; }
|
@@ -8319,20 +9266,18 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8319
9266
|
cursor: pointer;
|
8320
9267
|
overflow: hidden;
|
8321
9268
|
-webkit-mask-image: -webkit-radial-gradient(circle, white, black);
|
8322
|
-
|
8323
|
-
|
8324
|
-
|
8325
|
-
transition-timing-function: step-end;
|
8326
|
-
-webkit-transition-property: left;
|
8327
|
-
transition-property: left; }
|
9269
|
+
transition-duration: 0.40s;
|
9270
|
+
transition-timing-function: step-end;
|
9271
|
+
transition-property: left; }
|
8328
9272
|
.mdl-switch__ripple-container .mdl-ripple {
|
8329
9273
|
background: rgb(63,81,181); }
|
9274
|
+
.mdl-switch__ripple-container fieldset[disabled] .mdl-switch,
|
8330
9275
|
.mdl-switch.is-disabled .mdl-switch__ripple-container {
|
8331
9276
|
cursor: auto; }
|
9277
|
+
fieldset[disabled] .mdl-switch .mdl-switch__ripple-container .mdl-ripple,
|
8332
9278
|
.mdl-switch.is-disabled .mdl-switch__ripple-container .mdl-ripple {
|
8333
9279
|
background: transparent; }
|
8334
9280
|
.mdl-switch.is-checked .mdl-switch__ripple-container {
|
8335
|
-
cursor: auto;
|
8336
9281
|
left: 2px; }
|
8337
9282
|
|
8338
9283
|
/**
|
@@ -8390,6 +9335,13 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8390
9335
|
* -----Shadows
|
8391
9336
|
* -----Grid
|
8392
9337
|
* -----Data table
|
9338
|
+
* -----Dialog
|
9339
|
+
* -----Snackbar
|
9340
|
+
*
|
9341
|
+
* Even though all variables have the `!default` directive, most of them
|
9342
|
+
* should not be changed as they are dependent one another. This can cause
|
9343
|
+
* visual distortions (like alignment issues) that are hard to track down
|
9344
|
+
* and fix.
|
8393
9345
|
*/
|
8394
9346
|
/* ========== TYPOGRAPHY ========== */
|
8395
9347
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -8490,29 +9442,26 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8490
9442
|
/* SHADOWS */
|
8491
9443
|
/* GRID */
|
8492
9444
|
/* DATA TABLE */
|
9445
|
+
/* DIALOG */
|
9446
|
+
/* SNACKBAR */
|
8493
9447
|
/* TOOLTIP */
|
8494
9448
|
.mdl-tabs {
|
8495
9449
|
display: block;
|
8496
9450
|
width: 100%; }
|
8497
9451
|
|
8498
9452
|
.mdl-tabs__tab-bar {
|
8499
|
-
display: -webkit-box;
|
8500
9453
|
display: -webkit-flex;
|
8501
9454
|
display: -ms-flexbox;
|
8502
9455
|
display: flex;
|
8503
|
-
-webkit-box-orient: horizontal;
|
8504
|
-
-webkit-box-direction: normal;
|
8505
9456
|
-webkit-flex-direction: row;
|
8506
9457
|
-ms-flex-direction: row;
|
8507
9458
|
flex-direction: row;
|
8508
|
-
-webkit-box-pack: center;
|
8509
9459
|
-webkit-justify-content: center;
|
8510
9460
|
-ms-flex-pack: center;
|
8511
9461
|
justify-content: center;
|
8512
9462
|
-webkit-align-content: space-between;
|
8513
9463
|
-ms-flex-line-pack: justify;
|
8514
9464
|
align-content: space-between;
|
8515
|
-
-webkit-box-align: start;
|
8516
9465
|
-webkit-align-items: flex-start;
|
8517
9466
|
-ms-flex-align: start;
|
8518
9467
|
align-items: flex-start;
|
@@ -8528,7 +9477,6 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8528
9477
|
float: left;
|
8529
9478
|
position: relative;
|
8530
9479
|
display: block;
|
8531
|
-
color: red;
|
8532
9480
|
text-decoration: none;
|
8533
9481
|
height: 48px;
|
8534
9482
|
line-height: 48px;
|
@@ -8551,8 +9499,7 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8551
9499
|
background: rgb(63,81,181);
|
8552
9500
|
-webkit-animation: border-expand 0.2s cubic-bezier(0.4, 0, 0.4, 1) 0.01s alternate forwards;
|
8553
9501
|
animation: border-expand 0.2s cubic-bezier(0.4, 0, 0.4, 1) 0.01s alternate forwards;
|
8554
|
-
|
8555
|
-
transition: all 1s cubic-bezier(0.4, 0, 1, 1); }
|
9502
|
+
transition: all 1s cubic-bezier(0.4, 0, 1, 1); }
|
8556
9503
|
.mdl-tabs__tab .mdl-tabs__ripple-container {
|
8557
9504
|
display: block;
|
8558
9505
|
position: absolute;
|
@@ -8643,6 +9590,13 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8643
9590
|
* -----Shadows
|
8644
9591
|
* -----Grid
|
8645
9592
|
* -----Data table
|
9593
|
+
* -----Dialog
|
9594
|
+
* -----Snackbar
|
9595
|
+
*
|
9596
|
+
* Even though all variables have the `!default` directive, most of them
|
9597
|
+
* should not be changed as they are dependent one another. This can cause
|
9598
|
+
* visual distortions (like alignment issues) that are hard to track down
|
9599
|
+
* and fix.
|
8646
9600
|
*/
|
8647
9601
|
/* ========== TYPOGRAPHY ========== */
|
8648
9602
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -8743,6 +9697,8 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8743
9697
|
/* SHADOWS */
|
8744
9698
|
/* GRID */
|
8745
9699
|
/* DATA TABLE */
|
9700
|
+
/* DIALOG */
|
9701
|
+
/* SNACKBAR */
|
8746
9702
|
/* TOOLTIP */
|
8747
9703
|
/**
|
8748
9704
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -8762,6 +9718,7 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8762
9718
|
/* Typography */
|
8763
9719
|
/* Shadows */
|
8764
9720
|
/* Animations */
|
9721
|
+
/* Dialog */
|
8765
9722
|
.mdl-textfield {
|
8766
9723
|
position: relative;
|
8767
9724
|
font-size: 16px;
|
@@ -8791,17 +9748,24 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8791
9748
|
border-bottom: 1px solid rgba(0,0,0, 0.12);
|
8792
9749
|
display: block;
|
8793
9750
|
font-size: 16px;
|
9751
|
+
font-family: "Helvetica", "Arial", sans-serif;
|
8794
9752
|
margin: 0;
|
8795
9753
|
padding: 4px 0;
|
8796
9754
|
width: 100%;
|
8797
9755
|
background: none;
|
8798
9756
|
text-align: left;
|
8799
9757
|
color: inherit; }
|
9758
|
+
.mdl-textfield__input[type="number"] {
|
9759
|
+
-moz-appearance: textfield; }
|
9760
|
+
.mdl-textfield__input[type="number"]::-webkit-inner-spin-button, .mdl-textfield__input[type="number"]::-webkit-outer-spin-button {
|
9761
|
+
-webkit-appearance: none;
|
9762
|
+
margin: 0; }
|
8800
9763
|
.mdl-textfield.is-focused .mdl-textfield__input {
|
8801
9764
|
outline: none; }
|
8802
9765
|
.mdl-textfield.is-invalid .mdl-textfield__input {
|
8803
9766
|
border-color: rgb(222, 50, 38);
|
8804
9767
|
box-shadow: none; }
|
9768
|
+
fieldset[disabled] .mdl-textfield .mdl-textfield__input,
|
8805
9769
|
.mdl-textfield.is-disabled .mdl-textfield__input {
|
8806
9770
|
background-color: transparent;
|
8807
9771
|
border-bottom: 1px dotted rgba(0,0,0, 0.12);
|
@@ -8827,10 +9791,9 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8827
9791
|
.mdl-textfield.is-dirty .mdl-textfield__label {
|
8828
9792
|
visibility: hidden; }
|
8829
9793
|
.mdl-textfield--floating-label .mdl-textfield__label {
|
8830
|
-
|
8831
|
-
|
8832
|
-
|
8833
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
9794
|
+
transition-duration: 0.2s;
|
9795
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
9796
|
+
fieldset[disabled] .mdl-textfield .mdl-textfield__label,
|
8834
9797
|
.mdl-textfield.is-disabled.is-disabled .mdl-textfield__label {
|
8835
9798
|
color: rgba(0,0,0, 0.26); }
|
8836
9799
|
.mdl-textfield--floating-label.is-focused .mdl-textfield__label,
|
@@ -8852,10 +9815,8 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8852
9815
|
height: 2px;
|
8853
9816
|
left: 45%;
|
8854
9817
|
position: absolute;
|
8855
|
-
|
8856
|
-
|
8857
|
-
-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
8858
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
9818
|
+
transition-duration: 0.2s;
|
9819
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
8859
9820
|
visibility: hidden;
|
8860
9821
|
width: 10px; }
|
8861
9822
|
.mdl-textfield.is-focused .mdl-textfield__label:after {
|
@@ -8879,10 +9840,8 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8879
9840
|
display: inline-block;
|
8880
9841
|
position: relative;
|
8881
9842
|
margin-left: 32px;
|
8882
|
-
|
8883
|
-
|
8884
|
-
-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
8885
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
9843
|
+
transition-duration: 0.2s;
|
9844
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
8886
9845
|
display: inline-block;
|
8887
9846
|
max-width: 0.1px; }
|
8888
9847
|
.mdl-textfield.is-focused .mdl-textfield__expandable-holder, .mdl-textfield.is-dirty .mdl-textfield__expandable-holder {
|
@@ -8945,6 +9904,13 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
8945
9904
|
* -----Shadows
|
8946
9905
|
* -----Grid
|
8947
9906
|
* -----Data table
|
9907
|
+
* -----Dialog
|
9908
|
+
* -----Snackbar
|
9909
|
+
*
|
9910
|
+
* Even though all variables have the `!default` directive, most of them
|
9911
|
+
* should not be changed as they are dependent one another. This can cause
|
9912
|
+
* visual distortions (like alignment issues) that are hard to track down
|
9913
|
+
* and fix.
|
8948
9914
|
*/
|
8949
9915
|
/* ========== TYPOGRAPHY ========== */
|
8950
9916
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -9045,13 +10011,13 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9045
10011
|
/* SHADOWS */
|
9046
10012
|
/* GRID */
|
9047
10013
|
/* DATA TABLE */
|
10014
|
+
/* DIALOG */
|
10015
|
+
/* SNACKBAR */
|
9048
10016
|
/* TOOLTIP */
|
9049
10017
|
.mdl-tooltip {
|
9050
10018
|
-webkit-transform: scale(0);
|
9051
|
-
-ms-transform: scale(0);
|
9052
10019
|
transform: scale(0);
|
9053
10020
|
-webkit-transform-origin: top center;
|
9054
|
-
-ms-transform-origin: top center;
|
9055
10021
|
transform-origin: top center;
|
9056
10022
|
will-change: transform;
|
9057
10023
|
z-index: 999;
|
@@ -9161,6 +10127,13 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9161
10127
|
* -----Shadows
|
9162
10128
|
* -----Grid
|
9163
10129
|
* -----Data table
|
10130
|
+
* -----Dialog
|
10131
|
+
* -----Snackbar
|
10132
|
+
*
|
10133
|
+
* Even though all variables have the `!default` directive, most of them
|
10134
|
+
* should not be changed as they are dependent one another. This can cause
|
10135
|
+
* visual distortions (like alignment issues) that are hard to track down
|
10136
|
+
* and fix.
|
9164
10137
|
*/
|
9165
10138
|
/* ========== TYPOGRAPHY ========== */
|
9166
10139
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -9261,6 +10234,8 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9261
10234
|
/* SHADOWS */
|
9262
10235
|
/* GRID */
|
9263
10236
|
/* DATA TABLE */
|
10237
|
+
/* DIALOG */
|
10238
|
+
/* SNACKBAR */
|
9264
10239
|
/* TOOLTIP */
|
9265
10240
|
/**
|
9266
10241
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
@@ -9280,6 +10255,7 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9280
10255
|
/* Typography */
|
9281
10256
|
/* Shadows */
|
9282
10257
|
/* Animations */
|
10258
|
+
/* Dialog */
|
9283
10259
|
.mdl-shadow--2dp {
|
9284
10260
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }
|
9285
10261
|
|
@@ -9298,6 +10274,9 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9298
10274
|
.mdl-shadow--16dp {
|
9299
10275
|
box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
|
9300
10276
|
|
10277
|
+
.mdl-shadow--24dp {
|
10278
|
+
box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.14), 0 11px 15px -7px rgba(0, 0, 0, 0.12), 0 24px 38px 3px rgba(0, 0, 0, 0.2); }
|
10279
|
+
|
9301
10280
|
/**
|
9302
10281
|
* Copyright 2015 Google Inc. All Rights Reserved.
|
9303
10282
|
*
|
@@ -9358,6 +10337,13 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9358
10337
|
* -----Shadows
|
9359
10338
|
* -----Grid
|
9360
10339
|
* -----Data table
|
10340
|
+
* -----Dialog
|
10341
|
+
* -----Snackbar
|
10342
|
+
*
|
10343
|
+
* Even though all variables have the `!default` directive, most of them
|
10344
|
+
* should not be changed as they are dependent one another. This can cause
|
10345
|
+
* visual distortions (like alignment issues) that are hard to track down
|
10346
|
+
* and fix.
|
9361
10347
|
*/
|
9362
10348
|
/* ========== TYPOGRAPHY ========== */
|
9363
10349
|
/* We're splitting fonts into "preferred" and "performance" in order to optimize
|
@@ -9458,9 +10444,10 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9458
10444
|
/* SHADOWS */
|
9459
10445
|
/* GRID */
|
9460
10446
|
/* DATA TABLE */
|
10447
|
+
/* DIALOG */
|
10448
|
+
/* SNACKBAR */
|
9461
10449
|
/* TOOLTIP */
|
9462
10450
|
.mdl-grid {
|
9463
|
-
display: -webkit-box;
|
9464
10451
|
display: -webkit-flex;
|
9465
10452
|
display: -ms-flexbox;
|
9466
10453
|
display: flex;
|
@@ -9468,7 +10455,6 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9468
10455
|
-ms-flex-flow: row wrap;
|
9469
10456
|
flex-flow: row wrap;
|
9470
10457
|
margin: 0 auto 0 auto;
|
9471
|
-
-webkit-box-align: stretch;
|
9472
10458
|
-webkit-align-items: stretch;
|
9473
10459
|
-ms-flex-align: stretch;
|
9474
10460
|
align-items: stretch; }
|
@@ -9501,6 +10487,66 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9501
10487
|
.mdl-grid.mdl-grid--no-spacing > .mdl-cell {
|
9502
10488
|
margin: 0; }
|
9503
10489
|
|
10490
|
+
.mdl-cell--order-1 {
|
10491
|
+
-webkit-order: 1;
|
10492
|
+
-ms-flex-order: 1;
|
10493
|
+
order: 1; }
|
10494
|
+
|
10495
|
+
.mdl-cell--order-2 {
|
10496
|
+
-webkit-order: 2;
|
10497
|
+
-ms-flex-order: 2;
|
10498
|
+
order: 2; }
|
10499
|
+
|
10500
|
+
.mdl-cell--order-3 {
|
10501
|
+
-webkit-order: 3;
|
10502
|
+
-ms-flex-order: 3;
|
10503
|
+
order: 3; }
|
10504
|
+
|
10505
|
+
.mdl-cell--order-4 {
|
10506
|
+
-webkit-order: 4;
|
10507
|
+
-ms-flex-order: 4;
|
10508
|
+
order: 4; }
|
10509
|
+
|
10510
|
+
.mdl-cell--order-5 {
|
10511
|
+
-webkit-order: 5;
|
10512
|
+
-ms-flex-order: 5;
|
10513
|
+
order: 5; }
|
10514
|
+
|
10515
|
+
.mdl-cell--order-6 {
|
10516
|
+
-webkit-order: 6;
|
10517
|
+
-ms-flex-order: 6;
|
10518
|
+
order: 6; }
|
10519
|
+
|
10520
|
+
.mdl-cell--order-7 {
|
10521
|
+
-webkit-order: 7;
|
10522
|
+
-ms-flex-order: 7;
|
10523
|
+
order: 7; }
|
10524
|
+
|
10525
|
+
.mdl-cell--order-8 {
|
10526
|
+
-webkit-order: 8;
|
10527
|
+
-ms-flex-order: 8;
|
10528
|
+
order: 8; }
|
10529
|
+
|
10530
|
+
.mdl-cell--order-9 {
|
10531
|
+
-webkit-order: 9;
|
10532
|
+
-ms-flex-order: 9;
|
10533
|
+
order: 9; }
|
10534
|
+
|
10535
|
+
.mdl-cell--order-10 {
|
10536
|
+
-webkit-order: 10;
|
10537
|
+
-ms-flex-order: 10;
|
10538
|
+
order: 10; }
|
10539
|
+
|
10540
|
+
.mdl-cell--order-11 {
|
10541
|
+
-webkit-order: 11;
|
10542
|
+
-ms-flex-order: 11;
|
10543
|
+
order: 11; }
|
10544
|
+
|
10545
|
+
.mdl-cell--order-12 {
|
10546
|
+
-webkit-order: 12;
|
10547
|
+
-ms-flex-order: 12;
|
10548
|
+
order: 12; }
|
10549
|
+
|
9504
10550
|
@media (max-width: 479px) {
|
9505
10551
|
.mdl-grid {
|
9506
10552
|
padding: 8px; }
|
@@ -9511,6 +10557,54 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9511
10557
|
width: 100%; }
|
9512
10558
|
.mdl-cell--hide-phone {
|
9513
10559
|
display: none !important; }
|
10560
|
+
.mdl-cell--order-1-phone.mdl-cell--order-1-phone {
|
10561
|
+
-webkit-order: 1;
|
10562
|
+
-ms-flex-order: 1;
|
10563
|
+
order: 1; }
|
10564
|
+
.mdl-cell--order-2-phone.mdl-cell--order-2-phone {
|
10565
|
+
-webkit-order: 2;
|
10566
|
+
-ms-flex-order: 2;
|
10567
|
+
order: 2; }
|
10568
|
+
.mdl-cell--order-3-phone.mdl-cell--order-3-phone {
|
10569
|
+
-webkit-order: 3;
|
10570
|
+
-ms-flex-order: 3;
|
10571
|
+
order: 3; }
|
10572
|
+
.mdl-cell--order-4-phone.mdl-cell--order-4-phone {
|
10573
|
+
-webkit-order: 4;
|
10574
|
+
-ms-flex-order: 4;
|
10575
|
+
order: 4; }
|
10576
|
+
.mdl-cell--order-5-phone.mdl-cell--order-5-phone {
|
10577
|
+
-webkit-order: 5;
|
10578
|
+
-ms-flex-order: 5;
|
10579
|
+
order: 5; }
|
10580
|
+
.mdl-cell--order-6-phone.mdl-cell--order-6-phone {
|
10581
|
+
-webkit-order: 6;
|
10582
|
+
-ms-flex-order: 6;
|
10583
|
+
order: 6; }
|
10584
|
+
.mdl-cell--order-7-phone.mdl-cell--order-7-phone {
|
10585
|
+
-webkit-order: 7;
|
10586
|
+
-ms-flex-order: 7;
|
10587
|
+
order: 7; }
|
10588
|
+
.mdl-cell--order-8-phone.mdl-cell--order-8-phone {
|
10589
|
+
-webkit-order: 8;
|
10590
|
+
-ms-flex-order: 8;
|
10591
|
+
order: 8; }
|
10592
|
+
.mdl-cell--order-9-phone.mdl-cell--order-9-phone {
|
10593
|
+
-webkit-order: 9;
|
10594
|
+
-ms-flex-order: 9;
|
10595
|
+
order: 9; }
|
10596
|
+
.mdl-cell--order-10-phone.mdl-cell--order-10-phone {
|
10597
|
+
-webkit-order: 10;
|
10598
|
+
-ms-flex-order: 10;
|
10599
|
+
order: 10; }
|
10600
|
+
.mdl-cell--order-11-phone.mdl-cell--order-11-phone {
|
10601
|
+
-webkit-order: 11;
|
10602
|
+
-ms-flex-order: 11;
|
10603
|
+
order: 11; }
|
10604
|
+
.mdl-cell--order-12-phone.mdl-cell--order-12-phone {
|
10605
|
+
-webkit-order: 12;
|
10606
|
+
-ms-flex-order: 12;
|
10607
|
+
order: 12; }
|
9514
10608
|
.mdl-cell--1-col,
|
9515
10609
|
.mdl-cell--1-col-phone.mdl-cell--1-col-phone {
|
9516
10610
|
width: calc(25% - 16px); }
|
@@ -9582,7 +10676,25 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9582
10676
|
width: calc(100% - 16px); }
|
9583
10677
|
.mdl-grid--no-spacing > .mdl-cell--12-col, .mdl-grid--no-spacing >
|
9584
10678
|
.mdl-cell--12-col-phone.mdl-cell--12-col-phone {
|
9585
|
-
width: 100%; }
|
10679
|
+
width: 100%; }
|
10680
|
+
.mdl-cell--1-offset,
|
10681
|
+
.mdl-cell--1-offset-phone.mdl-cell--1-offset-phone {
|
10682
|
+
margin-left: calc(25% + 8px); }
|
10683
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--1-offset, .mdl-grid.mdl-grid--no-spacing >
|
10684
|
+
.mdl-cell--1-offset-phone.mdl-cell--1-offset-phone {
|
10685
|
+
margin-left: 25%; }
|
10686
|
+
.mdl-cell--2-offset,
|
10687
|
+
.mdl-cell--2-offset-phone.mdl-cell--2-offset-phone {
|
10688
|
+
margin-left: calc(50% + 8px); }
|
10689
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--2-offset, .mdl-grid.mdl-grid--no-spacing >
|
10690
|
+
.mdl-cell--2-offset-phone.mdl-cell--2-offset-phone {
|
10691
|
+
margin-left: 50%; }
|
10692
|
+
.mdl-cell--3-offset,
|
10693
|
+
.mdl-cell--3-offset-phone.mdl-cell--3-offset-phone {
|
10694
|
+
margin-left: calc(75% + 8px); }
|
10695
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--3-offset, .mdl-grid.mdl-grid--no-spacing >
|
10696
|
+
.mdl-cell--3-offset-phone.mdl-cell--3-offset-phone {
|
10697
|
+
margin-left: 75%; } }
|
9586
10698
|
|
9587
10699
|
@media (min-width: 480px) and (max-width: 839px) {
|
9588
10700
|
.mdl-grid {
|
@@ -9594,6 +10706,54 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9594
10706
|
width: 50%; }
|
9595
10707
|
.mdl-cell--hide-tablet {
|
9596
10708
|
display: none !important; }
|
10709
|
+
.mdl-cell--order-1-tablet.mdl-cell--order-1-tablet {
|
10710
|
+
-webkit-order: 1;
|
10711
|
+
-ms-flex-order: 1;
|
10712
|
+
order: 1; }
|
10713
|
+
.mdl-cell--order-2-tablet.mdl-cell--order-2-tablet {
|
10714
|
+
-webkit-order: 2;
|
10715
|
+
-ms-flex-order: 2;
|
10716
|
+
order: 2; }
|
10717
|
+
.mdl-cell--order-3-tablet.mdl-cell--order-3-tablet {
|
10718
|
+
-webkit-order: 3;
|
10719
|
+
-ms-flex-order: 3;
|
10720
|
+
order: 3; }
|
10721
|
+
.mdl-cell--order-4-tablet.mdl-cell--order-4-tablet {
|
10722
|
+
-webkit-order: 4;
|
10723
|
+
-ms-flex-order: 4;
|
10724
|
+
order: 4; }
|
10725
|
+
.mdl-cell--order-5-tablet.mdl-cell--order-5-tablet {
|
10726
|
+
-webkit-order: 5;
|
10727
|
+
-ms-flex-order: 5;
|
10728
|
+
order: 5; }
|
10729
|
+
.mdl-cell--order-6-tablet.mdl-cell--order-6-tablet {
|
10730
|
+
-webkit-order: 6;
|
10731
|
+
-ms-flex-order: 6;
|
10732
|
+
order: 6; }
|
10733
|
+
.mdl-cell--order-7-tablet.mdl-cell--order-7-tablet {
|
10734
|
+
-webkit-order: 7;
|
10735
|
+
-ms-flex-order: 7;
|
10736
|
+
order: 7; }
|
10737
|
+
.mdl-cell--order-8-tablet.mdl-cell--order-8-tablet {
|
10738
|
+
-webkit-order: 8;
|
10739
|
+
-ms-flex-order: 8;
|
10740
|
+
order: 8; }
|
10741
|
+
.mdl-cell--order-9-tablet.mdl-cell--order-9-tablet {
|
10742
|
+
-webkit-order: 9;
|
10743
|
+
-ms-flex-order: 9;
|
10744
|
+
order: 9; }
|
10745
|
+
.mdl-cell--order-10-tablet.mdl-cell--order-10-tablet {
|
10746
|
+
-webkit-order: 10;
|
10747
|
+
-ms-flex-order: 10;
|
10748
|
+
order: 10; }
|
10749
|
+
.mdl-cell--order-11-tablet.mdl-cell--order-11-tablet {
|
10750
|
+
-webkit-order: 11;
|
10751
|
+
-ms-flex-order: 11;
|
10752
|
+
order: 11; }
|
10753
|
+
.mdl-cell--order-12-tablet.mdl-cell--order-12-tablet {
|
10754
|
+
-webkit-order: 12;
|
10755
|
+
-ms-flex-order: 12;
|
10756
|
+
order: 12; }
|
9597
10757
|
.mdl-cell--1-col,
|
9598
10758
|
.mdl-cell--1-col-tablet.mdl-cell--1-col-tablet {
|
9599
10759
|
width: calc(12.5% - 16px); }
|
@@ -9665,7 +10825,49 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9665
10825
|
width: calc(100% - 16px); }
|
9666
10826
|
.mdl-grid--no-spacing > .mdl-cell--12-col, .mdl-grid--no-spacing >
|
9667
10827
|
.mdl-cell--12-col-tablet.mdl-cell--12-col-tablet {
|
9668
|
-
width: 100%; }
|
10828
|
+
width: 100%; }
|
10829
|
+
.mdl-cell--1-offset,
|
10830
|
+
.mdl-cell--1-offset-tablet.mdl-cell--1-offset-tablet {
|
10831
|
+
margin-left: calc(12.5% + 8px); }
|
10832
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--1-offset, .mdl-grid.mdl-grid--no-spacing >
|
10833
|
+
.mdl-cell--1-offset-tablet.mdl-cell--1-offset-tablet {
|
10834
|
+
margin-left: 12.5%; }
|
10835
|
+
.mdl-cell--2-offset,
|
10836
|
+
.mdl-cell--2-offset-tablet.mdl-cell--2-offset-tablet {
|
10837
|
+
margin-left: calc(25% + 8px); }
|
10838
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--2-offset, .mdl-grid.mdl-grid--no-spacing >
|
10839
|
+
.mdl-cell--2-offset-tablet.mdl-cell--2-offset-tablet {
|
10840
|
+
margin-left: 25%; }
|
10841
|
+
.mdl-cell--3-offset,
|
10842
|
+
.mdl-cell--3-offset-tablet.mdl-cell--3-offset-tablet {
|
10843
|
+
margin-left: calc(37.5% + 8px); }
|
10844
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--3-offset, .mdl-grid.mdl-grid--no-spacing >
|
10845
|
+
.mdl-cell--3-offset-tablet.mdl-cell--3-offset-tablet {
|
10846
|
+
margin-left: 37.5%; }
|
10847
|
+
.mdl-cell--4-offset,
|
10848
|
+
.mdl-cell--4-offset-tablet.mdl-cell--4-offset-tablet {
|
10849
|
+
margin-left: calc(50% + 8px); }
|
10850
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--4-offset, .mdl-grid.mdl-grid--no-spacing >
|
10851
|
+
.mdl-cell--4-offset-tablet.mdl-cell--4-offset-tablet {
|
10852
|
+
margin-left: 50%; }
|
10853
|
+
.mdl-cell--5-offset,
|
10854
|
+
.mdl-cell--5-offset-tablet.mdl-cell--5-offset-tablet {
|
10855
|
+
margin-left: calc(62.5% + 8px); }
|
10856
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--5-offset, .mdl-grid.mdl-grid--no-spacing >
|
10857
|
+
.mdl-cell--5-offset-tablet.mdl-cell--5-offset-tablet {
|
10858
|
+
margin-left: 62.5%; }
|
10859
|
+
.mdl-cell--6-offset,
|
10860
|
+
.mdl-cell--6-offset-tablet.mdl-cell--6-offset-tablet {
|
10861
|
+
margin-left: calc(75% + 8px); }
|
10862
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--6-offset, .mdl-grid.mdl-grid--no-spacing >
|
10863
|
+
.mdl-cell--6-offset-tablet.mdl-cell--6-offset-tablet {
|
10864
|
+
margin-left: 75%; }
|
10865
|
+
.mdl-cell--7-offset,
|
10866
|
+
.mdl-cell--7-offset-tablet.mdl-cell--7-offset-tablet {
|
10867
|
+
margin-left: calc(87.5% + 8px); }
|
10868
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--7-offset, .mdl-grid.mdl-grid--no-spacing >
|
10869
|
+
.mdl-cell--7-offset-tablet.mdl-cell--7-offset-tablet {
|
10870
|
+
margin-left: 87.5%; } }
|
9669
10871
|
|
9670
10872
|
@media (min-width: 840px) {
|
9671
10873
|
.mdl-grid {
|
@@ -9677,6 +10879,54 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9677
10879
|
width: 33.3333333333%; }
|
9678
10880
|
.mdl-cell--hide-desktop {
|
9679
10881
|
display: none !important; }
|
10882
|
+
.mdl-cell--order-1-desktop.mdl-cell--order-1-desktop {
|
10883
|
+
-webkit-order: 1;
|
10884
|
+
-ms-flex-order: 1;
|
10885
|
+
order: 1; }
|
10886
|
+
.mdl-cell--order-2-desktop.mdl-cell--order-2-desktop {
|
10887
|
+
-webkit-order: 2;
|
10888
|
+
-ms-flex-order: 2;
|
10889
|
+
order: 2; }
|
10890
|
+
.mdl-cell--order-3-desktop.mdl-cell--order-3-desktop {
|
10891
|
+
-webkit-order: 3;
|
10892
|
+
-ms-flex-order: 3;
|
10893
|
+
order: 3; }
|
10894
|
+
.mdl-cell--order-4-desktop.mdl-cell--order-4-desktop {
|
10895
|
+
-webkit-order: 4;
|
10896
|
+
-ms-flex-order: 4;
|
10897
|
+
order: 4; }
|
10898
|
+
.mdl-cell--order-5-desktop.mdl-cell--order-5-desktop {
|
10899
|
+
-webkit-order: 5;
|
10900
|
+
-ms-flex-order: 5;
|
10901
|
+
order: 5; }
|
10902
|
+
.mdl-cell--order-6-desktop.mdl-cell--order-6-desktop {
|
10903
|
+
-webkit-order: 6;
|
10904
|
+
-ms-flex-order: 6;
|
10905
|
+
order: 6; }
|
10906
|
+
.mdl-cell--order-7-desktop.mdl-cell--order-7-desktop {
|
10907
|
+
-webkit-order: 7;
|
10908
|
+
-ms-flex-order: 7;
|
10909
|
+
order: 7; }
|
10910
|
+
.mdl-cell--order-8-desktop.mdl-cell--order-8-desktop {
|
10911
|
+
-webkit-order: 8;
|
10912
|
+
-ms-flex-order: 8;
|
10913
|
+
order: 8; }
|
10914
|
+
.mdl-cell--order-9-desktop.mdl-cell--order-9-desktop {
|
10915
|
+
-webkit-order: 9;
|
10916
|
+
-ms-flex-order: 9;
|
10917
|
+
order: 9; }
|
10918
|
+
.mdl-cell--order-10-desktop.mdl-cell--order-10-desktop {
|
10919
|
+
-webkit-order: 10;
|
10920
|
+
-ms-flex-order: 10;
|
10921
|
+
order: 10; }
|
10922
|
+
.mdl-cell--order-11-desktop.mdl-cell--order-11-desktop {
|
10923
|
+
-webkit-order: 11;
|
10924
|
+
-ms-flex-order: 11;
|
10925
|
+
order: 11; }
|
10926
|
+
.mdl-cell--order-12-desktop.mdl-cell--order-12-desktop {
|
10927
|
+
-webkit-order: 12;
|
10928
|
+
-ms-flex-order: 12;
|
10929
|
+
order: 12; }
|
9680
10930
|
.mdl-cell--1-col,
|
9681
10931
|
.mdl-cell--1-col-desktop.mdl-cell--1-col-desktop {
|
9682
10932
|
width: calc(8.3333333333% - 16px); }
|
@@ -9748,4 +10998,70 @@ _:-ms-input-placeholder, :root .mdl-slider.mdl-slider.is-upgraded {
|
|
9748
10998
|
width: calc(100% - 16px); }
|
9749
10999
|
.mdl-grid--no-spacing > .mdl-cell--12-col, .mdl-grid--no-spacing >
|
9750
11000
|
.mdl-cell--12-col-desktop.mdl-cell--12-col-desktop {
|
9751
|
-
width: 100%; }
|
11001
|
+
width: 100%; }
|
11002
|
+
.mdl-cell--1-offset,
|
11003
|
+
.mdl-cell--1-offset-desktop.mdl-cell--1-offset-desktop {
|
11004
|
+
margin-left: calc(8.3333333333% + 8px); }
|
11005
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--1-offset, .mdl-grid.mdl-grid--no-spacing >
|
11006
|
+
.mdl-cell--1-offset-desktop.mdl-cell--1-offset-desktop {
|
11007
|
+
margin-left: 8.3333333333%; }
|
11008
|
+
.mdl-cell--2-offset,
|
11009
|
+
.mdl-cell--2-offset-desktop.mdl-cell--2-offset-desktop {
|
11010
|
+
margin-left: calc(16.6666666667% + 8px); }
|
11011
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--2-offset, .mdl-grid.mdl-grid--no-spacing >
|
11012
|
+
.mdl-cell--2-offset-desktop.mdl-cell--2-offset-desktop {
|
11013
|
+
margin-left: 16.6666666667%; }
|
11014
|
+
.mdl-cell--3-offset,
|
11015
|
+
.mdl-cell--3-offset-desktop.mdl-cell--3-offset-desktop {
|
11016
|
+
margin-left: calc(25% + 8px); }
|
11017
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--3-offset, .mdl-grid.mdl-grid--no-spacing >
|
11018
|
+
.mdl-cell--3-offset-desktop.mdl-cell--3-offset-desktop {
|
11019
|
+
margin-left: 25%; }
|
11020
|
+
.mdl-cell--4-offset,
|
11021
|
+
.mdl-cell--4-offset-desktop.mdl-cell--4-offset-desktop {
|
11022
|
+
margin-left: calc(33.3333333333% + 8px); }
|
11023
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--4-offset, .mdl-grid.mdl-grid--no-spacing >
|
11024
|
+
.mdl-cell--4-offset-desktop.mdl-cell--4-offset-desktop {
|
11025
|
+
margin-left: 33.3333333333%; }
|
11026
|
+
.mdl-cell--5-offset,
|
11027
|
+
.mdl-cell--5-offset-desktop.mdl-cell--5-offset-desktop {
|
11028
|
+
margin-left: calc(41.6666666667% + 8px); }
|
11029
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--5-offset, .mdl-grid.mdl-grid--no-spacing >
|
11030
|
+
.mdl-cell--5-offset-desktop.mdl-cell--5-offset-desktop {
|
11031
|
+
margin-left: 41.6666666667%; }
|
11032
|
+
.mdl-cell--6-offset,
|
11033
|
+
.mdl-cell--6-offset-desktop.mdl-cell--6-offset-desktop {
|
11034
|
+
margin-left: calc(50% + 8px); }
|
11035
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--6-offset, .mdl-grid.mdl-grid--no-spacing >
|
11036
|
+
.mdl-cell--6-offset-desktop.mdl-cell--6-offset-desktop {
|
11037
|
+
margin-left: 50%; }
|
11038
|
+
.mdl-cell--7-offset,
|
11039
|
+
.mdl-cell--7-offset-desktop.mdl-cell--7-offset-desktop {
|
11040
|
+
margin-left: calc(58.3333333333% + 8px); }
|
11041
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--7-offset, .mdl-grid.mdl-grid--no-spacing >
|
11042
|
+
.mdl-cell--7-offset-desktop.mdl-cell--7-offset-desktop {
|
11043
|
+
margin-left: 58.3333333333%; }
|
11044
|
+
.mdl-cell--8-offset,
|
11045
|
+
.mdl-cell--8-offset-desktop.mdl-cell--8-offset-desktop {
|
11046
|
+
margin-left: calc(66.6666666667% + 8px); }
|
11047
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--8-offset, .mdl-grid.mdl-grid--no-spacing >
|
11048
|
+
.mdl-cell--8-offset-desktop.mdl-cell--8-offset-desktop {
|
11049
|
+
margin-left: 66.6666666667%; }
|
11050
|
+
.mdl-cell--9-offset,
|
11051
|
+
.mdl-cell--9-offset-desktop.mdl-cell--9-offset-desktop {
|
11052
|
+
margin-left: calc(75% + 8px); }
|
11053
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--9-offset, .mdl-grid.mdl-grid--no-spacing >
|
11054
|
+
.mdl-cell--9-offset-desktop.mdl-cell--9-offset-desktop {
|
11055
|
+
margin-left: 75%; }
|
11056
|
+
.mdl-cell--10-offset,
|
11057
|
+
.mdl-cell--10-offset-desktop.mdl-cell--10-offset-desktop {
|
11058
|
+
margin-left: calc(83.3333333333% + 8px); }
|
11059
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--10-offset, .mdl-grid.mdl-grid--no-spacing >
|
11060
|
+
.mdl-cell--10-offset-desktop.mdl-cell--10-offset-desktop {
|
11061
|
+
margin-left: 83.3333333333%; }
|
11062
|
+
.mdl-cell--11-offset,
|
11063
|
+
.mdl-cell--11-offset-desktop.mdl-cell--11-offset-desktop {
|
11064
|
+
margin-left: calc(91.6666666667% + 8px); }
|
11065
|
+
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--11-offset, .mdl-grid.mdl-grid--no-spacing >
|
11066
|
+
.mdl-cell--11-offset-desktop.mdl-cell--11-offset-desktop {
|
11067
|
+
margin-left: 91.6666666667%; } }
|