Chromium Code Reviews| 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..5edc555b9fbeb2c75daf376058a86a9c3eaf4c54 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) |
|
tmartino
2017/03/22 18:04:43
;
huangs
2017/03/22 20:15:08
Good catch! Also fixing this in inline.html.
|
| } |
| .action:active { |
| background: var(--google-blue-500); |
| } |
| -.action:focus { |
| +.action.keyboard-focus { |
| background: var(--google-blue-700); |
| } |