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

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

Issue 2495153002: ChromeOS OOBE: Implement network selection screen "Back" button. (Closed)
Patch Set: Update after review Created 4 years, 1 month 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/chromeos/login/oobe_buttons.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/login/oobe_back_button.css
diff --git a/chrome/browser/resources/chromeos/login/oobe_back_button.css b/chrome/browser/resources/chromeos/login/oobe_back_button.css
new file mode 100644
index 0000000000000000000000000000000000000000..341760ebb556f44ab6f87e7fcf258889084d13b6
--- /dev/null
+++ b/chrome/browser/resources/chromeos/login/oobe_back_button.css
@@ -0,0 +1,44 @@
+/* Copyright 2016 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. */
+
+#button {
+ --paper-button-flat-keyboard-focus: {
+ border-color: rgba(66, 133, 244, 0.4); /* #4284f4 */
+ border-radius: 2px;
+ border-style: solid;
+ border-width: 2px;
+ };
+ color: var(--google-blue-500);
+ font: var(--oobe-roboto-bold), sans-serif;
+ font-size: 12px;
+ height: 32px; /* = 28 + border (2px + 2px) */
+ margin: 0;
+ min-width: 92px; /* = 88 + border (2px + 2px) */
+ padding: 0;
+}
+
+#button:not([focused]) {
+ border-color: transparent;
+ border-radius: 2px;
+ border-style: solid;
+ border-width: 2px;
+}
+
+#text {
+ -webkit-padding-end: 16px;
+ text-transform: none;
+}
+
+iron-icon {
+ --iron-icon-height: 12px;
+ --iron-icon-width: 12px;
+ -webkit-padding-end: 8px;
+ -webkit-padding-start: 16px;
+}
+
+#button[disabled] #text,
+#button[disabled] iron-icon {
+ color: rgba(0, 0, 0, 0.34);
+}
+
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/oobe_buttons.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698