| Index: third_party/polymer/v1_0/components-chromium/paper-progress/paper-progress.html
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-progress/paper-progress.html b/third_party/polymer/v1_0/components-chromium/paper-progress/paper-progress.html
|
| index ab03f39b4e335c254e8c07657904f89abbb6154c..bce767c317cf23900cda00cadbb2dceadb1c30d8 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-progress/paper-progress.html
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-progress/paper-progress.html
|
| @@ -106,7 +106,7 @@ Custom property | Description
|
|
|
| #progressContainer,
|
| .indeterminate::after {
|
| - background-color: var(--paper-progress-container-color, --google-grey-300);
|
| + background: var(--paper-progress-container-color, --google-grey-300);
|
| }
|
|
|
| :host(.transiting) #primaryProgress,
|
| @@ -138,20 +138,19 @@ Custom property | Description
|
| }
|
|
|
| #primaryProgress {
|
| - background-color: var(--paper-progress-active-color, --google-green-500);
|
| + background: var(--paper-progress-active-color, --google-green-500);
|
| }
|
|
|
| #secondaryProgress {
|
| - position: relative;
|
| - background-color: var(--paper-progress-secondary-color, --google-green-100);
|
| + background: var(--paper-progress-secondary-color, --google-green-100);
|
| }
|
|
|
| :host([disabled]) #primaryProgress {
|
| - background-color: var(--paper-progress-disabled-active-color, --google-grey-500);
|
| + background: var(--paper-progress-disabled-active-color, --google-grey-500);
|
| }
|
|
|
| :host([disabled]) #secondaryProgress {
|
| - background-color: var(--paper-progress-disabled-secondary-color, --google-grey-300);
|
| + background: var(--paper-progress-disabled-secondary-color, --google-grey-300);
|
| }
|
|
|
| :host(:not([disabled])) #primaryProgress.indeterminate {
|
|
|