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

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

Issue 2745843004: ChromeOS OOBE: Fix OK button on Welcome screen. (Closed)
Patch Set: 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 | « chrome/browser/resources/chromeos/login/oobe_buttons.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe_buttons.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698