simplecov-material 0.3.0 → 0.4.0
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/.github/workflows/builds.yml +37 -0
- data/.github/workflows/lints.yml +38 -0
- data/.github/workflows/tests.yml +26 -0
- data/.rubocop.yml +2 -2
- data/CHANGELOG.md +10 -1
- data/Gemfile +0 -1
- data/README.md +33 -4
- data/bin/publish +1 -1
- data/dist/scripts/table.js +71 -0
- data/dist/styles/main.scss +80 -0
- data/dist/styles/table.scss +12 -78
- data/lib/simplecov-material/version.rb +1 -1
- data/package.json +3 -3
- data/public/application.css +430 -122
- data/public/application.js +160 -40
- data/test/simplecov-material/simplecov_material_test.rb +1 -1
- data/test/test_helper.rb +0 -1
- data/views/group_page.erb +60 -23
- data/yarn.lock +1405 -1299
- metadata +6 -6
- data/.circleci/config.yml +0 -197
- data/.circleci/setup-rubygems.sh +0 -3
- data/.codeclimate.json +0 -86
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "simplecov-material",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.4.0",
|
4
4
|
"description": "HTML Material Design View for Simplecov formatter",
|
5
5
|
"scripts": {
|
6
6
|
"build": "webpack --config webpack.config.js",
|
@@ -24,7 +24,7 @@
|
|
24
24
|
],
|
25
25
|
"author": {
|
26
26
|
"name": "Christopher Pezza",
|
27
|
-
"email": "chiefpansancolt
|
27
|
+
"email": "github@chiefpansancolt.live"
|
28
28
|
},
|
29
29
|
"license": "MIT",
|
30
30
|
"bugs": {
|
@@ -33,7 +33,7 @@
|
|
33
33
|
"contributors": [
|
34
34
|
{
|
35
35
|
"name": "Christopher Pezza",
|
36
|
-
"email": "chiefpansancolt
|
36
|
+
"email": "github@chiefpansancolt.live"
|
37
37
|
}
|
38
38
|
],
|
39
39
|
"homepage": "https://github.com/chiefpansancolt/simplecov-material#readme",
|
data/public/application.css
CHANGED
@@ -28,8 +28,7 @@
|
|
28
28
|
/* Support for Firefox. */
|
29
29
|
-moz-osx-font-smoothing: grayscale;
|
30
30
|
/* Support for IE. */
|
31
|
-
|
32
|
-
font-feature-settings: 'liga'; }
|
31
|
+
font-feature-settings: 'liga'; }
|
33
32
|
.material-icons._10k:before {
|
34
33
|
content: "\e951"; }
|
35
34
|
.material-icons._10mp:before {
|
@@ -3363,6 +3362,41 @@ svg.mdc-button__icon {
|
|
3363
3362
|
white-space: nowrap;
|
3364
3363
|
cursor: pointer;
|
3365
3364
|
vertical-align: bottom; }
|
3365
|
+
.mdc-checkbox .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background::before,
|
3366
|
+
.mdc-checkbox .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background::before {
|
3367
|
+
background-color: #4FC3F7; }
|
3368
|
+
@supports not (-ms-ime-align: auto) {
|
3369
|
+
.mdc-checkbox .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background::before,
|
3370
|
+
.mdc-checkbox .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background::before {
|
3371
|
+
/* @alternate */
|
3372
|
+
background-color: var(--mdc-theme-secondary, #4FC3F7); } }
|
3373
|
+
.mdc-checkbox.mdc-checkbox--selected::before, .mdc-checkbox.mdc-checkbox--selected::after {
|
3374
|
+
background-color: #4FC3F7; }
|
3375
|
+
@supports not (-ms-ime-align: auto) {
|
3376
|
+
.mdc-checkbox.mdc-checkbox--selected::before, .mdc-checkbox.mdc-checkbox--selected::after {
|
3377
|
+
/* @alternate */
|
3378
|
+
background-color: var(--mdc-theme-secondary, #4FC3F7); } }
|
3379
|
+
.mdc-checkbox.mdc-checkbox--selected:hover::before {
|
3380
|
+
opacity: 0.08; }
|
3381
|
+
.mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):focus::before, .mdc-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded--background-focused::before {
|
3382
|
+
-webkit-transition-duration: 75ms;
|
3383
|
+
transition-duration: 75ms;
|
3384
|
+
opacity: 0.24; }
|
3385
|
+
.mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded)::after {
|
3386
|
+
-webkit-transition: opacity 150ms linear;
|
3387
|
+
transition: opacity 150ms linear; }
|
3388
|
+
.mdc-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):active::after {
|
3389
|
+
-webkit-transition-duration: 75ms;
|
3390
|
+
transition-duration: 75ms;
|
3391
|
+
opacity: 0.24; }
|
3392
|
+
.mdc-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded {
|
3393
|
+
--mdc-ripple-fg-opacity: 0.24; }
|
3394
|
+
.mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::before, .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::after {
|
3395
|
+
background-color: #4FC3F7; }
|
3396
|
+
@supports not (-ms-ime-align: auto) {
|
3397
|
+
.mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::before, .mdc-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::after {
|
3398
|
+
/* @alternate */
|
3399
|
+
background-color: var(--mdc-theme-secondary, #4FC3F7); } }
|
3366
3400
|
|
3367
3401
|
.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
|
3368
3402
|
border-color: rgba(0, 0, 0, 0.54);
|
@@ -3377,7 +3411,7 @@ svg.mdc-button__icon {
|
|
3377
3411
|
/* @alternate */
|
3378
3412
|
background-color: var(--mdc-theme-secondary, #4FC3F7); }
|
3379
3413
|
|
3380
|
-
@-webkit-keyframes mdc-checkbox-fade-in-background-
|
3414
|
+
@-webkit-keyframes mdc-checkbox-fade-in-background-ud575203d {
|
3381
3415
|
0% {
|
3382
3416
|
border-color: rgba(0, 0, 0, 0.54);
|
3383
3417
|
background-color: transparent; }
|
@@ -3389,7 +3423,7 @@ svg.mdc-button__icon {
|
|
3389
3423
|
/* @alternate */
|
3390
3424
|
background-color: var(--mdc-theme-secondary, #4FC3F7); } }
|
3391
3425
|
|
3392
|
-
@keyframes mdc-checkbox-fade-in-background-
|
3426
|
+
@keyframes mdc-checkbox-fade-in-background-ud575203d {
|
3393
3427
|
0% {
|
3394
3428
|
border-color: rgba(0, 0, 0, 0.54);
|
3395
3429
|
background-color: transparent; }
|
@@ -3401,7 +3435,7 @@ svg.mdc-button__icon {
|
|
3401
3435
|
/* @alternate */
|
3402
3436
|
background-color: var(--mdc-theme-secondary, #4FC3F7); } }
|
3403
3437
|
|
3404
|
-
@-webkit-keyframes mdc-checkbox-fade-out-background-
|
3438
|
+
@-webkit-keyframes mdc-checkbox-fade-out-background-ud575203d {
|
3405
3439
|
0%,
|
3406
3440
|
80% {
|
3407
3441
|
border-color: #4FC3F7;
|
@@ -3414,7 +3448,7 @@ svg.mdc-button__icon {
|
|
3414
3448
|
border-color: rgba(0, 0, 0, 0.54);
|
3415
3449
|
background-color: transparent; } }
|
3416
3450
|
|
3417
|
-
@keyframes mdc-checkbox-fade-out-background-
|
3451
|
+
@keyframes mdc-checkbox-fade-out-background-ud575203d {
|
3418
3452
|
0%,
|
3419
3453
|
80% {
|
3420
3454
|
border-color: #4FC3F7;
|
@@ -3428,12 +3462,12 @@ svg.mdc-button__icon {
|
|
3428
3462
|
background-color: transparent; } }
|
3429
3463
|
|
3430
3464
|
.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
|
3431
|
-
-webkit-animation-name: mdc-checkbox-fade-in-background-
|
3432
|
-
animation-name: mdc-checkbox-fade-in-background-
|
3465
|
+
-webkit-animation-name: mdc-checkbox-fade-in-background-ud575203d;
|
3466
|
+
animation-name: mdc-checkbox-fade-in-background-ud575203d; }
|
3433
3467
|
|
3434
3468
|
.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
|
3435
|
-
-webkit-animation-name: mdc-checkbox-fade-out-background-
|
3436
|
-
animation-name: mdc-checkbox-fade-out-background-
|
3469
|
+
-webkit-animation-name: mdc-checkbox-fade-out-background-ud575203d;
|
3470
|
+
animation-name: mdc-checkbox-fade-out-background-ud575203d; }
|
3437
3471
|
|
3438
3472
|
.mdc-checkbox__checkmark {
|
3439
3473
|
color: #FFF; }
|
@@ -3441,13 +3475,6 @@ svg.mdc-button__icon {
|
|
3441
3475
|
.mdc-checkbox__mixedmark {
|
3442
3476
|
border-color: #FFF; }
|
3443
3477
|
|
3444
|
-
.mdc-checkbox__background::before {
|
3445
|
-
background-color: #4FC3F7; }
|
3446
|
-
@supports not (-ms-ime-align: auto) {
|
3447
|
-
.mdc-checkbox__background::before {
|
3448
|
-
/* @alternate */
|
3449
|
-
background-color: var(--mdc-theme-secondary, #4FC3F7); } }
|
3450
|
-
|
3451
3478
|
.mdc-checkbox__native-control[disabled]:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
|
3452
3479
|
border-color: rgba(0, 0, 0, 0.26); }
|
3453
3480
|
|
@@ -3482,6 +3509,12 @@ svg.mdc-button__icon {
|
|
3482
3509
|
will-change: background-color, border-color;
|
3483
3510
|
-webkit-transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
|
3484
3511
|
transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1); }
|
3512
|
+
.mdc-checkbox__background .mdc-checkbox__background::before {
|
3513
|
+
background-color: #000; }
|
3514
|
+
@supports not (-ms-ime-align: auto) {
|
3515
|
+
.mdc-checkbox__background .mdc-checkbox__background::before {
|
3516
|
+
/* @alternate */
|
3517
|
+
background-color: var(--mdc-theme-on-surface, #000); } }
|
3485
3518
|
|
3486
3519
|
.mdc-checkbox__checkmark {
|
3487
3520
|
position: absolute;
|
@@ -3691,26 +3724,26 @@ svg.mdc-button__icon {
|
|
3691
3724
|
-webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
|
3692
3725
|
transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
|
3693
3726
|
.mdc-checkbox::before, .mdc-checkbox::after {
|
3694
|
-
background-color: #
|
3727
|
+
background-color: #000; }
|
3695
3728
|
@supports not (-ms-ime-align: auto) {
|
3696
3729
|
.mdc-checkbox::before, .mdc-checkbox::after {
|
3697
3730
|
/* @alternate */
|
3698
|
-
background-color: var(--mdc-theme-
|
3731
|
+
background-color: var(--mdc-theme-on-surface, #000); } }
|
3699
3732
|
.mdc-checkbox:hover::before {
|
3700
|
-
opacity: 0.
|
3733
|
+
opacity: 0.04; }
|
3701
3734
|
.mdc-checkbox:not(.mdc-ripple-upgraded):focus::before, .mdc-checkbox.mdc-ripple-upgraded--background-focused::before {
|
3702
3735
|
-webkit-transition-duration: 75ms;
|
3703
3736
|
transition-duration: 75ms;
|
3704
|
-
opacity: 0.
|
3737
|
+
opacity: 0.12; }
|
3705
3738
|
.mdc-checkbox:not(.mdc-ripple-upgraded)::after {
|
3706
3739
|
-webkit-transition: opacity 150ms linear;
|
3707
3740
|
transition: opacity 150ms linear; }
|
3708
3741
|
.mdc-checkbox:not(.mdc-ripple-upgraded):active::after {
|
3709
3742
|
-webkit-transition-duration: 75ms;
|
3710
3743
|
transition-duration: 75ms;
|
3711
|
-
opacity: 0.
|
3744
|
+
opacity: 0.12; }
|
3712
3745
|
.mdc-checkbox.mdc-ripple-upgraded {
|
3713
|
-
--mdc-ripple-fg-opacity: 0.
|
3746
|
+
--mdc-ripple-fg-opacity: 0.12; }
|
3714
3747
|
.mdc-checkbox::before, .mdc-checkbox::after {
|
3715
3748
|
top: calc(50% - 50%);
|
3716
3749
|
/* @noflip */
|
@@ -4035,6 +4068,254 @@ svg.mdc-button__icon {
|
|
4035
4068
|
-webkit-animation: mdc-chip-entry 100ms cubic-bezier(0, 0, 0.2, 1);
|
4036
4069
|
animation: mdc-chip-entry 100ms cubic-bezier(0, 0, 0.2, 1); }
|
4037
4070
|
|
4071
|
+
.mdc-data-table__content {
|
4072
|
+
font-family: Roboto, sans-serif;
|
4073
|
+
-moz-osx-font-smoothing: grayscale;
|
4074
|
+
-webkit-font-smoothing: antialiased;
|
4075
|
+
font-size: 0.875rem;
|
4076
|
+
line-height: 1.25rem;
|
4077
|
+
font-weight: 400;
|
4078
|
+
letter-spacing: 0.01786em;
|
4079
|
+
text-decoration: inherit;
|
4080
|
+
text-transform: inherit; }
|
4081
|
+
|
4082
|
+
.mdc-data-table {
|
4083
|
+
background-color: #fff;
|
4084
|
+
/* @alternate */
|
4085
|
+
background-color: var(--mdc-theme-surface, #fff);
|
4086
|
+
border-radius: 4px;
|
4087
|
+
border-width: 1px;
|
4088
|
+
border-style: solid;
|
4089
|
+
border-color: rgba(0, 0, 0, 0.12);
|
4090
|
+
display: -webkit-inline-box;
|
4091
|
+
display: inline-flex;
|
4092
|
+
-webkit-box-orient: vertical;
|
4093
|
+
-webkit-box-direction: normal;
|
4094
|
+
flex-direction: column;
|
4095
|
+
box-sizing: border-box;
|
4096
|
+
overflow-x: auto; }
|
4097
|
+
.mdc-data-table__row {
|
4098
|
+
background-color: inherit; }
|
4099
|
+
.mdc-data-table__header-row {
|
4100
|
+
background-color: inherit; }
|
4101
|
+
.mdc-data-table__row--selected {
|
4102
|
+
background-color: rgba(26, 35, 126, 0.04); }
|
4103
|
+
.mdc-data-table__row {
|
4104
|
+
border-top-color: rgba(0, 0, 0, 0.12); }
|
4105
|
+
.mdc-data-table__row {
|
4106
|
+
border-top-width: 1px;
|
4107
|
+
border-top-style: solid; }
|
4108
|
+
.mdc-data-table__row:not(.mdc-data-table__row--selected):hover {
|
4109
|
+
background-color: rgba(0, 0, 0, 0.04); }
|
4110
|
+
.mdc-data-table__header-cell {
|
4111
|
+
color: rgba(0, 0, 0, 0.87); }
|
4112
|
+
.mdc-data-table__cell {
|
4113
|
+
color: rgba(0, 0, 0, 0.87); }
|
4114
|
+
.mdc-data-table__header-row {
|
4115
|
+
height: 56px; }
|
4116
|
+
.mdc-data-table__row {
|
4117
|
+
height: 52px; }
|
4118
|
+
.mdc-data-table__cell,
|
4119
|
+
.mdc-data-table__header-cell {
|
4120
|
+
padding-right: 16px;
|
4121
|
+
padding-left: 16px; }
|
4122
|
+
.mdc-data-table__header-cell--checkbox,
|
4123
|
+
.mdc-data-table__cell--checkbox {
|
4124
|
+
/* @noflip */
|
4125
|
+
padding-left: 16px;
|
4126
|
+
/* @noflip */
|
4127
|
+
padding-right: 0; }
|
4128
|
+
[dir="rtl"] .mdc-data-table__header-cell--checkbox, .mdc-data-table__header-cell--checkbox[dir="rtl"], [dir="rtl"]
|
4129
|
+
.mdc-data-table__cell--checkbox,
|
4130
|
+
.mdc-data-table__cell--checkbox[dir="rtl"] {
|
4131
|
+
/* @noflip */
|
4132
|
+
padding-left: 0;
|
4133
|
+
/* @noflip */
|
4134
|
+
padding-right: 16px; }
|
4135
|
+
|
4136
|
+
.mdc-data-table__table {
|
4137
|
+
width: 100%;
|
4138
|
+
border: 0;
|
4139
|
+
white-space: nowrap;
|
4140
|
+
border-collapse: collapse; }
|
4141
|
+
|
4142
|
+
.mdc-data-table__cell {
|
4143
|
+
font-family: Roboto, sans-serif;
|
4144
|
+
-moz-osx-font-smoothing: grayscale;
|
4145
|
+
-webkit-font-smoothing: antialiased;
|
4146
|
+
font-size: 0.875rem;
|
4147
|
+
line-height: 1.25rem;
|
4148
|
+
font-weight: 400;
|
4149
|
+
letter-spacing: 0.01786em;
|
4150
|
+
text-decoration: inherit;
|
4151
|
+
text-transform: inherit; }
|
4152
|
+
|
4153
|
+
.mdc-data-table__cell--numeric {
|
4154
|
+
text-align: right; }
|
4155
|
+
[dir="rtl"] .mdc-data-table__cell--numeric, .mdc-data-table__cell--numeric[dir="rtl"] {
|
4156
|
+
/* @noflip */
|
4157
|
+
text-align: left; }
|
4158
|
+
|
4159
|
+
.mdc-data-table__header-cell {
|
4160
|
+
font-family: Roboto, sans-serif;
|
4161
|
+
-moz-osx-font-smoothing: grayscale;
|
4162
|
+
-webkit-font-smoothing: antialiased;
|
4163
|
+
font-size: 0.875rem;
|
4164
|
+
line-height: 1.375rem;
|
4165
|
+
font-weight: 500;
|
4166
|
+
letter-spacing: 0.00714em;
|
4167
|
+
text-decoration: inherit;
|
4168
|
+
text-transform: inherit;
|
4169
|
+
text-align: left; }
|
4170
|
+
[dir="rtl"] .mdc-data-table__header-cell, .mdc-data-table__header-cell[dir="rtl"] {
|
4171
|
+
/* @noflip */
|
4172
|
+
text-align: right; }
|
4173
|
+
|
4174
|
+
.mdc-data-table__header-cell--numeric {
|
4175
|
+
text-align: right; }
|
4176
|
+
[dir="rtl"] .mdc-data-table__header-cell--numeric, .mdc-data-table__header-cell--numeric[dir="rtl"] {
|
4177
|
+
/* @noflip */
|
4178
|
+
text-align: left; }
|
4179
|
+
|
4180
|
+
.mdc-data-table__header-row-checkbox .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background::before,
|
4181
|
+
.mdc-data-table__header-row-checkbox .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background::before,
|
4182
|
+
.mdc-data-table__row-checkbox .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background::before,
|
4183
|
+
.mdc-data-table__row-checkbox .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background::before {
|
4184
|
+
background-color: #1A237E; }
|
4185
|
+
@supports not (-ms-ime-align: auto) {
|
4186
|
+
.mdc-data-table__header-row-checkbox .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background::before,
|
4187
|
+
.mdc-data-table__header-row-checkbox .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background::before,
|
4188
|
+
.mdc-data-table__row-checkbox .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background::before,
|
4189
|
+
.mdc-data-table__row-checkbox .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background::before {
|
4190
|
+
/* @alternate */
|
4191
|
+
background-color: var(--mdc-theme-primary, #1A237E); } }
|
4192
|
+
|
4193
|
+
.mdc-data-table__header-row-checkbox.mdc-checkbox--selected::before, .mdc-data-table__header-row-checkbox.mdc-checkbox--selected::after,
|
4194
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected::before,
|
4195
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected::after {
|
4196
|
+
background-color: #1A237E; }
|
4197
|
+
@supports not (-ms-ime-align: auto) {
|
4198
|
+
.mdc-data-table__header-row-checkbox.mdc-checkbox--selected::before, .mdc-data-table__header-row-checkbox.mdc-checkbox--selected::after,
|
4199
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected::before,
|
4200
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected::after {
|
4201
|
+
/* @alternate */
|
4202
|
+
background-color: var(--mdc-theme-primary, #1A237E); } }
|
4203
|
+
|
4204
|
+
.mdc-data-table__header-row-checkbox.mdc-checkbox--selected:hover::before,
|
4205
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected:hover::before {
|
4206
|
+
opacity: 0.04; }
|
4207
|
+
|
4208
|
+
.mdc-data-table__header-row-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):focus::before, .mdc-data-table__header-row-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded--background-focused::before,
|
4209
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):focus::before,
|
4210
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded--background-focused::before {
|
4211
|
+
-webkit-transition-duration: 75ms;
|
4212
|
+
transition-duration: 75ms;
|
4213
|
+
opacity: 0.12; }
|
4214
|
+
|
4215
|
+
.mdc-data-table__header-row-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded)::after,
|
4216
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded)::after {
|
4217
|
+
-webkit-transition: opacity 150ms linear;
|
4218
|
+
transition: opacity 150ms linear; }
|
4219
|
+
|
4220
|
+
.mdc-data-table__header-row-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):active::after,
|
4221
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected:not(.mdc-ripple-upgraded):active::after {
|
4222
|
+
-webkit-transition-duration: 75ms;
|
4223
|
+
transition-duration: 75ms;
|
4224
|
+
opacity: 0.12; }
|
4225
|
+
|
4226
|
+
.mdc-data-table__header-row-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded,
|
4227
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--selected.mdc-ripple-upgraded {
|
4228
|
+
--mdc-ripple-fg-opacity: 0.12; }
|
4229
|
+
|
4230
|
+
.mdc-data-table__header-row-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::before, .mdc-data-table__header-row-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::after,
|
4231
|
+
.mdc-data-table__row-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::before,
|
4232
|
+
.mdc-data-table__row-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::after {
|
4233
|
+
background-color: #1A237E; }
|
4234
|
+
@supports not (-ms-ime-align: auto) {
|
4235
|
+
.mdc-data-table__header-row-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::before, .mdc-data-table__header-row-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::after,
|
4236
|
+
.mdc-data-table__row-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::before,
|
4237
|
+
.mdc-data-table__row-checkbox.mdc-ripple-upgraded--background-focused.mdc-checkbox--selected::after {
|
4238
|
+
/* @alternate */
|
4239
|
+
background-color: var(--mdc-theme-primary, #1A237E); } }
|
4240
|
+
|
4241
|
+
.mdc-data-table__header-row-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background,
|
4242
|
+
.mdc-data-table__row-checkbox .mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
|
4243
|
+
border-color: rgba(0, 0, 0, 0.54);
|
4244
|
+
background-color: transparent; }
|
4245
|
+
|
4246
|
+
.mdc-data-table__header-row-checkbox .mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background,
|
4247
|
+
.mdc-data-table__header-row-checkbox .mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background,
|
4248
|
+
.mdc-data-table__row-checkbox .mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background,
|
4249
|
+
.mdc-data-table__row-checkbox .mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background {
|
4250
|
+
border-color: #1A237E;
|
4251
|
+
/* @alternate */
|
4252
|
+
border-color: var(--mdc-theme-primary, #1A237E);
|
4253
|
+
background-color: #1A237E;
|
4254
|
+
/* @alternate */
|
4255
|
+
background-color: var(--mdc-theme-primary, #1A237E); }
|
4256
|
+
|
4257
|
+
@-webkit-keyframes mdc-checkbox-fade-in-background-u39295ac8 {
|
4258
|
+
0% {
|
4259
|
+
border-color: rgba(0, 0, 0, 0.54);
|
4260
|
+
background-color: transparent; }
|
4261
|
+
50% {
|
4262
|
+
border-color: #1A237E;
|
4263
|
+
/* @alternate */
|
4264
|
+
border-color: var(--mdc-theme-primary, #1A237E);
|
4265
|
+
background-color: #1A237E;
|
4266
|
+
/* @alternate */
|
4267
|
+
background-color: var(--mdc-theme-primary, #1A237E); } }
|
4268
|
+
|
4269
|
+
@keyframes mdc-checkbox-fade-in-background-u39295ac8 {
|
4270
|
+
0% {
|
4271
|
+
border-color: rgba(0, 0, 0, 0.54);
|
4272
|
+
background-color: transparent; }
|
4273
|
+
50% {
|
4274
|
+
border-color: #1A237E;
|
4275
|
+
/* @alternate */
|
4276
|
+
border-color: var(--mdc-theme-primary, #1A237E);
|
4277
|
+
background-color: #1A237E;
|
4278
|
+
/* @alternate */
|
4279
|
+
background-color: var(--mdc-theme-primary, #1A237E); } }
|
4280
|
+
|
4281
|
+
@-webkit-keyframes mdc-checkbox-fade-out-background-u39295ac8 {
|
4282
|
+
0%,
|
4283
|
+
80% {
|
4284
|
+
border-color: #1A237E;
|
4285
|
+
/* @alternate */
|
4286
|
+
border-color: var(--mdc-theme-primary, #1A237E);
|
4287
|
+
background-color: #1A237E;
|
4288
|
+
/* @alternate */
|
4289
|
+
background-color: var(--mdc-theme-primary, #1A237E); }
|
4290
|
+
100% {
|
4291
|
+
border-color: rgba(0, 0, 0, 0.54);
|
4292
|
+
background-color: transparent; } }
|
4293
|
+
|
4294
|
+
@keyframes mdc-checkbox-fade-out-background-u39295ac8 {
|
4295
|
+
0%,
|
4296
|
+
80% {
|
4297
|
+
border-color: #1A237E;
|
4298
|
+
/* @alternate */
|
4299
|
+
border-color: var(--mdc-theme-primary, #1A237E);
|
4300
|
+
background-color: #1A237E;
|
4301
|
+
/* @alternate */
|
4302
|
+
background-color: var(--mdc-theme-primary, #1A237E); }
|
4303
|
+
100% {
|
4304
|
+
border-color: rgba(0, 0, 0, 0.54);
|
4305
|
+
background-color: transparent; } }
|
4306
|
+
|
4307
|
+
.mdc-data-table__header-row-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-data-table__header-row-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background,
|
4308
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background,
|
4309
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
|
4310
|
+
-webkit-animation-name: mdc-checkbox-fade-in-background-u39295ac8;
|
4311
|
+
animation-name: mdc-checkbox-fade-in-background-u39295ac8; }
|
4312
|
+
|
4313
|
+
.mdc-data-table__header-row-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-data-table__header-row-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background,
|
4314
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background,
|
4315
|
+
.mdc-data-table__row-checkbox.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
|
4316
|
+
-webkit-animation-name: mdc-checkbox-fade-out-background-u39295ac8;
|
4317
|
+
animation-name: mdc-checkbox-fade-out-background-u39295ac8; }
|
4318
|
+
|
4038
4319
|
.mdc-dialog,
|
4039
4320
|
.mdc-dialog__scrim {
|
4040
4321
|
position: fixed;
|
@@ -4294,17 +4575,17 @@ svg.mdc-button__icon {
|
|
4294
4575
|
flex-shrink: 0;
|
4295
4576
|
box-sizing: border-box;
|
4296
4577
|
height: 100%;
|
4578
|
+
/* @noflip */
|
4579
|
+
border-right-width: 1px;
|
4580
|
+
/* @noflip */
|
4581
|
+
border-right-style: solid;
|
4582
|
+
overflow: hidden;
|
4297
4583
|
-webkit-transition-property: -webkit-transform;
|
4298
4584
|
transition-property: -webkit-transform;
|
4299
4585
|
transition-property: transform;
|
4300
4586
|
transition-property: transform, -webkit-transform;
|
4301
4587
|
-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
4302
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
4303
|
-
/* @noflip */
|
4304
|
-
border-right-width: 1px;
|
4305
|
-
/* @noflip */
|
4306
|
-
border-right-style: solid;
|
4307
|
-
overflow: hidden; }
|
4588
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
4308
4589
|
.mdc-drawer .mdc-drawer__title {
|
4309
4590
|
color: rgba(0, 0, 0, 0.87); }
|
4310
4591
|
.mdc-drawer .mdc-list-group__subheader {
|
@@ -4528,11 +4809,11 @@ svg.mdc-button__icon {
|
|
4528
4809
|
left: 0;
|
4529
4810
|
width: 100%;
|
4530
4811
|
height: 100%;
|
4812
|
+
z-index: 5;
|
4531
4813
|
-webkit-transition-property: opacity;
|
4532
4814
|
transition-property: opacity;
|
4533
4815
|
-webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
4534
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
4535
|
-
z-index: 5; }
|
4816
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
|
4536
4817
|
.mdc-drawer--open + .mdc-drawer-scrim {
|
4537
4818
|
display: block; }
|
4538
4819
|
.mdc-drawer--animate + .mdc-drawer-scrim {
|
@@ -4641,6 +4922,7 @@ svg.mdc-button__icon {
|
|
4641
4922
|
padding: 0;
|
4642
4923
|
border: none;
|
4643
4924
|
fill: currentColor;
|
4925
|
+
text-decoration: none;
|
4644
4926
|
cursor: pointer;
|
4645
4927
|
-webkit-user-select: none;
|
4646
4928
|
-moz-user-select: none;
|
@@ -6164,9 +6446,9 @@ svg.mdc-button__icon {
|
|
6164
6446
|
height: 4px;
|
6165
6447
|
-webkit-transform: translateZ(0);
|
6166
6448
|
transform: translateZ(0);
|
6449
|
+
overflow: hidden;
|
6167
6450
|
-webkit-transition: opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
|
6168
|
-
transition: opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
|
6169
|
-
overflow: hidden; }
|
6451
|
+
transition: opacity 250ms 0ms cubic-bezier(0.4, 0, 0.6, 1); }
|
6170
6452
|
.mdc-linear-progress__bar {
|
6171
6453
|
position: absolute;
|
6172
6454
|
width: 100%;
|
@@ -6190,10 +6472,10 @@ svg.mdc-button__icon {
|
|
6190
6472
|
position: absolute;
|
6191
6473
|
width: 100%;
|
6192
6474
|
height: 100%;
|
6193
|
-
-webkit-animation: buffering 250ms infinite linear;
|
6194
|
-
animation: buffering 250ms infinite linear;
|
6195
6475
|
background-repeat: repeat-x;
|
6196
|
-
background-size: 10px 4px;
|
6476
|
+
background-size: 10px 4px;
|
6477
|
+
-webkit-animation: buffering 250ms infinite linear;
|
6478
|
+
animation: buffering 250ms infinite linear; }
|
6197
6479
|
.mdc-linear-progress__buffer {
|
6198
6480
|
position: absolute;
|
6199
6481
|
width: 100%;
|
@@ -6221,9 +6503,9 @@ svg.mdc-button__icon {
|
|
6221
6503
|
animation: primary-indeterminate-scale 2s infinite linear; }
|
6222
6504
|
.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar {
|
6223
6505
|
left: -54.888891%;
|
6506
|
+
visibility: visible;
|
6224
6507
|
-webkit-animation: secondary-indeterminate-translate 2s infinite linear;
|
6225
|
-
animation: secondary-indeterminate-translate 2s infinite linear;
|
6226
|
-
visibility: visible; }
|
6508
|
+
animation: secondary-indeterminate-translate 2s infinite linear; }
|
6227
6509
|
.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar > .mdc-linear-progress__bar-inner {
|
6228
6510
|
-webkit-animation: secondary-indeterminate-scale 2s infinite linear;
|
6229
6511
|
animation: secondary-indeterminate-scale 2s infinite linear; }
|
@@ -6242,7 +6524,9 @@ svg.mdc-button__icon {
|
|
6242
6524
|
-webkit-animation: buffering-reverse 250ms infinite linear;
|
6243
6525
|
animation: buffering-reverse 250ms infinite linear; }
|
6244
6526
|
.mdc-linear-progress--closed {
|
6245
|
-
opacity: 0;
|
6527
|
+
opacity: 0;
|
6528
|
+
-webkit-animation: none;
|
6529
|
+
animation: none; }
|
6246
6530
|
|
6247
6531
|
.mdc-linear-progress__bar-inner {
|
6248
6532
|
background-color: #1A237E;
|
@@ -6798,7 +7082,10 @@ a.mdc-list-item {
|
|
6798
7082
|
/* @noflip */
|
6799
7083
|
right: initial;
|
6800
7084
|
display: none;
|
6801
|
-
position: absolute;
|
7085
|
+
position: absolute;
|
7086
|
+
top: 50%;
|
7087
|
+
-webkit-transform: translateY(-50%);
|
7088
|
+
transform: translateY(-50%); }
|
6802
7089
|
[dir="rtl"] .mdc-menu__selection-group .mdc-menu__selection-group-icon, .mdc-menu__selection-group .mdc-menu__selection-group-icon[dir="rtl"] {
|
6803
7090
|
/* @noflip */
|
6804
7091
|
left: initial;
|
@@ -8110,20 +8397,20 @@ a.mdc-list-item {
|
|
8110
8397
|
left: 0;
|
8111
8398
|
-webkit-transform: scale(0.571);
|
8112
8399
|
transform: scale(0.571);
|
8400
|
+
stroke-width: 3.5;
|
8113
8401
|
-webkit-transition: fill 100ms ease-out, stroke 100ms ease-out, -webkit-transform 100ms ease-out;
|
8114
8402
|
transition: fill 100ms ease-out, stroke 100ms ease-out, -webkit-transform 100ms ease-out;
|
8115
8403
|
transition: transform 100ms ease-out, fill 100ms ease-out, stroke 100ms ease-out;
|
8116
|
-
transition: transform 100ms ease-out, fill 100ms ease-out, stroke 100ms ease-out, -webkit-transform 100ms ease-out;
|
8117
|
-
stroke-width: 3.5; }
|
8404
|
+
transition: transform 100ms ease-out, fill 100ms ease-out, stroke 100ms ease-out, -webkit-transform 100ms ease-out; }
|
8118
8405
|
.mdc-slider__focus-ring {
|
8119
8406
|
width: 21px;
|
8120
8407
|
height: 21px;
|
8408
|
+
border-radius: 50%;
|
8409
|
+
opacity: 0;
|
8121
8410
|
-webkit-transition: opacity 266.67ms ease-out, background-color 266.67ms ease-out, -webkit-transform 266.67ms ease-out;
|
8122
8411
|
transition: opacity 266.67ms ease-out, background-color 266.67ms ease-out, -webkit-transform 266.67ms ease-out;
|
8123
8412
|
transition: transform 266.67ms ease-out, opacity 266.67ms ease-out, background-color 266.67ms ease-out;
|
8124
|
-
transition: transform 266.67ms ease-out, opacity 266.67ms ease-out, background-color 266.67ms ease-out, -webkit-transform 266.67ms ease-out;
|
8125
|
-
border-radius: 50%;
|
8126
|
-
opacity: 0; }
|
8413
|
+
transition: transform 266.67ms ease-out, opacity 266.67ms ease-out, background-color 266.67ms ease-out, -webkit-transform 266.67ms ease-out; }
|
8127
8414
|
.mdc-slider__pin {
|
8128
8415
|
display: -webkit-box;
|
8129
8416
|
display: flex;
|
@@ -8140,12 +8427,12 @@ a.mdc-list-item {
|
|
8140
8427
|
margin-left: -2px;
|
8141
8428
|
-webkit-transform: rotate(-45deg) scale(0) translate(0, 0);
|
8142
8429
|
transform: rotate(-45deg) scale(0) translate(0, 0);
|
8430
|
+
border-radius: 50% 50% 50% 0%;
|
8431
|
+
z-index: 1;
|
8143
8432
|
-webkit-transition: -webkit-transform 100ms ease-out;
|
8144
8433
|
transition: -webkit-transform 100ms ease-out;
|
8145
8434
|
transition: transform 100ms ease-out;
|
8146
|
-
transition: transform 100ms ease-out, -webkit-transform 100ms ease-out;
|
8147
|
-
border-radius: 50% 50% 50% 0%;
|
8148
|
-
z-index: 1; }
|
8435
|
+
transition: transform 100ms ease-out, -webkit-transform 100ms ease-out; }
|
8149
8436
|
.mdc-slider__pin-value-marker {
|
8150
8437
|
font-family: Roboto, sans-serif;
|
8151
8438
|
-moz-osx-font-smoothing: grayscale;
|
@@ -8272,12 +8559,12 @@ a.mdc-list-item {
|
|
8272
8559
|
.mdc-snackbar--open .mdc-snackbar__surface {
|
8273
8560
|
-webkit-transform: scale(1);
|
8274
8561
|
transform: scale(1);
|
8562
|
+
opacity: 1;
|
8563
|
+
pointer-events: auto;
|
8275
8564
|
-webkit-transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
|
8276
8565
|
transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
|
8277
8566
|
transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
|
8278
|
-
transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
|
8279
|
-
opacity: 1;
|
8280
|
-
pointer-events: auto; }
|
8567
|
+
transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1); }
|
8281
8568
|
.mdc-snackbar--closing .mdc-snackbar__surface {
|
8282
8569
|
-webkit-transform: scale(1);
|
8283
8570
|
transform: scale(1);
|
@@ -9238,17 +9525,17 @@ a.mdc-list-item {
|
|
9238
9525
|
opacity: 0;
|
9239
9526
|
color: rgba(0, 0, 0, 0.54); }
|
9240
9527
|
.mdc-text-field__input::-moz-placeholder {
|
9241
|
-
-
|
9528
|
+
-moz-transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
|
9242
9529
|
transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
|
9243
9530
|
opacity: 0;
|
9244
9531
|
color: rgba(0, 0, 0, 0.54); }
|
9245
9532
|
.mdc-text-field__input:-ms-input-placeholder {
|
9246
|
-
-
|
9533
|
+
-ms-transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
|
9247
9534
|
transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
|
9248
9535
|
opacity: 0;
|
9249
9536
|
color: rgba(0, 0, 0, 0.54); }
|
9250
9537
|
.mdc-text-field__input::-ms-input-placeholder {
|
9251
|
-
-
|
9538
|
+
-ms-transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
|
9252
9539
|
transition: opacity 67ms cubic-bezier(0.4, 0, 0.2, 1);
|
9253
9540
|
opacity: 0;
|
9254
9541
|
color: rgba(0, 0, 0, 0.54); }
|
@@ -9259,29 +9546,21 @@ a.mdc-list-item {
|
|
9259
9546
|
color: rgba(0, 0, 0, 0.54); }
|
9260
9547
|
.mdc-text-field__input:-ms-input-placeholder {
|
9261
9548
|
color: rgba(0, 0, 0, 0.54) !important; }
|
9262
|
-
.mdc-text-field--fullwidth .mdc-text-field__input::-webkit-input-placeholder,
|
9263
|
-
.mdc-text-field--no-label .mdc-text-field__input::-webkit-input-placeholder,
|
9264
|
-
.mdc-text-field--focused .mdc-text-field__input::-webkit-input-placeholder {
|
9549
|
+
.mdc-text-field--fullwidth .mdc-text-field__input::-webkit-input-placeholder, .mdc-text-field--no-label .mdc-text-field__input::-webkit-input-placeholder, .mdc-text-field--focused .mdc-text-field__input::-webkit-input-placeholder {
|
9265
9550
|
-webkit-transition-delay: 40ms;
|
9266
9551
|
transition-delay: 40ms;
|
9267
9552
|
-webkit-transition-duration: 110ms;
|
9268
9553
|
transition-duration: 110ms;
|
9269
9554
|
opacity: 1; }
|
9270
|
-
.mdc-text-field--fullwidth .mdc-text-field__input::-moz-placeholder,
|
9271
|
-
.mdc-text-field--no-label .mdc-text-field__input::-moz-placeholder,
|
9272
|
-
.mdc-text-field--focused .mdc-text-field__input::-moz-placeholder {
|
9555
|
+
.mdc-text-field--fullwidth .mdc-text-field__input::-moz-placeholder, .mdc-text-field--no-label .mdc-text-field__input::-moz-placeholder, .mdc-text-field--focused .mdc-text-field__input::-moz-placeholder {
|
9273
9556
|
transition-delay: 40ms;
|
9274
9557
|
transition-duration: 110ms;
|
9275
9558
|
opacity: 1; }
|
9276
|
-
.mdc-text-field--fullwidth .mdc-text-field__input:-ms-input-placeholder,
|
9277
|
-
.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,
|
9278
|
-
.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder {
|
9559
|
+
.mdc-text-field--fullwidth .mdc-text-field__input:-ms-input-placeholder, .mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder, .mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder {
|
9279
9560
|
transition-delay: 40ms;
|
9280
9561
|
transition-duration: 110ms;
|
9281
9562
|
opacity: 1; }
|
9282
|
-
.mdc-text-field--fullwidth .mdc-text-field__input::-ms-input-placeholder,
|
9283
|
-
.mdc-text-field--no-label .mdc-text-field__input::-ms-input-placeholder,
|
9284
|
-
.mdc-text-field--focused .mdc-text-field__input::-ms-input-placeholder {
|
9563
|
+
.mdc-text-field--fullwidth .mdc-text-field__input::-ms-input-placeholder, .mdc-text-field--no-label .mdc-text-field__input::-ms-input-placeholder, .mdc-text-field--focused .mdc-text-field__input::-ms-input-placeholder {
|
9285
9564
|
transition-delay: 40ms;
|
9286
9565
|
transition-duration: 110ms;
|
9287
9566
|
opacity: 1; }
|
@@ -10934,66 +11213,95 @@ section.footer {
|
|
10934
11213
|
.parenthese::after {
|
10935
11214
|
content: ")"; }
|
10936
11215
|
|
10937
|
-
.
|
10938
|
-
|
11216
|
+
.search-box-outline {
|
11217
|
+
display: -webkit-box;
|
11218
|
+
display: flex;
|
11219
|
+
-webkit-box-orient: vertical;
|
11220
|
+
-webkit-box-direction: normal;
|
11221
|
+
flex-direction: column; }
|
11222
|
+
|
11223
|
+
.mdc-text-field-outlined-shaped .mdc-notched-outline .mdc-notched-outline__leading {
|
11224
|
+
border-radius: 28px 0 0 28px;
|
11225
|
+
width: 28px; }
|
11226
|
+
|
11227
|
+
.mdc-text-field-outlined-shaped .mdc-notched-outline .mdc-notched-outline__leading[dir="rtl"],
|
11228
|
+
[dir="rtl"] .mdc-text-field-outlined-shaped .mdc-notched-outline .mdc-notched-outline__leading {
|
11229
|
+
border-radius: 0 28px 28px 0; }
|
11230
|
+
|
11231
|
+
.mdc-text-field-outlined-shaped .mdc-notched-outline .mdc-notched-outline__notch {
|
11232
|
+
max-width: calc(100% - 28px * 2); }
|
11233
|
+
|
11234
|
+
.mdc-text-field-outlined-shaped .mdc-notched-outline .mdc-notched-outline__trailing {
|
11235
|
+
border-radius: 0 28px 28px 0; }
|
11236
|
+
|
11237
|
+
.mdc-text-field-outlined-shaped .mdc-notched-outline .mdc-notched-outline__trailing[dir="rtl"],
|
11238
|
+
[dir="rtl"] .mdc-text-field-outlined-shaped .mdc-notched-outline .mdc-notched-outline__trailing {
|
11239
|
+
border-radius: 28px 0 0 28px; }
|
11240
|
+
|
11241
|
+
.mdc-text-field-outlined-shaped .mdc-text-field__input {
|
11242
|
+
padding-left: 32px;
|
11243
|
+
padding-right: 0; }
|
11244
|
+
|
11245
|
+
.mdc-text-field-outlined-shaped .mdc-text-field__input[dir="rtl"],
|
11246
|
+
[dir="rtl"] .mdc-text-field-outlined-shaped .mdc-text-field__input {
|
11247
|
+
padding-left: 0;
|
11248
|
+
padding-right: 32px; }
|
11249
|
+
|
11250
|
+
.mdc-text-field-outlined-shaped + .mdc-text-field-helper-line {
|
11251
|
+
padding-left: 32px;
|
11252
|
+
padding-right: 28px; }
|
11253
|
+
|
11254
|
+
.mdc-text-field-outlined-shaped + .mdc-text-field-helper-line[dir="rtl"],
|
11255
|
+
[dir="rtl"] .mdc-text-field-outlined-shaped + .mdc-text-field-helper-line {
|
11256
|
+
padding-left: 28px;
|
11257
|
+
padding-right: 32px; }
|
11258
|
+
|
11259
|
+
table {
|
10939
11260
|
border-spacing: 0;
|
10940
11261
|
max-width: 100%;
|
10941
11262
|
table-layout: fixed;
|
10942
11263
|
width: 100%; }
|
10943
|
-
|
10944
|
-
|
10945
|
-
|
10946
|
-
|
10947
|
-
|
10948
|
-
|
10949
|
-
|
10950
|
-
|
10951
|
-
|
10952
|
-
|
10953
|
-
|
10954
|
-
|
10955
|
-
|
10956
|
-
|
10957
|
-
|
10958
|
-
|
10959
|
-
|
10960
|
-
|
10961
|
-
|
10962
|
-
|
10963
|
-
|
10964
|
-
|
10965
|
-
|
10966
|
-
|
10967
|
-
|
10968
|
-
|
10969
|
-
|
10970
|
-
|
10971
|
-
|
10972
|
-
|
10973
|
-
|
10974
|
-
|
10975
|
-
|
10976
|
-
|
10977
|
-
|
10978
|
-
|
10979
|
-
|
10980
|
-
|
10981
|
-
|
10982
|
-
|
10983
|
-
|
10984
|
-
vertical-align: bottom; }
|
10985
|
-
.table tbody {
|
10986
|
-
border-top: 1px solid rgba(0, 0, 0, 0.12); }
|
10987
|
-
.table.table-condensed thead tr th,
|
10988
|
-
.table.table-condensed thead tr td,
|
10989
|
-
.table.table-condensed tbody tr th,
|
10990
|
-
.table.table-condensed tbody tr td {
|
10991
|
-
padding: .8rem; }
|
10992
|
-
.table.table-hover tbody tr:hover td {
|
10993
|
-
background-color: rgba(0, 0, 0, 0.12); }
|
10994
|
-
.table thead:first-child tr:first-child th,
|
10995
|
-
.table thead:first-child tr:first-child td {
|
10996
|
-
border-top: 0; }
|
11264
|
+
table thead tr th,
|
11265
|
+
table tbody tr th {
|
11266
|
+
cursor: pointer; }
|
11267
|
+
table thead tr th,
|
11268
|
+
table thead tr td,
|
11269
|
+
table tbody tr th,
|
11270
|
+
table tbody tr td {
|
11271
|
+
border-top: 0;
|
11272
|
+
padding: 1rem;
|
11273
|
+
vertical-align: top; }
|
11274
|
+
table thead tr th.width-50,
|
11275
|
+
table thead tr td.width-50,
|
11276
|
+
table tbody tr th.width-50,
|
11277
|
+
table tbody tr td.width-50 {
|
11278
|
+
width: 50%; }
|
11279
|
+
table thead tr th.width-5,
|
11280
|
+
table thead tr td.width-5,
|
11281
|
+
table tbody tr th.width-5,
|
11282
|
+
table tbody tr td.width-5 {
|
11283
|
+
width: 5%; }
|
11284
|
+
table thead tr th.width-9,
|
11285
|
+
table thead tr td.width-9,
|
11286
|
+
table tbody tr th.width-9,
|
11287
|
+
table tbody tr td.width-9 {
|
11288
|
+
width: 9%; }
|
11289
|
+
table thead tr th .overflow,
|
11290
|
+
table thead tr td .overflow,
|
11291
|
+
table tbody tr th .overflow,
|
11292
|
+
table tbody tr td .overflow {
|
11293
|
+
display: block;
|
11294
|
+
overflow: hidden;
|
11295
|
+
text-overflow: ellipsis;
|
11296
|
+
white-space: nowrap; }
|
11297
|
+
table thead tr th i,
|
11298
|
+
table thead tr td i,
|
11299
|
+
table tbody tr th i,
|
11300
|
+
table tbody tr td i {
|
11301
|
+
vertical-align: inherit; }
|
11302
|
+
|
11303
|
+
.hide {
|
11304
|
+
display: none; }
|
10997
11305
|
|
10998
11306
|
.mdc-dialog--scrollable .mdc-dialog__content {
|
10999
11307
|
padding: 0; }
|