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

Unified Diff: chrome/browser/resources/chromeos/login/notification_card.css

Issue 1179323005: Polymer upgraded to 1.0 in login flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@polymer_pre_migration
Patch Set: Comments addressed. Created 5 years, 6 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: chrome/browser/resources/chromeos/login/notification_card.css
diff --git a/chrome/browser/resources/chromeos/login/notification_card.css b/chrome/browser/resources/chromeos/login/notification_card.css
index 7a728f3b0be9b34e4b2cb849df57c6b0ce7c29c3..2be458dd11d34ed85b0f2ac8d11fa257b505a91d 100644
--- a/chrome/browser/resources/chromeos/login/notification_card.css
+++ b/chrome/browser/resources/chromeos/login/notification_card.css
@@ -11,23 +11,17 @@
margin-bottom: 14px;
}
-/* ':host' and '[icon]' are needed to increase selector's specificity. */
-:host core-icon[icon] {
+:host iron-icon {
height: 28px;
width: 28px;
}
-core-icon[icon=warning] {
- color: rgb(251, 192, 45);
+iron-icon[icon=warning] {
+ color: var(--google-yellow-500);
}
-core-icon[icon=done] {
- color: rgb(15, 157, 88);
-}
-
-#heading {
- font-size: 20px;
- margin-bottom: 14px;
+iron-icon[icon=done] {
+ color: var(--google-green-500);
}
#text-container {
@@ -37,14 +31,8 @@ core-icon[icon=done] {
text-align: center;
}
-paper-button {
- background-color: rgb(66, 133, 244);
- color: rgb(255, 255, 255);
- min-width: 126px;
-}
-
a {
- color: rgb(66, 133, 244);
+ color: var(--google-blue-500);
text-decoration: none;
}

Powered by Google App Engine
This is Rietveld 408576698