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

Unified Diff: chrome/browser/resources/welcome/welcome.css

Issue 2764623002: [FRE] Unify chrome://welcome and chrome://welcome-win10 button styles. (Closed)
Patch Set: Add missing ';'. Created 3 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/resources/welcome/win10/inline.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/welcome/welcome.css
diff --git a/chrome/browser/resources/welcome/welcome.css b/chrome/browser/resources/welcome/welcome.css
index 2ca056c65150d78abf88aa4e66bfbb2659e1c22d..54556bc4586efb7c538654e437774bcf8e0d63f0 100644
--- a/chrome/browser/resources/welcome/welcome.css
+++ b/chrome/browser/resources/welcome/welcome.css
@@ -179,20 +179,29 @@ body {
}
.action {
+ -webkit-font-smoothing: antialiased;
background: var(--google-blue-500);
border-radius: 2px;
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
color: white;
font-size: .8125em;
font-weight: 500;
line-height: 2.25rem;
padding: 0 1.5em;
+ transition: 300ms cubic-bezier(.4, .2, 0, 1);
+ will-change: box-shadow;
+}
+
+.action:hover {
+ background: var(--paper-blue-a400);
+ box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .24);
}
.action:active {
background: var(--google-blue-500);
}
-.action:focus {
+.action.keyboard-focus {
background: var(--google-blue-700);
}
« no previous file with comments | « no previous file | chrome/browser/resources/welcome/win10/inline.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698