rails-angular-material 0.9.0.pre.rc1 → 0.9.0.pre.rc2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/rails-angular-material/version.rb +1 -1
- data/vendor/assets/javascripts/angular-material.js +5124 -5283
- data/vendor/assets/javascripts/angular-material.min.js +121 -125
- data/vendor/assets/stylesheets/angular-material.css +460 -452
- data/vendor/assets/stylesheets/angular-material.min.css +2 -2
- metadata +2 -2
@@ -2,7 +2,7 @@
|
|
2
2
|
* Angular Material Design
|
3
3
|
* https://github.com/angular/material
|
4
4
|
* @license MIT
|
5
|
-
* v0.9.0-
|
5
|
+
* v0.9.0-rc2
|
6
6
|
*/
|
7
7
|
/* mixin definition ; sets LTR and RTL within the same style call */
|
8
8
|
html, body {
|
@@ -115,6 +115,16 @@ input[type="search"] {
|
|
115
115
|
.md-margin {
|
116
116
|
margin: 8px; }
|
117
117
|
|
118
|
+
.md-virtual-scroll-container {
|
119
|
+
display: block;
|
120
|
+
position: relative;
|
121
|
+
overflow: hidden;
|
122
|
+
width: 100%; }
|
123
|
+
|
124
|
+
.md-virtual-scroller {
|
125
|
+
position: absolute;
|
126
|
+
width: 100%; }
|
127
|
+
|
118
128
|
@media (min-width: 600px) {
|
119
129
|
.md-padding {
|
120
130
|
padding: 16px; }
|
@@ -3809,37 +3819,6 @@ md-bottom-sheet {
|
|
3809
3819
|
border: 1px solid #fff; }
|
3810
3820
|
}
|
3811
3821
|
|
3812
|
-
md-card {
|
3813
|
-
box-sizing: border-box;
|
3814
|
-
display: -webkit-flex;
|
3815
|
-
display: -ms-flexbox;
|
3816
|
-
display: flex;
|
3817
|
-
-webkit-flex-direction: column;
|
3818
|
-
-ms-flex-direction: column;
|
3819
|
-
flex-direction: column;
|
3820
|
-
margin: 8px;
|
3821
|
-
box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.26); }
|
3822
|
-
md-card > img, md-card > :not(md-card-content) img {
|
3823
|
-
-webkit-order: 0;
|
3824
|
-
-ms-flex-order: 0;
|
3825
|
-
order: 0;
|
3826
|
-
width: 100%; }
|
3827
|
-
md-card md-card-content {
|
3828
|
-
-webkit-order: 1;
|
3829
|
-
-ms-flex-order: 1;
|
3830
|
-
order: 1;
|
3831
|
-
padding: 16px; }
|
3832
|
-
md-card md-card-footer {
|
3833
|
-
-webkit-order: 2;
|
3834
|
-
-ms-flex-order: 2;
|
3835
|
-
order: 2;
|
3836
|
-
padding: 16px; }
|
3837
|
-
|
3838
|
-
@media screen and (-ms-high-contrast: active) {
|
3839
|
-
md-card {
|
3840
|
-
border: 1px solid #fff; }
|
3841
|
-
}
|
3842
|
-
|
3843
3822
|
md-checkbox {
|
3844
3823
|
box-sizing: border-box;
|
3845
3824
|
display: block;
|
@@ -3850,7 +3829,10 @@ md-checkbox {
|
|
3850
3829
|
-webkit-user-select: none;
|
3851
3830
|
-moz-user-select: none;
|
3852
3831
|
-ms-user-select: none;
|
3853
|
-
user-select: none;
|
3832
|
+
user-select: none;
|
3833
|
+
padding-left: 18px;
|
3834
|
+
position: relative;
|
3835
|
+
line-height: 26px; }
|
3854
3836
|
md-checkbox *, md-checkbox *:before, md-checkbox *:after {
|
3855
3837
|
box-sizing: border-box; }
|
3856
3838
|
md-checkbox.md-focused:not([disabled]) .md-container:before {
|
@@ -3861,11 +3843,14 @@ md-checkbox {
|
|
3861
3843
|
md-checkbox.md-focused:not([disabled]):not(.md-checked) .md-container:before {
|
3862
3844
|
background-color: rgba(0, 0, 0, 0.12); }
|
3863
3845
|
md-checkbox .md-container {
|
3864
|
-
position:
|
3865
|
-
top:
|
3846
|
+
position: absolute;
|
3847
|
+
top: 50%;
|
3848
|
+
left: 0;
|
3866
3849
|
display: inline-block;
|
3867
3850
|
width: 18px;
|
3868
|
-
height: 18px;
|
3851
|
+
height: 18px;
|
3852
|
+
-webkit-transform: translateY(-50%);
|
3853
|
+
transform: translateY(-50%); }
|
3869
3854
|
md-checkbox .md-container:before {
|
3870
3855
|
background-color: transparent;
|
3871
3856
|
border-radius: 50%;
|
@@ -3920,7 +3905,7 @@ md-checkbox {
|
|
3920
3905
|
border: 2px solid;
|
3921
3906
|
border-top: 0;
|
3922
3907
|
border-left: 0;
|
3923
|
-
content: '
|
3908
|
+
content: ''; }
|
3924
3909
|
md-checkbox .md-label {
|
3925
3910
|
position: relative;
|
3926
3911
|
display: inline-block;
|
@@ -3967,7 +3952,7 @@ md-checkbox {
|
|
3967
3952
|
display: block;
|
3968
3953
|
font-family: RobotoDraft, Roboto, 'Helvetica Neue', sans-serif;
|
3969
3954
|
font-size: 1.3rem;
|
3970
|
-
padding: 0 0
|
3955
|
+
padding: 0 0 0.8rem 0;
|
3971
3956
|
vertical-align: middle;
|
3972
3957
|
cursor: text; }
|
3973
3958
|
.md-chips:after {
|
@@ -4105,16 +4090,16 @@ md-dialog {
|
|
4105
4090
|
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
|
4106
4091
|
-webkit-transform: translate3d(0, 100%, 0) scale(0.2);
|
4107
4092
|
transform: translate3d(0, 100%, 0) scale(0.2); }
|
4108
|
-
md-dialog md-content {
|
4093
|
+
md-dialog > md-content {
|
4109
4094
|
-webkit-order: 1;
|
4110
4095
|
-ms-flex-order: 1;
|
4111
4096
|
order: 1;
|
4112
4097
|
padding: 24px;
|
4113
4098
|
overflow: auto;
|
4114
4099
|
-webkit-overflow-scrolling: touch; }
|
4115
|
-
md-dialog md-content:not([layout=row]) > *:first-child:not(.md-subheader) {
|
4100
|
+
md-dialog > md-content:not([layout=row]) > *:first-child:not(.md-subheader) {
|
4116
4101
|
margin-top: 0; }
|
4117
|
-
md-dialog md-content:focus {
|
4102
|
+
md-dialog > md-content:focus {
|
4118
4103
|
outline: none; }
|
4119
4104
|
md-dialog .md-actions {
|
4120
4105
|
display: -webkit-flex;
|
@@ -4144,6 +4129,33 @@ md-dialog {
|
|
4144
4129
|
border: 1px solid #fff; }
|
4145
4130
|
}
|
4146
4131
|
|
4132
|
+
md-card {
|
4133
|
+
box-sizing: border-box;
|
4134
|
+
display: -webkit-flex;
|
4135
|
+
display: -ms-flexbox;
|
4136
|
+
display: flex;
|
4137
|
+
-webkit-flex-direction: column;
|
4138
|
+
-ms-flex-direction: column;
|
4139
|
+
flex-direction: column;
|
4140
|
+
margin: 8px;
|
4141
|
+
box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.26); }
|
4142
|
+
md-card > img, md-card > :not(md-card-content) img {
|
4143
|
+
width: 100%; }
|
4144
|
+
md-card md-card-content {
|
4145
|
+
padding: 16px; }
|
4146
|
+
md-card md-action-bar {
|
4147
|
+
margin: 0; }
|
4148
|
+
md-card md-action-bar .md-button {
|
4149
|
+
margin-bottom: 8px;
|
4150
|
+
margin-top: 8px; }
|
4151
|
+
md-card md-card-footer {
|
4152
|
+
padding: 16px; }
|
4153
|
+
|
4154
|
+
@media screen and (-ms-high-contrast: active) {
|
4155
|
+
md-card {
|
4156
|
+
border: 1px solid #fff; }
|
4157
|
+
}
|
4158
|
+
|
4147
4159
|
md-divider {
|
4148
4160
|
display: block;
|
4149
4161
|
border-top: 1px solid;
|
@@ -4215,44 +4227,332 @@ md-grid-list {
|
|
4215
4227
|
border-top: 1px solid #fff; }
|
4216
4228
|
}
|
4217
4229
|
|
4218
|
-
|
4219
|
-
|
4220
|
-
|
4221
|
-
|
4222
|
-
|
4223
|
-
|
4224
|
-
|
4225
|
-
|
4226
|
-
|
4230
|
+
md-icon {
|
4231
|
+
margin: auto;
|
4232
|
+
background-repeat: no-repeat no-repeat;
|
4233
|
+
display: inline-block;
|
4234
|
+
vertical-align: middle;
|
4235
|
+
fill: currentcolor;
|
4236
|
+
height: 24px;
|
4237
|
+
width: 24px; }
|
4238
|
+
md-icon svg {
|
4239
|
+
pointer-events: none; }
|
4227
4240
|
|
4228
|
-
|
4229
|
-
|
4230
|
-
|
4231
|
-
|
4241
|
+
md-list {
|
4242
|
+
display: block;
|
4243
|
+
padding: 8px 0px 8px 0px; }
|
4244
|
+
md-list .md-subheader {
|
4245
|
+
line-height: 0.75em; }
|
4232
4246
|
|
4233
|
-
|
4234
|
-
|
4235
|
-
|
4247
|
+
md-list-item.md-no-proxy, md-list-item .md-no-style {
|
4248
|
+
position: relative;
|
4249
|
+
padding: 0px 16px;
|
4250
|
+
-webkit-flex: 1;
|
4251
|
+
-ms-flex: 1;
|
4252
|
+
flex: 1;
|
4253
|
+
transition: background-color 0.15s linear; }
|
4254
|
+
md-list-item.md-no-proxy.md-button, md-list-item .md-no-style.md-button {
|
4255
|
+
height: inherit;
|
4256
|
+
text-align: left;
|
4257
|
+
text-transform: none;
|
4258
|
+
width: 100%; }
|
4259
|
+
md-list-item.md-no-proxy:focus, md-list-item .md-no-style:focus {
|
4260
|
+
outline: none; }
|
4261
|
+
md-list-item.md-with-secondary {
|
4262
|
+
position: relative; }
|
4263
|
+
md-list-item.md-clickable:hover {
|
4264
|
+
cursor: pointer; }
|
4265
|
+
md-list-item md-divider {
|
4266
|
+
position: absolute;
|
4267
|
+
bottom: 0;
|
4268
|
+
left: 0;
|
4269
|
+
width: 100%; }
|
4270
|
+
md-list-item md-divider[md-inset] {
|
4271
|
+
left: 96px;
|
4272
|
+
width: calc(100% - 96px);
|
4273
|
+
margin: 0; }
|
4236
4274
|
|
4237
|
-
|
4238
|
-
|
4239
|
-
|
4240
|
-
|
4275
|
+
md-list-item, md-list-item .md-list-item-inner {
|
4276
|
+
display: -webkit-flex;
|
4277
|
+
display: -ms-flexbox;
|
4278
|
+
display: flex;
|
4279
|
+
-webkit-justify-content: flex-start;
|
4280
|
+
-ms-flex-pack: start;
|
4281
|
+
justify-content: flex-start;
|
4282
|
+
-webkit-align-items: center;
|
4283
|
+
-ms-flex-align: center;
|
4284
|
+
align-items: center; }
|
4285
|
+
md-list-item > div.md-primary > md-icon, md-list-item > div.md-secondary > md-icon, md-list-item > md-icon:first-child, md-list-item > md-icon.md-secondary, md-list-item .md-list-item-inner > div.md-primary > md-icon, md-list-item .md-list-item-inner > div.md-secondary > md-icon, md-list-item .md-list-item-inner > md-icon:first-child, md-list-item .md-list-item-inner > md-icon.md-secondary {
|
4286
|
+
width: 24px;
|
4287
|
+
margin-top: 12px;
|
4288
|
+
margin-bottom: 12px;
|
4289
|
+
box-sizing: content-box; }
|
4290
|
+
md-list-item > div.md-primary > md-icon:focus, md-list-item > div.md-secondary > md-icon:focus, md-list-item > md-icon:first-child:focus, md-list-item > md-icon.md-secondary:focus, md-list-item .md-list-item-inner > div.md-primary > md-icon:focus, md-list-item .md-list-item-inner > div.md-secondary > md-icon:focus, md-list-item .md-list-item-inner > md-icon:first-child:focus, md-list-item .md-list-item-inner > md-icon.md-secondary:focus {
|
4291
|
+
border-radius: 2px;
|
4292
|
+
outline: none;
|
4293
|
+
padding: 6px;
|
4294
|
+
margin-top: 6px;
|
4295
|
+
margin-bottom: 6px;
|
4296
|
+
margin-right: -6px; }
|
4297
|
+
md-list-item > div.md-primary > md-checkbox, md-list-item > div.md-secondary > md-checkbox, md-list-item > md-checkbox:first-child, md-list-item md-checkbox.md-secondary, md-list-item .md-list-item-inner > div.md-primary > md-checkbox, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox, md-list-item .md-list-item-inner > md-checkbox:first-child, md-list-item .md-list-item-inner md-checkbox.md-secondary {
|
4298
|
+
position: relative;
|
4299
|
+
top: -2px;
|
4300
|
+
margin-top: 14px;
|
4301
|
+
margin-bottom: 12px;
|
4302
|
+
-webkit-align-self: center;
|
4303
|
+
-ms-flex-item-align: center;
|
4304
|
+
align-self: center; }
|
4305
|
+
md-list-item > div.md-primary > md-checkbox .md-label, md-list-item > div.md-secondary > md-checkbox .md-label, md-list-item > md-checkbox:first-child .md-label, md-list-item md-checkbox.md-secondary .md-label, md-list-item .md-list-item-inner > div.md-primary > md-checkbox .md-label, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox .md-label, md-list-item .md-list-item-inner > md-checkbox:first-child .md-label, md-list-item .md-list-item-inner md-checkbox.md-secondary .md-label {
|
4306
|
+
display: none; }
|
4307
|
+
md-list-item > div.md-primary > md-checkbox:not(:first-child):focus, md-list-item > div.md-secondary > md-checkbox:not(:first-child):focus, md-list-item > md-checkbox:first-child:not(:first-child):focus, md-list-item md-checkbox.md-secondary:not(:first-child):focus, md-list-item .md-list-item-inner > div.md-primary > md-checkbox:not(:first-child):focus, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox:not(:first-child):focus, md-list-item .md-list-item-inner > md-checkbox:first-child:not(:first-child):focus, md-list-item .md-list-item-inner md-checkbox.md-secondary:not(:first-child):focus {
|
4308
|
+
padding: 6px;
|
4309
|
+
margin-right: -6px;
|
4310
|
+
margin-top: 8px;
|
4311
|
+
margin-bottom: 6px; }
|
4312
|
+
md-list-item > md-icon:first-child, md-list-item .md-list-item-inner > md-icon:first-child {
|
4313
|
+
margin-right: 32px; }
|
4314
|
+
md-list-item > md-checkbox:first-child, md-list-item .md-list-item-inner > md-checkbox:first-child {
|
4315
|
+
width: 24px;
|
4316
|
+
margin-left: 3px;
|
4317
|
+
margin-right: 29px; }
|
4318
|
+
md-list-item > .md-avatar:first-child, md-list-item .md-list-item-inner > .md-avatar:first-child {
|
4319
|
+
width: 40px;
|
4320
|
+
height: 40px;
|
4321
|
+
margin-top: 8px;
|
4322
|
+
margin-bottom: 8px;
|
4323
|
+
margin-right: 16px;
|
4324
|
+
border-radius: 50%;
|
4325
|
+
box-sizing: content-box; }
|
4326
|
+
md-list-item md-checkbox.md-secondary, md-list-item md-switch.md-secondary, md-list-item .md-list-item-inner md-checkbox.md-secondary, md-list-item .md-list-item-inner md-switch.md-secondary {
|
4327
|
+
margin-right: 0; }
|
4328
|
+
md-list-item button.md-button.md-secondary-container, md-list-item .md-list-item-inner button.md-button.md-secondary-container {
|
4329
|
+
background-color: transparent;
|
4330
|
+
-webkit-align-self: center;
|
4331
|
+
-ms-flex-item-align: center;
|
4332
|
+
align-self: center;
|
4333
|
+
border-radius: 50%;
|
4334
|
+
margin: 0px;
|
4335
|
+
min-width: 0px; }
|
4336
|
+
md-list-item button.md-button.md-secondary-container .md-ripple, md-list-item button.md-button.md-secondary-container .md-ripple-container, md-list-item .md-list-item-inner button.md-button.md-secondary-container .md-ripple, md-list-item .md-list-item-inner button.md-button.md-secondary-container .md-ripple-container {
|
4337
|
+
border-radius: 50%; }
|
4338
|
+
md-list-item .md-secondary-container, md-list-item .md-secondary, md-list-item .md-list-item-inner .md-secondary-container, md-list-item .md-list-item-inner .md-secondary {
|
4339
|
+
margin-left: 16px;
|
4340
|
+
position: absolute;
|
4341
|
+
right: 16px;
|
4342
|
+
top: 0; }
|
4343
|
+
md-list-item > .md-button.md-secondary-container > .md-secondary, md-list-item .md-list-item-inner > .md-button.md-secondary-container > .md-secondary {
|
4344
|
+
margin-left: 0px;
|
4345
|
+
position: static; }
|
4346
|
+
md-list-item > p, md-list-item > .md-list-item-inner > p, md-list-item .md-list-item-inner > p, md-list-item .md-list-item-inner > .md-list-item-inner > p {
|
4347
|
+
-webkit-flex: 1;
|
4348
|
+
-ms-flex: 1;
|
4349
|
+
flex: 1;
|
4350
|
+
margin: 0; }
|
4241
4351
|
|
4242
|
-
|
4243
|
-
|
4244
|
-
|
4352
|
+
md-list-item.md-2-line, md-list-item.md-2-line > .md-no-style, md-list-item.md-3-line, md-list-item.md-3-line > .md-no-style {
|
4353
|
+
-webkit-align-items: flex-start;
|
4354
|
+
-ms-flex-align: start;
|
4355
|
+
align-items: flex-start; }
|
4356
|
+
md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text, md-list-item.md-3-line .md-list-item-text, md-list-item.md-3-line > .md-no-style .md-list-item-text {
|
4357
|
+
-webkit-flex: 1;
|
4358
|
+
-ms-flex: 1;
|
4359
|
+
flex: 1;
|
4360
|
+
padding: 16px 0;
|
4361
|
+
text-overflow: ellipsis; }
|
4362
|
+
md-list-item.md-2-line .md-list-item-text.md-offset, md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, md-list-item.md-3-line .md-list-item-text.md-offset, md-list-item.md-3-line > .md-no-style .md-list-item-text.md-offset {
|
4363
|
+
margin-left: 56px; }
|
4364
|
+
md-list-item.md-2-line .md-list-item-text h3, md-list-item.md-2-line > .md-no-style .md-list-item-text h3, md-list-item.md-3-line .md-list-item-text h3, md-list-item.md-3-line > .md-no-style .md-list-item-text h3 {
|
4365
|
+
margin: 0 0 6px 0;
|
4366
|
+
line-height: 0.75em; }
|
4367
|
+
md-list-item.md-2-line .md-list-item-text h4, md-list-item.md-2-line > .md-no-style .md-list-item-text h4, md-list-item.md-3-line .md-list-item-text h4, md-list-item.md-3-line > .md-no-style .md-list-item-text h4 {
|
4368
|
+
font-weight: 400;
|
4369
|
+
margin: 10px 0 5px 0;
|
4370
|
+
line-height: 0.75em; }
|
4371
|
+
md-list-item.md-2-line .md-list-item-text p, md-list-item.md-2-line > .md-no-style .md-list-item-text p, md-list-item.md-3-line .md-list-item-text p, md-list-item.md-3-line > .md-no-style .md-list-item-text p {
|
4372
|
+
margin: 0 0 0px 0;
|
4373
|
+
line-height: 1.6em; }
|
4245
4374
|
|
4246
|
-
|
4247
|
-
|
4248
|
-
|
4249
|
-
|
4375
|
+
md-list-item.md-2-line > .md-avatar:first-child, md-list-item.md-2-line > .md-no-style > .md-avatar:first-child {
|
4376
|
+
margin-top: 12px; }
|
4377
|
+
md-list-item.md-2-line > md-icon:first-child, md-list-item.md-2-line > .md-no-style > md-icon:first-child {
|
4378
|
+
-webkit-align-self: center;
|
4379
|
+
-ms-flex-item-align: center;
|
4380
|
+
align-self: center; }
|
4381
|
+
md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text {
|
4382
|
+
-webkit-flex: 1;
|
4383
|
+
-ms-flex: 1;
|
4384
|
+
flex: 1;
|
4385
|
+
padding-top: 19px; }
|
4250
4386
|
|
4251
|
-
|
4252
|
-
|
4253
|
-
transform: rotate(5deg); } }
|
4387
|
+
md-list-item.md-3-line > md-icon:first-child, md-list-item.md-3-line > .md-avatar:first-child, md-list-item.md-3-line > .md-no-style > md-icon:first-child, md-list-item.md-3-line > .md-no-style > .md-avatar:first-child {
|
4388
|
+
margin-top: 16px; }
|
4254
4389
|
|
4255
|
-
|
4390
|
+
md-input-container {
|
4391
|
+
display: -webkit-flex;
|
4392
|
+
display: -ms-flexbox;
|
4393
|
+
display: flex;
|
4394
|
+
position: relative;
|
4395
|
+
-webkit-flex-direction: column;
|
4396
|
+
-ms-flex-direction: column;
|
4397
|
+
flex-direction: column;
|
4398
|
+
overflow-x: hidden;
|
4399
|
+
padding: 2px;
|
4400
|
+
padding-bottom: 26px;
|
4401
|
+
/*
|
4402
|
+
* The .md-input class is added to the input/textarea
|
4403
|
+
*/ }
|
4404
|
+
md-input-container > md-icon {
|
4405
|
+
position: absolute;
|
4406
|
+
top: 5px;
|
4407
|
+
left: 2px; }
|
4408
|
+
md-input-container > md-icon + input {
|
4409
|
+
margin-left: 56px; }
|
4410
|
+
md-input-container textarea, md-input-container input[type="text"], md-input-container input[type="password"], md-input-container input[type="datetime"], md-input-container input[type="datetime-local"], md-input-container input[type="date"], md-input-container input[type="month"], md-input-container input[type="time"], md-input-container input[type="week"], md-input-container input[type="number"], md-input-container input[type="email"], md-input-container input[type="url"], md-input-container input[type="search"], md-input-container input[type="tel"], md-input-container input[type="color"] {
|
4411
|
+
/* remove default appearance from all input/textarea */
|
4412
|
+
-moz-appearance: none;
|
4413
|
+
-webkit-appearance: none; }
|
4414
|
+
md-input-container textarea {
|
4415
|
+
resize: none;
|
4416
|
+
overflow: hidden; }
|
4417
|
+
md-input-container textarea.md-input {
|
4418
|
+
min-height: 56px;
|
4419
|
+
-ms-flex-preferred-size: auto; }
|
4420
|
+
md-input-container label:not(.md-no-float), md-input-container .md-placeholder:not(.md-select-label) {
|
4421
|
+
-webkit-order: 1;
|
4422
|
+
-ms-flex-order: 1;
|
4423
|
+
order: 1;
|
4424
|
+
pointer-events: none;
|
4425
|
+
-webkit-font-smoothing: antialiased;
|
4426
|
+
padding-left: 2px;
|
4427
|
+
z-index: 1;
|
4428
|
+
-webkit-transform: translate3d(0, 24px, 0) scale(1);
|
4429
|
+
transform: translate3d(0, 24px, 0) scale(1);
|
4430
|
+
transition: -webkit-transform cubic-bezier(0.25, 0.8, 0.25, 1) 0.25s;
|
4431
|
+
transition: transform cubic-bezier(0.25, 0.8, 0.25, 1) 0.25s;
|
4432
|
+
-webkit-transform-origin: left top;
|
4433
|
+
transform-origin: left top; }
|
4434
|
+
html[dir=rtl] md-input-container label:not(.md-no-float), html[dir=rtl] md-input-container .md-placeholder:not(.md-select-label) {
|
4435
|
+
-webkit-transform-origin: right top;
|
4436
|
+
transform-origin: right top; }
|
4437
|
+
md-input-container .md-placeholder:not(.md-select-label) {
|
4438
|
+
position: absolute;
|
4439
|
+
top: 0;
|
4440
|
+
opacity: 0;
|
4441
|
+
transition-property: opacity, -webkit-transform;
|
4442
|
+
transition-property: opacity, transform;
|
4443
|
+
-webkit-transform: translate3d(0, 30px, 0);
|
4444
|
+
transform: translate3d(0, 30px, 0); }
|
4445
|
+
md-input-container.md-input-focused .md-placeholder {
|
4446
|
+
opacity: 1;
|
4447
|
+
-webkit-transform: translate3d(0, 24px, 0);
|
4448
|
+
transform: translate3d(0, 24px, 0); }
|
4449
|
+
md-input-container.md-input-has-value .md-placeholder {
|
4450
|
+
transition: none;
|
4451
|
+
opacity: 0; }
|
4452
|
+
md-input-container:not(.md-input-has-value) input:not(:focus) {
|
4453
|
+
color: transparent; }
|
4454
|
+
md-input-container .md-input {
|
4455
|
+
-webkit-flex: 1 1 auto;
|
4456
|
+
-ms-flex: 1 1 auto;
|
4457
|
+
flex: 1 1 auto;
|
4458
|
+
-webkit-order: 2;
|
4459
|
+
-ms-flex-order: 2;
|
4460
|
+
order: 2;
|
4461
|
+
display: block;
|
4462
|
+
background: none;
|
4463
|
+
padding-top: 2px;
|
4464
|
+
padding-bottom: 1px;
|
4465
|
+
padding-left: 2px;
|
4466
|
+
padding-right: 2px;
|
4467
|
+
border-width: 0 0 1px 0;
|
4468
|
+
line-height: 26px;
|
4469
|
+
-ms-flex-preferred-size: 26px;
|
4470
|
+
border-radius: 0; }
|
4471
|
+
md-input-container .md-input:focus {
|
4472
|
+
outline: none; }
|
4473
|
+
md-input-container .md-input:invalid {
|
4474
|
+
outline: none;
|
4475
|
+
box-shadow: none; }
|
4476
|
+
md-input-container ng-messages, md-input-container data-ng-messages, md-input-container x-ng-messages, md-input-container [ng-messages], md-input-container [data-ng-messages], md-input-container [x-ng-messages] {
|
4477
|
+
-webkit-order: 3;
|
4478
|
+
-ms-flex-order: 3;
|
4479
|
+
order: 3;
|
4480
|
+
position: relative; }
|
4481
|
+
md-input-container ng-message, md-input-container data-ng-message, md-input-container x-ng-message, md-input-container [ng-message], md-input-container [data-ng-message], md-input-container [x-ng-message], md-input-container .md-char-counter {
|
4482
|
+
-webkit-font-smoothing: antialiased;
|
4483
|
+
position: absolute;
|
4484
|
+
font-size: 12px;
|
4485
|
+
line-height: 24px; }
|
4486
|
+
md-input-container ng-message.ng-enter, md-input-container data-ng-message.ng-enter, md-input-container x-ng-message.ng-enter, md-input-container [ng-message].ng-enter, md-input-container [data-ng-message].ng-enter, md-input-container [x-ng-message].ng-enter, md-input-container .md-char-counter.ng-enter {
|
4487
|
+
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
|
4488
|
+
transition-delay: 0.2s; }
|
4489
|
+
md-input-container ng-message.ng-leave, md-input-container data-ng-message.ng-leave, md-input-container x-ng-message.ng-leave, md-input-container [ng-message].ng-leave, md-input-container [data-ng-message].ng-leave, md-input-container [x-ng-message].ng-leave, md-input-container .md-char-counter.ng-leave {
|
4490
|
+
transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2); }
|
4491
|
+
md-input-container ng-message.ng-enter, md-input-container ng-message.ng-leave.ng-leave-active, md-input-container data-ng-message.ng-enter, md-input-container data-ng-message.ng-leave.ng-leave-active, md-input-container x-ng-message.ng-enter, md-input-container x-ng-message.ng-leave.ng-leave-active, md-input-container [ng-message].ng-enter, md-input-container [ng-message].ng-leave.ng-leave-active, md-input-container [data-ng-message].ng-enter, md-input-container [data-ng-message].ng-leave.ng-leave-active, md-input-container [x-ng-message].ng-enter, md-input-container [x-ng-message].ng-leave.ng-leave-active, md-input-container .md-char-counter.ng-enter, md-input-container .md-char-counter.ng-leave.ng-leave-active {
|
4492
|
+
opacity: 0;
|
4493
|
+
-webkit-transform: translate3d(0, -20%, 0);
|
4494
|
+
transform: translate3d(0, -20%, 0); }
|
4495
|
+
md-input-container ng-message.ng-leave, md-input-container ng-message.ng-enter.ng-enter-active, md-input-container data-ng-message.ng-leave, md-input-container data-ng-message.ng-enter.ng-enter-active, md-input-container x-ng-message.ng-leave, md-input-container x-ng-message.ng-enter.ng-enter-active, md-input-container [ng-message].ng-leave, md-input-container [ng-message].ng-enter.ng-enter-active, md-input-container [data-ng-message].ng-leave, md-input-container [data-ng-message].ng-enter.ng-enter-active, md-input-container [x-ng-message].ng-leave, md-input-container [x-ng-message].ng-enter.ng-enter-active, md-input-container .md-char-counter.ng-leave, md-input-container .md-char-counter.ng-enter.ng-enter-active {
|
4496
|
+
opacity: 1;
|
4497
|
+
-webkit-transform: translate3d(0, 0, 0);
|
4498
|
+
transform: translate3d(0, 0, 0); }
|
4499
|
+
md-input-container .md-char-counter {
|
4500
|
+
bottom: 2px;
|
4501
|
+
right: 2px; }
|
4502
|
+
md-input-container.md-input-focused label:not(.md-no-float), md-input-container.md-input-has-value label:not(.md-no-float) {
|
4503
|
+
-webkit-transform: translate3d(0, 4px, 0) scale(0.75);
|
4504
|
+
transform: translate3d(0, 4px, 0) scale(0.75); }
|
4505
|
+
md-input-container.md-input-focused .md-input, md-input-container .md-input.ng-invalid.ng-dirty {
|
4506
|
+
padding-bottom: 0;
|
4507
|
+
border-width: 0 0 2px 0; }
|
4508
|
+
md-input-container .md-input[disabled], [disabled] md-input-container .md-input {
|
4509
|
+
background-position: 0 bottom;
|
4510
|
+
background-size: 3px 1px;
|
4511
|
+
background-repeat: repeat-x; }
|
4512
|
+
|
4513
|
+
@media screen and (-ms-high-contrast: active) {
|
4514
|
+
md-input-container.md-default-theme > md-icon {
|
4515
|
+
fill: #fff; }
|
4516
|
+
}
|
4517
|
+
|
4518
|
+
@-webkit-keyframes outer-rotate {
|
4519
|
+
100% {
|
4520
|
+
-webkit-transform: rotate(360deg);
|
4521
|
+
transform: rotate(360deg); } }
|
4522
|
+
|
4523
|
+
@keyframes outer-rotate {
|
4524
|
+
100% {
|
4525
|
+
-webkit-transform: rotate(360deg);
|
4526
|
+
transform: rotate(360deg); } }
|
4527
|
+
|
4528
|
+
@-webkit-keyframes left-wobble {
|
4529
|
+
0%, 100% {
|
4530
|
+
-webkit-transform: rotate(130deg);
|
4531
|
+
transform: rotate(130deg); }
|
4532
|
+
|
4533
|
+
50% {
|
4534
|
+
-webkit-transform: rotate(-5deg);
|
4535
|
+
transform: rotate(-5deg); } }
|
4536
|
+
|
4537
|
+
@keyframes left-wobble {
|
4538
|
+
0%, 100% {
|
4539
|
+
-webkit-transform: rotate(130deg);
|
4540
|
+
transform: rotate(130deg); }
|
4541
|
+
|
4542
|
+
50% {
|
4543
|
+
-webkit-transform: rotate(-5deg);
|
4544
|
+
transform: rotate(-5deg); } }
|
4545
|
+
|
4546
|
+
@-webkit-keyframes right-wobble {
|
4547
|
+
0%, 100% {
|
4548
|
+
-webkit-transform: rotate(-130deg);
|
4549
|
+
transform: rotate(-130deg); }
|
4550
|
+
|
4551
|
+
50% {
|
4552
|
+
-webkit-transform: rotate(5deg);
|
4553
|
+
transform: rotate(5deg); } }
|
4554
|
+
|
4555
|
+
@keyframes right-wobble {
|
4256
4556
|
0%, 100% {
|
4257
4557
|
-webkit-transform: rotate(-130deg);
|
4258
4558
|
transform: rotate(-130deg); }
|
@@ -5516,153 +5816,23 @@ md-progress-circular {
|
|
5516
5816
|
-webkit-animation-name: none;
|
5517
5817
|
animation-name: none; }
|
5518
5818
|
|
5519
|
-
md-
|
5520
|
-
display:
|
5521
|
-
|
5522
|
-
|
5523
|
-
|
5524
|
-
|
5525
|
-
|
5526
|
-
|
5527
|
-
overflow-x: hidden;
|
5528
|
-
padding: 2px;
|
5529
|
-
padding-bottom: 26px;
|
5530
|
-
/*
|
5531
|
-
* The .md-input class is added to the input/textarea
|
5532
|
-
*/ }
|
5533
|
-
md-input-container > md-icon {
|
5534
|
-
position: absolute;
|
5819
|
+
md-progress-linear {
|
5820
|
+
display: block;
|
5821
|
+
width: 100%;
|
5822
|
+
height: 5px; }
|
5823
|
+
md-progress-linear .md-container {
|
5824
|
+
overflow: hidden;
|
5825
|
+
position: relative;
|
5826
|
+
height: 5px;
|
5535
5827
|
top: 5px;
|
5536
|
-
|
5537
|
-
|
5538
|
-
|
5539
|
-
md-
|
5540
|
-
|
5541
|
-
|
5542
|
-
|
5543
|
-
|
5544
|
-
resize: none;
|
5545
|
-
overflow: hidden; }
|
5546
|
-
md-input-container textarea.md-input {
|
5547
|
-
min-height: 56px;
|
5548
|
-
-ms-flex-preferred-size: auto; }
|
5549
|
-
md-input-container label:not(.md-no-float), md-input-container .md-placeholder:not(.md-select-label) {
|
5550
|
-
-webkit-order: 1;
|
5551
|
-
-ms-flex-order: 1;
|
5552
|
-
order: 1;
|
5553
|
-
pointer-events: none;
|
5554
|
-
-webkit-font-smoothing: antialiased;
|
5555
|
-
padding-left: 2px;
|
5556
|
-
z-index: 1;
|
5557
|
-
-webkit-transform: translate3d(0, 24px, 0) scale(1);
|
5558
|
-
transform: translate3d(0, 24px, 0) scale(1);
|
5559
|
-
transition: -webkit-transform cubic-bezier(0.25, 0.8, 0.25, 1) 0.25s;
|
5560
|
-
transition: transform cubic-bezier(0.25, 0.8, 0.25, 1) 0.25s;
|
5561
|
-
-webkit-transform-origin: left top;
|
5562
|
-
transform-origin: left top; }
|
5563
|
-
html[dir=rtl] md-input-container label:not(.md-no-float), html[dir=rtl] md-input-container .md-placeholder:not(.md-select-label) {
|
5564
|
-
-webkit-transform-origin: left top;
|
5565
|
-
transform-origin: left top;
|
5566
|
-
-webkit-transform-origin: right top;
|
5567
|
-
transform-origin: right top; }
|
5568
|
-
md-input-container .md-placeholder:not(.md-select-label) {
|
5569
|
-
position: absolute;
|
5570
|
-
top: 0;
|
5571
|
-
opacity: 0;
|
5572
|
-
transition-property: opacity, -webkit-transform;
|
5573
|
-
transition-property: opacity, transform;
|
5574
|
-
-webkit-transform: translate3d(0, 30px, 0);
|
5575
|
-
transform: translate3d(0, 30px, 0); }
|
5576
|
-
md-input-container.md-input-focused .md-placeholder {
|
5577
|
-
opacity: 1;
|
5578
|
-
-webkit-transform: translate3d(0, 24px, 0);
|
5579
|
-
transform: translate3d(0, 24px, 0); }
|
5580
|
-
md-input-container.md-input-has-value .md-placeholder {
|
5581
|
-
transition: none;
|
5582
|
-
opacity: 0; }
|
5583
|
-
md-input-container:not(.md-input-has-value) input:not(:focus) {
|
5584
|
-
color: transparent; }
|
5585
|
-
md-input-container .md-input {
|
5586
|
-
-webkit-flex: 1 1 auto;
|
5587
|
-
-ms-flex: 1 1 auto;
|
5588
|
-
flex: 1 1 auto;
|
5589
|
-
-webkit-order: 2;
|
5590
|
-
-ms-flex-order: 2;
|
5591
|
-
order: 2;
|
5592
|
-
display: block;
|
5593
|
-
background: none;
|
5594
|
-
padding-top: 2px;
|
5595
|
-
padding-bottom: 1px;
|
5596
|
-
padding-left: 2px;
|
5597
|
-
padding-right: 2px;
|
5598
|
-
border-width: 0 0 1px 0;
|
5599
|
-
line-height: 26px;
|
5600
|
-
-ms-flex-preferred-size: 26px;
|
5601
|
-
border-radius: 0; }
|
5602
|
-
md-input-container .md-input:focus {
|
5603
|
-
outline: none; }
|
5604
|
-
md-input-container .md-input:invalid {
|
5605
|
-
outline: none;
|
5606
|
-
box-shadow: none; }
|
5607
|
-
md-input-container ng-messages, md-input-container data-ng-messages, md-input-container x-ng-messages, md-input-container [ng-messages], md-input-container [data-ng-messages], md-input-container [x-ng-messages] {
|
5608
|
-
-webkit-order: 3;
|
5609
|
-
-ms-flex-order: 3;
|
5610
|
-
order: 3;
|
5611
|
-
position: relative; }
|
5612
|
-
md-input-container ng-message, md-input-container data-ng-message, md-input-container x-ng-message, md-input-container [ng-message], md-input-container [data-ng-message], md-input-container [x-ng-message], md-input-container .md-char-counter {
|
5613
|
-
-webkit-font-smoothing: antialiased;
|
5614
|
-
position: absolute;
|
5615
|
-
font-size: 12px;
|
5616
|
-
line-height: 24px; }
|
5617
|
-
md-input-container ng-message.ng-enter, md-input-container data-ng-message.ng-enter, md-input-container x-ng-message.ng-enter, md-input-container [ng-message].ng-enter, md-input-container [data-ng-message].ng-enter, md-input-container [x-ng-message].ng-enter, md-input-container .md-char-counter.ng-enter {
|
5618
|
-
transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
|
5619
|
-
transition-delay: 0.2s; }
|
5620
|
-
md-input-container ng-message.ng-leave, md-input-container data-ng-message.ng-leave, md-input-container x-ng-message.ng-leave, md-input-container [ng-message].ng-leave, md-input-container [data-ng-message].ng-leave, md-input-container [x-ng-message].ng-leave, md-input-container .md-char-counter.ng-leave {
|
5621
|
-
transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2); }
|
5622
|
-
md-input-container ng-message.ng-enter, md-input-container ng-message.ng-leave.ng-leave-active, md-input-container data-ng-message.ng-enter, md-input-container data-ng-message.ng-leave.ng-leave-active, md-input-container x-ng-message.ng-enter, md-input-container x-ng-message.ng-leave.ng-leave-active, md-input-container [ng-message].ng-enter, md-input-container [ng-message].ng-leave.ng-leave-active, md-input-container [data-ng-message].ng-enter, md-input-container [data-ng-message].ng-leave.ng-leave-active, md-input-container [x-ng-message].ng-enter, md-input-container [x-ng-message].ng-leave.ng-leave-active, md-input-container .md-char-counter.ng-enter, md-input-container .md-char-counter.ng-leave.ng-leave-active {
|
5623
|
-
opacity: 0;
|
5624
|
-
-webkit-transform: translate3d(0, -20%, 0);
|
5625
|
-
transform: translate3d(0, -20%, 0); }
|
5626
|
-
md-input-container ng-message.ng-leave, md-input-container ng-message.ng-enter.ng-enter-active, md-input-container data-ng-message.ng-leave, md-input-container data-ng-message.ng-enter.ng-enter-active, md-input-container x-ng-message.ng-leave, md-input-container x-ng-message.ng-enter.ng-enter-active, md-input-container [ng-message].ng-leave, md-input-container [ng-message].ng-enter.ng-enter-active, md-input-container [data-ng-message].ng-leave, md-input-container [data-ng-message].ng-enter.ng-enter-active, md-input-container [x-ng-message].ng-leave, md-input-container [x-ng-message].ng-enter.ng-enter-active, md-input-container .md-char-counter.ng-leave, md-input-container .md-char-counter.ng-enter.ng-enter-active {
|
5627
|
-
opacity: 1;
|
5628
|
-
-webkit-transform: translate3d(0, 0, 0);
|
5629
|
-
transform: translate3d(0, 0, 0); }
|
5630
|
-
md-input-container .md-char-counter {
|
5631
|
-
bottom: 2px;
|
5632
|
-
right: 2px; }
|
5633
|
-
md-input-container.md-input-focused label:not(.md-no-float), md-input-container.md-input-has-value label:not(.md-no-float) {
|
5634
|
-
-webkit-transform: translate3d(0, 4px, 0) scale(0.75);
|
5635
|
-
transform: translate3d(0, 4px, 0) scale(0.75); }
|
5636
|
-
md-input-container.md-input-focused .md-input, md-input-container .md-input.ng-invalid.ng-dirty {
|
5637
|
-
padding-bottom: 0;
|
5638
|
-
border-width: 0 0 2px 0; }
|
5639
|
-
md-input-container .md-input[disabled], [disabled] md-input-container .md-input {
|
5640
|
-
background-position: 0 bottom;
|
5641
|
-
background-size: 3px 1px;
|
5642
|
-
background-repeat: repeat-x; }
|
5643
|
-
|
5644
|
-
@media screen and (-ms-high-contrast: active) {
|
5645
|
-
md-input-container.md-default-theme > md-icon {
|
5646
|
-
fill: #fff; }
|
5647
|
-
}
|
5648
|
-
|
5649
|
-
md-progress-linear {
|
5650
|
-
display: block;
|
5651
|
-
width: 100%;
|
5652
|
-
height: 5px; }
|
5653
|
-
md-progress-linear .md-container {
|
5654
|
-
overflow: hidden;
|
5655
|
-
position: relative;
|
5656
|
-
height: 5px;
|
5657
|
-
top: 5px;
|
5658
|
-
-webkit-transform: translate(0, 5px) scale(1, 0);
|
5659
|
-
transform: translate(0, 5px) scale(1, 0);
|
5660
|
-
transition: all 0.3s linear; }
|
5661
|
-
md-progress-linear .md-container.md-ready {
|
5662
|
-
-webkit-transform: translate(0, 0) scale(1, 1);
|
5663
|
-
transform: translate(0, 0) scale(1, 1); }
|
5664
|
-
md-progress-linear .md-bar {
|
5665
|
-
height: 5px;
|
5828
|
+
-webkit-transform: translate(0, 5px) scale(1, 0);
|
5829
|
+
transform: translate(0, 5px) scale(1, 0);
|
5830
|
+
transition: all 0.3s linear; }
|
5831
|
+
md-progress-linear .md-container.md-ready {
|
5832
|
+
-webkit-transform: translate(0, 0) scale(1, 1);
|
5833
|
+
transform: translate(0, 0) scale(1, 1); }
|
5834
|
+
md-progress-linear .md-bar {
|
5835
|
+
height: 5px;
|
5666
5836
|
position: absolute;
|
5667
5837
|
width: 100%; }
|
5668
5838
|
md-progress-linear .md-bar1, md-progress-linear .md-bar2 {
|
@@ -6007,155 +6177,6 @@ md-progress-linear {
|
|
6007
6177
|
opacity: 1;
|
6008
6178
|
background-position: -200px -23px; } }
|
6009
6179
|
|
6010
|
-
md-list {
|
6011
|
-
display: block;
|
6012
|
-
padding: 8px 0px 8px 0px; }
|
6013
|
-
md-list .md-subheader {
|
6014
|
-
line-height: 0.75em; }
|
6015
|
-
|
6016
|
-
md-list-item.md-no-proxy, md-list-item .md-no-style {
|
6017
|
-
position: relative;
|
6018
|
-
padding: 0px 16px;
|
6019
|
-
-webkit-flex: 1;
|
6020
|
-
-ms-flex: 1;
|
6021
|
-
flex: 1;
|
6022
|
-
transition: background-color 0.15s linear; }
|
6023
|
-
md-list-item.md-no-proxy.md-button, md-list-item .md-no-style.md-button {
|
6024
|
-
height: inherit;
|
6025
|
-
text-align: left;
|
6026
|
-
text-transform: none;
|
6027
|
-
width: 100%; }
|
6028
|
-
md-list-item.md-no-proxy:focus, md-list-item .md-no-style:focus {
|
6029
|
-
outline: none; }
|
6030
|
-
md-list-item.md-with-secondary {
|
6031
|
-
position: relative; }
|
6032
|
-
md-list-item.md-clickable:hover {
|
6033
|
-
cursor: pointer; }
|
6034
|
-
md-list-item md-divider {
|
6035
|
-
position: absolute;
|
6036
|
-
bottom: 0;
|
6037
|
-
left: 0;
|
6038
|
-
width: 100%; }
|
6039
|
-
md-list-item md-divider[md-inset] {
|
6040
|
-
left: 96px;
|
6041
|
-
width: calc(100% - 96px);
|
6042
|
-
margin: 0; }
|
6043
|
-
|
6044
|
-
md-list-item, md-list-item .md-list-item-inner {
|
6045
|
-
display: -webkit-flex;
|
6046
|
-
display: -ms-flexbox;
|
6047
|
-
display: flex;
|
6048
|
-
-webkit-justify-content: flex-start;
|
6049
|
-
-ms-flex-pack: start;
|
6050
|
-
justify-content: flex-start;
|
6051
|
-
-webkit-align-items: center;
|
6052
|
-
-ms-flex-align: center;
|
6053
|
-
align-items: center; }
|
6054
|
-
md-list-item > div.md-primary > md-icon, md-list-item > div.md-secondary > md-icon, md-list-item > md-icon:first-child, md-list-item > md-icon.md-secondary, md-list-item .md-list-item-inner > div.md-primary > md-icon, md-list-item .md-list-item-inner > div.md-secondary > md-icon, md-list-item .md-list-item-inner > md-icon:first-child, md-list-item .md-list-item-inner > md-icon.md-secondary {
|
6055
|
-
width: 24px;
|
6056
|
-
margin-top: 12px;
|
6057
|
-
margin-bottom: 12px;
|
6058
|
-
box-sizing: content-box; }
|
6059
|
-
md-list-item > div.md-primary > md-icon:focus, md-list-item > div.md-secondary > md-icon:focus, md-list-item > md-icon:first-child:focus, md-list-item > md-icon.md-secondary:focus, md-list-item .md-list-item-inner > div.md-primary > md-icon:focus, md-list-item .md-list-item-inner > div.md-secondary > md-icon:focus, md-list-item .md-list-item-inner > md-icon:first-child:focus, md-list-item .md-list-item-inner > md-icon.md-secondary:focus {
|
6060
|
-
border-radius: 2px;
|
6061
|
-
outline: none;
|
6062
|
-
padding: 6px;
|
6063
|
-
margin-top: 6px;
|
6064
|
-
margin-bottom: 6px;
|
6065
|
-
margin-right: -6px; }
|
6066
|
-
md-list-item > div.md-primary > md-checkbox, md-list-item > div.md-secondary > md-checkbox, md-list-item > md-checkbox:first-child, md-list-item md-checkbox.md-secondary, md-list-item .md-list-item-inner > div.md-primary > md-checkbox, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox, md-list-item .md-list-item-inner > md-checkbox:first-child, md-list-item .md-list-item-inner md-checkbox.md-secondary {
|
6067
|
-
position: relative;
|
6068
|
-
top: -2px;
|
6069
|
-
margin-top: 14px;
|
6070
|
-
margin-bottom: 12px;
|
6071
|
-
-webkit-align-self: center;
|
6072
|
-
-ms-flex-item-align: center;
|
6073
|
-
align-self: center; }
|
6074
|
-
md-list-item > div.md-primary > md-checkbox .md-label, md-list-item > div.md-secondary > md-checkbox .md-label, md-list-item > md-checkbox:first-child .md-label, md-list-item md-checkbox.md-secondary .md-label, md-list-item .md-list-item-inner > div.md-primary > md-checkbox .md-label, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox .md-label, md-list-item .md-list-item-inner > md-checkbox:first-child .md-label, md-list-item .md-list-item-inner md-checkbox.md-secondary .md-label {
|
6075
|
-
display: none; }
|
6076
|
-
md-list-item > div.md-primary > md-checkbox:not(:first-child):focus, md-list-item > div.md-secondary > md-checkbox:not(:first-child):focus, md-list-item > md-checkbox:first-child:not(:first-child):focus, md-list-item md-checkbox.md-secondary:not(:first-child):focus, md-list-item .md-list-item-inner > div.md-primary > md-checkbox:not(:first-child):focus, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox:not(:first-child):focus, md-list-item .md-list-item-inner > md-checkbox:first-child:not(:first-child):focus, md-list-item .md-list-item-inner md-checkbox.md-secondary:not(:first-child):focus {
|
6077
|
-
padding: 6px;
|
6078
|
-
margin-right: -6px;
|
6079
|
-
margin-top: 8px;
|
6080
|
-
margin-bottom: 6px; }
|
6081
|
-
md-list-item > md-icon:first-child, md-list-item .md-list-item-inner > md-icon:first-child {
|
6082
|
-
margin-right: 32px; }
|
6083
|
-
md-list-item > md-checkbox:first-child, md-list-item .md-list-item-inner > md-checkbox:first-child {
|
6084
|
-
width: 24px;
|
6085
|
-
margin-left: 3px;
|
6086
|
-
margin-right: 29px; }
|
6087
|
-
md-list-item > .md-avatar:first-child, md-list-item .md-list-item-inner > .md-avatar:first-child {
|
6088
|
-
width: 40px;
|
6089
|
-
height: 40px;
|
6090
|
-
margin-top: 8px;
|
6091
|
-
margin-bottom: 8px;
|
6092
|
-
margin-right: 16px;
|
6093
|
-
border-radius: 50%;
|
6094
|
-
box-sizing: content-box; }
|
6095
|
-
md-list-item md-checkbox.md-secondary, md-list-item md-switch.md-secondary, md-list-item .md-list-item-inner md-checkbox.md-secondary, md-list-item .md-list-item-inner md-switch.md-secondary {
|
6096
|
-
margin-right: 0; }
|
6097
|
-
md-list-item button.md-button.md-secondary-container, md-list-item .md-list-item-inner button.md-button.md-secondary-container {
|
6098
|
-
background-color: transparent;
|
6099
|
-
-webkit-align-self: center;
|
6100
|
-
-ms-flex-item-align: center;
|
6101
|
-
align-self: center;
|
6102
|
-
border-radius: 50%;
|
6103
|
-
margin: 0px;
|
6104
|
-
min-width: 0px; }
|
6105
|
-
md-list-item button.md-button.md-secondary-container .md-ripple, md-list-item button.md-button.md-secondary-container .md-ripple-container, md-list-item .md-list-item-inner button.md-button.md-secondary-container .md-ripple, md-list-item .md-list-item-inner button.md-button.md-secondary-container .md-ripple-container {
|
6106
|
-
border-radius: 50%; }
|
6107
|
-
md-list-item .md-secondary-container, md-list-item .md-secondary, md-list-item .md-list-item-inner .md-secondary-container, md-list-item .md-list-item-inner .md-secondary {
|
6108
|
-
margin-left: 16px;
|
6109
|
-
position: absolute;
|
6110
|
-
right: 16px;
|
6111
|
-
top: 0; }
|
6112
|
-
md-list-item > .md-button.md-secondary-container > .md-secondary, md-list-item .md-list-item-inner > .md-button.md-secondary-container > .md-secondary {
|
6113
|
-
margin-left: 0px;
|
6114
|
-
position: static; }
|
6115
|
-
md-list-item > p, md-list-item > .md-list-item-inner > p, md-list-item .md-list-item-inner > p, md-list-item .md-list-item-inner > .md-list-item-inner > p {
|
6116
|
-
-webkit-flex: 1;
|
6117
|
-
-ms-flex: 1;
|
6118
|
-
flex: 1;
|
6119
|
-
margin: 0; }
|
6120
|
-
|
6121
|
-
md-list-item.md-2-line, md-list-item.md-2-line > .md-no-style, md-list-item.md-3-line, md-list-item.md-3-line > .md-no-style {
|
6122
|
-
-webkit-align-items: flex-start;
|
6123
|
-
-ms-flex-align: start;
|
6124
|
-
align-items: flex-start; }
|
6125
|
-
md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text, md-list-item.md-3-line .md-list-item-text, md-list-item.md-3-line > .md-no-style .md-list-item-text {
|
6126
|
-
-webkit-flex: 1;
|
6127
|
-
-ms-flex: 1;
|
6128
|
-
flex: 1;
|
6129
|
-
padding: 16px 0;
|
6130
|
-
text-overflow: ellipsis; }
|
6131
|
-
md-list-item.md-2-line .md-list-item-text.md-offset, md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, md-list-item.md-3-line .md-list-item-text.md-offset, md-list-item.md-3-line > .md-no-style .md-list-item-text.md-offset {
|
6132
|
-
margin-left: 56px; }
|
6133
|
-
md-list-item.md-2-line .md-list-item-text h3, md-list-item.md-2-line > .md-no-style .md-list-item-text h3, md-list-item.md-3-line .md-list-item-text h3, md-list-item.md-3-line > .md-no-style .md-list-item-text h3 {
|
6134
|
-
margin: 0 0 6px 0;
|
6135
|
-
line-height: 0.75em; }
|
6136
|
-
md-list-item.md-2-line .md-list-item-text h4, md-list-item.md-2-line > .md-no-style .md-list-item-text h4, md-list-item.md-3-line .md-list-item-text h4, md-list-item.md-3-line > .md-no-style .md-list-item-text h4 {
|
6137
|
-
font-weight: 400;
|
6138
|
-
margin: 10px 0 5px 0;
|
6139
|
-
line-height: 0.75em; }
|
6140
|
-
md-list-item.md-2-line .md-list-item-text p, md-list-item.md-2-line > .md-no-style .md-list-item-text p, md-list-item.md-3-line .md-list-item-text p, md-list-item.md-3-line > .md-no-style .md-list-item-text p {
|
6141
|
-
margin: 0 0 0px 0;
|
6142
|
-
line-height: 1.6em; }
|
6143
|
-
|
6144
|
-
md-list-item.md-2-line > .md-avatar:first-child, md-list-item.md-2-line > .md-no-style > .md-avatar:first-child {
|
6145
|
-
margin-top: 12px; }
|
6146
|
-
md-list-item.md-2-line > md-icon:first-child, md-list-item.md-2-line > .md-no-style > md-icon:first-child {
|
6147
|
-
-webkit-align-self: center;
|
6148
|
-
-ms-flex-item-align: center;
|
6149
|
-
align-self: center; }
|
6150
|
-
md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text {
|
6151
|
-
-webkit-flex: 1;
|
6152
|
-
-ms-flex: 1;
|
6153
|
-
flex: 1;
|
6154
|
-
padding-top: 19px; }
|
6155
|
-
|
6156
|
-
md-list-item.md-3-line > md-icon:first-child, md-list-item.md-3-line > .md-avatar:first-child, md-list-item.md-3-line > .md-no-style > md-icon:first-child, md-list-item.md-3-line > .md-no-style > .md-avatar:first-child {
|
6157
|
-
margin-top: 16px; }
|
6158
|
-
|
6159
6180
|
md-radio-button, .md-switch-thumb {
|
6160
6181
|
box-sizing: border-box;
|
6161
6182
|
display: block;
|
@@ -6289,7 +6310,7 @@ md-select {
|
|
6289
6310
|
border-bottom: 2px solid; }
|
6290
6311
|
md-select:not([disabled]):focus .md-select-label {
|
6291
6312
|
border-bottom: 2px solid;
|
6292
|
-
padding-bottom:
|
6313
|
+
padding-bottom: 9px; }
|
6293
6314
|
|
6294
6315
|
.md-select-label {
|
6295
6316
|
display: -webkit-flex;
|
@@ -6298,8 +6319,8 @@ md-select {
|
|
6298
6319
|
-webkit-align-items: center;
|
6299
6320
|
-ms-flex-align: center;
|
6300
6321
|
align-items: center;
|
6301
|
-
padding-top:
|
6302
|
-
padding-bottom:
|
6322
|
+
padding-top: 7px;
|
6323
|
+
padding-bottom: 10px;
|
6303
6324
|
border-bottom: 1px solid;
|
6304
6325
|
font-size: 1.6rem;
|
6305
6326
|
line-height: 0.8em;
|
@@ -6348,8 +6369,6 @@ md-select-menu {
|
|
6348
6369
|
padding-top: 8px;
|
6349
6370
|
padding-bottom: 8px; }
|
6350
6371
|
html[dir=rtl] md-select-menu {
|
6351
|
-
-webkit-transform-origin: left top;
|
6352
|
-
transform-origin: left top;
|
6353
6372
|
-webkit-transform-origin: right top;
|
6354
6373
|
transform-origin: right top; }
|
6355
6374
|
md-select-menu md-content {
|
@@ -7133,75 +7152,6 @@ md-tab {
|
|
7133
7152
|
.md-tab.ng-leave {
|
7134
7153
|
transition: none; }
|
7135
7154
|
|
7136
|
-
md-toolbar {
|
7137
|
-
box-sizing: border-box;
|
7138
|
-
display: -webkit-flex;
|
7139
|
-
display: -ms-flexbox;
|
7140
|
-
display: flex;
|
7141
|
-
-webkit-flex-direction: column;
|
7142
|
-
-ms-flex-direction: column;
|
7143
|
-
flex-direction: column;
|
7144
|
-
position: relative;
|
7145
|
-
z-index: 2;
|
7146
|
-
font-size: 2rem;
|
7147
|
-
min-height: 64px;
|
7148
|
-
width: 100%; }
|
7149
|
-
md-toolbar *, md-toolbar *:before, md-toolbar *:after {
|
7150
|
-
box-sizing: border-box; }
|
7151
|
-
md-toolbar.md-tall {
|
7152
|
-
height: 128px;
|
7153
|
-
min-height: 128px;
|
7154
|
-
max-height: 128px; }
|
7155
|
-
md-toolbar.md-medium-tall {
|
7156
|
-
height: 88px;
|
7157
|
-
min-height: 88px;
|
7158
|
-
max-height: 88px; }
|
7159
|
-
md-toolbar.md-medium-tall .md-toolbar-tools {
|
7160
|
-
height: 48px;
|
7161
|
-
min-height: 48px;
|
7162
|
-
max-height: 48px; }
|
7163
|
-
md-toolbar .md-indent {
|
7164
|
-
margin-left: 64px; }
|
7165
|
-
|
7166
|
-
.md-toolbar-tools {
|
7167
|
-
font-weight: 400;
|
7168
|
-
display: -webkit-flex;
|
7169
|
-
display: -ms-flexbox;
|
7170
|
-
display: flex;
|
7171
|
-
-webkit-align-items: center;
|
7172
|
-
-ms-flex-align: center;
|
7173
|
-
align-items: center;
|
7174
|
-
-webkit-flex-direction: row;
|
7175
|
-
-ms-flex-direction: row;
|
7176
|
-
flex-direction: row;
|
7177
|
-
width: 100%;
|
7178
|
-
height: 64px;
|
7179
|
-
max-height: 64px;
|
7180
|
-
padding: 0 16px;
|
7181
|
-
margin: 0; }
|
7182
|
-
.md-toolbar-tools h2, .md-toolbar-tools h3 {
|
7183
|
-
font-size: inherit;
|
7184
|
-
font-weight: inherit;
|
7185
|
-
margin: inherit; }
|
7186
|
-
.md-toolbar-tools a {
|
7187
|
-
color: inherit;
|
7188
|
-
text-decoration: none; }
|
7189
|
-
.md-toolbar-tools .fill-height {
|
7190
|
-
display: -webkit-flex;
|
7191
|
-
display: -ms-flexbox;
|
7192
|
-
display: flex;
|
7193
|
-
-webkit-align-items: center;
|
7194
|
-
-ms-flex-align: center;
|
7195
|
-
align-items: center; }
|
7196
|
-
.md-toolbar-tools .md-button {
|
7197
|
-
margin-top: 0;
|
7198
|
-
margin-bottom: 0; }
|
7199
|
-
.md-toolbar-tools > .md-button:first-child {
|
7200
|
-
margin-left: -0.8rem; }
|
7201
|
-
@media screen and (-ms-high-contrast: active) {
|
7202
|
-
.md-toolbar-tools {
|
7203
|
-
border-bottom: 1px solid #fff; } }
|
7204
|
-
|
7205
7155
|
md-toast {
|
7206
7156
|
display: -webkit-flex;
|
7207
7157
|
display: -ms-flexbox;
|
@@ -7319,6 +7269,75 @@ md-toast {
|
|
7319
7269
|
border: 1px solid #fff; }
|
7320
7270
|
}
|
7321
7271
|
|
7272
|
+
md-toolbar {
|
7273
|
+
box-sizing: border-box;
|
7274
|
+
display: -webkit-flex;
|
7275
|
+
display: -ms-flexbox;
|
7276
|
+
display: flex;
|
7277
|
+
-webkit-flex-direction: column;
|
7278
|
+
-ms-flex-direction: column;
|
7279
|
+
flex-direction: column;
|
7280
|
+
position: relative;
|
7281
|
+
z-index: 2;
|
7282
|
+
font-size: 2rem;
|
7283
|
+
min-height: 64px;
|
7284
|
+
width: 100%; }
|
7285
|
+
md-toolbar *, md-toolbar *:before, md-toolbar *:after {
|
7286
|
+
box-sizing: border-box; }
|
7287
|
+
md-toolbar.md-tall {
|
7288
|
+
height: 128px;
|
7289
|
+
min-height: 128px;
|
7290
|
+
max-height: 128px; }
|
7291
|
+
md-toolbar.md-medium-tall {
|
7292
|
+
height: 88px;
|
7293
|
+
min-height: 88px;
|
7294
|
+
max-height: 88px; }
|
7295
|
+
md-toolbar.md-medium-tall .md-toolbar-tools {
|
7296
|
+
height: 48px;
|
7297
|
+
min-height: 48px;
|
7298
|
+
max-height: 48px; }
|
7299
|
+
md-toolbar .md-indent {
|
7300
|
+
margin-left: 64px; }
|
7301
|
+
|
7302
|
+
.md-toolbar-tools {
|
7303
|
+
font-weight: 400;
|
7304
|
+
display: -webkit-flex;
|
7305
|
+
display: -ms-flexbox;
|
7306
|
+
display: flex;
|
7307
|
+
-webkit-align-items: center;
|
7308
|
+
-ms-flex-align: center;
|
7309
|
+
align-items: center;
|
7310
|
+
-webkit-flex-direction: row;
|
7311
|
+
-ms-flex-direction: row;
|
7312
|
+
flex-direction: row;
|
7313
|
+
width: 100%;
|
7314
|
+
height: 64px;
|
7315
|
+
max-height: 64px;
|
7316
|
+
padding: 0 16px;
|
7317
|
+
margin: 0; }
|
7318
|
+
.md-toolbar-tools h2, .md-toolbar-tools h3 {
|
7319
|
+
font-size: inherit;
|
7320
|
+
font-weight: inherit;
|
7321
|
+
margin: inherit; }
|
7322
|
+
.md-toolbar-tools a {
|
7323
|
+
color: inherit;
|
7324
|
+
text-decoration: none; }
|
7325
|
+
.md-toolbar-tools .fill-height {
|
7326
|
+
display: -webkit-flex;
|
7327
|
+
display: -ms-flexbox;
|
7328
|
+
display: flex;
|
7329
|
+
-webkit-align-items: center;
|
7330
|
+
-ms-flex-align: center;
|
7331
|
+
align-items: center; }
|
7332
|
+
.md-toolbar-tools .md-button {
|
7333
|
+
margin-top: 0;
|
7334
|
+
margin-bottom: 0; }
|
7335
|
+
.md-toolbar-tools > .md-button:first-child {
|
7336
|
+
margin-left: -0.8rem; }
|
7337
|
+
@media screen and (-ms-high-contrast: active) {
|
7338
|
+
.md-toolbar-tools {
|
7339
|
+
border-bottom: 1px solid #fff; } }
|
7340
|
+
|
7322
7341
|
md-tooltip {
|
7323
7342
|
position: absolute;
|
7324
7343
|
font-size: 14px;
|
@@ -7392,14 +7411,3 @@ md-tooltip {
|
|
7392
7411
|
md-whiteframe {
|
7393
7412
|
border: 1px solid #fff; }
|
7394
7413
|
}
|
7395
|
-
|
7396
|
-
md-icon {
|
7397
|
-
margin: auto;
|
7398
|
-
background-repeat: no-repeat no-repeat;
|
7399
|
-
display: inline-block;
|
7400
|
-
vertical-align: middle;
|
7401
|
-
fill: currentcolor;
|
7402
|
-
height: 24px;
|
7403
|
-
width: 24px; }
|
7404
|
-
md-icon svg {
|
7405
|
-
pointer-events: none; }
|