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

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

Issue 2267533002: ChromeOS: Update styles of material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove dependency/ Created 4 years, 4 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
Index: chrome/browser/resources/chromeos/login/oobe_welcome.css
diff --git a/chrome/browser/resources/chromeos/login/oobe_welcome.css b/chrome/browser/resources/chromeos/login/oobe_welcome.css
index 782e3cd28001b65da5628269d5832dd858bc1979..f2bc8fb7616c0a9518f46cb917d0754fb1816a41 100644
--- a/chrome/browser/resources/chromeos/login/oobe_welcome.css
+++ b/chrome/browser/resources/chromeos/login/oobe_welcome.css
@@ -2,41 +2,67 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
-#oobe-welcome-md .buttonbox {
- font-size: 32px;
- padding: 15px 24px 24px;
- width: 100px;
+/************* Welcome Screen **************/
+#welcomeScreen #welcomeIllustration {
+ height: max-content;
+ width: max-content;
}
-#oobe-welcome-md .welcome-next {
- padding: 15px 24px 24px;
+#welcomeScreen #welcomeNextButton {
+ padding-top: 32px;
}
-#oobe-welcome-md .bottom-button {
+#welcomeScreen #welcomeButtons {
+ font-size: 16px;
+ padding-top: 24px;
+}
+
+#welcomeScreen .buttonbox-text {
+ align-self: center;
+ color: rgba(0, 0, 0, 0.54);
+ font: 16px Roboto, sans-serif;
+ /* TODO(alemate): max-width should depend on Timezone visibility. */
+ max-width: 220px;
+ padding-top: 32px;
+ position: absolute;
+ text-align: center;
+ top: 32px;
+ width: max-content;
+}
+
+#welcomeScreen .action-icon {
--iron-icon-height: 32px;
--iron-icon-width: 32px;
}
-.language-selection-entry {
+#welcomeScreen .action-icon-spacer {
+ margin: 0;
+ padding: 0;
+ width: 218px;
+}
+
+/************* Language Screen **************/
+#languageScreen .language-selection-entry {
border-top: 1px solid lightgrey;
height: 44px;
padding: 0 20px;
}
-.language-selection-entry:last-of-type {
+#languageScreen .language-selection-entry:last-of-type {
border-bottom: 1px solid lightgrey;
}
-.language-selection-title {
+#languageScreen .language-selection-title {
color: rgba(0, 0, 0, 0.87);
font: 13px Roboto, sans-serif;
}
-oobe-a11y-option {
+/************* Accessibility Screen **************/
+#accessibilityScreen oobe-a11y-option {
border-top: 1px solid lightgrey;
min-height: 56px;
}
-oobe-a11y-option:last-of-type {
+#accessibilityScreen oobe-a11y-option:last-of-type {
border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

Powered by Google App Engine
This is Rietveld 408576698