Chromium Code Reviews| Index: chrome/browser/resources/chromeos/login/oobe_text_button.css |
| diff --git a/chrome/browser/resources/chromeos/login/oobe_text_button.css b/chrome/browser/resources/chromeos/login/oobe_text_button.css |
| index 9db05c49a72616e4ce339be93a5c5c4def34501d..a97b7fae83f95d6039be76eb042880d6ff673d96 100644 |
| --- a/chrome/browser/resources/chromeos/login/oobe_text_button.css |
| +++ b/chrome/browser/resources/chromeos/login/oobe_text_button.css |
| @@ -2,23 +2,18 @@ |
| Use of this source code is governed by a BSD-style license that can be |
| found in the LICENSE file. */ |
| -#textButton { |
| - --paper-button-flat-keyboard-focus: { |
| - border-color: rgba(66, 133, 244, 0.4); /* #4284f4 */ |
| - border-radius: 2px; |
| - border-style: solid; |
| - border-width: 2px; |
| - }; |
| +paper-button { |
| + border-color: var(--oobe-text-button-border-color, transparent); |
| + border-radius: 2px; |
| + border-style: solid; |
| + border-width: 2px; |
| height: 32px; /* = 28px + 2 * 2px border */ |
| margin: 0; |
| padding: 0; |
| } |
| -#textButton:not([focused]) { |
| - border-color: var(--oobe-text-button-border-color, transparent); |
| - border-radius: 2px; |
| - border-style: solid; |
| - border-width: 2px; |
| +paper-button[focused] { |
| + border-color: rgba(66, 133, 244, 0.4); /* #4284f4 */ |
|
jdufault
2017/03/12 01:59:53
Can we make this 4284f4 a constant like --oobe-tex
Alexander Alekseev
2017/03/13 22:45:31
Done.
|
| } |
| #container { |