Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: third_party/polymer/v1_0/components-chromium/paper-progress/paper-progress.html

Issue 1862213002: Roll third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove obsolete appearance_browsertest.js, result of a previous bad merge. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698