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

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

Issue 2717443002: ChromeOS OOBE: Update Welcome screen colors after UI review. (Closed)
Patch Set: Created 3 years, 10 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_a11y_option.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_welcome.css
diff --git a/chrome/browser/resources/chromeos/login/oobe_welcome.css b/chrome/browser/resources/chromeos/login/oobe_welcome.css
index 034843045718a6a3f120cfd3eb852994556becc7..6f01d3f37a95c4d2089499679e8545947a49cbae 100644
--- a/chrome/browser/resources/chromeos/login/oobe_welcome.css
+++ b/chrome/browser/resources/chromeos/login/oobe_welcome.css
@@ -2,15 +2,19 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
+:root {
+ --oobe-dialog-list-item-border: 1px solid rgba(0, 0, 0, 0.06);
+}
+
/************* Language Screen **************/
#languageScreen .language-selection-entry {
- border-top: 1px solid lightgrey;
+ border-top: var(--oobe-dialog-list-item-border);
height: 44px;
padding: 0 10px;
}
#languageScreen .language-selection-entry:last-of-type {
- border-bottom: 1px solid lightgrey;
+ border-bottom: var(--oobe-dialog-list-item-border);
}
#languageScreen .language-selection-title {
@@ -24,12 +28,12 @@
/************* Accessibility Screen **************/
#accessibilityScreen oobe-a11y-option {
- border-top: 1px solid lightgrey;
+ border-top: var(--oobe-dialog-list-item-border);
min-height: 56px;
}
#accessibilityScreen oobe-a11y-option:last-of-type {
- border-bottom: 1px solid rgba(0, 0, 0, 0.14);
+ border-bottom: var(--oobe-dialog-list-item-border);
}
#accessibilityScreen .bottom-buttons {
@@ -47,13 +51,13 @@
/************* Timezone Screen **************/
#timezoneScreen .timezone-selection-entry {
- border-top: 1px solid lightgrey;
+ border-top: var(--oobe-dialog-list-item-border);
height: 44px;
padding: 0 20px;
}
#timezoneScreen .timezone-selection-entry:last-of-type {
- border-bottom: 1px solid lightgrey;
+ border-bottom: var(--oobe-dialog-list-item-border);
}
#timezoneScreen .timezone-selection-title {
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe_a11y_option.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698