forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
oobe: Support meets device customization
Bug: 1178626 Change-Id: Idb95d8d9e7033ad418d4f6031ceab9b6999b77b6 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2696376 Commit-Queue: Roman Aleksandrov <raleksandrov@google.com> Reviewed-by: Roman Sorokin [CET] <rsorokin@chromium.org> Reviewed-by: Denis Kuznetsov [CET] <antrim@chromium.org> Cr-Commit-Position: refs/heads/master@{#861974}
- Loading branch information
Roman Aleksandrov
authored and
Chromium LUCI CQ
committed
Mar 11, 2021
1 parent
f5bfc93
commit c4de72c
Showing
9 changed files
with
123 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
chrome/browser/resources/chromeos/login/components/oobe_vars/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# oobe-custom-vars | ||
|
||
## Overview | ||
|
||
Only one of the `oobe-custom-vars` files is used within OOBE. All of the files | ||
define same set of CCS vars and each file is dedicated to different OOBE sceanrio. | ||
|
||
## oobe-custom-vars | ||
Set of vars which corresponds to the new OOBE design (OOBE Redesign 2021). | ||
|
||
## oobe-custom-vars-old | ||
Set of vars which corresponds to the old OOBE design. | ||
|
||
## oobe-custom-vars-remora | ||
Set of vars which corresponds to Chromebox for Meetings (CfM) devices (requisiton remora). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
...me/browser/resources/chromeos/login/components/oobe_vars/oobe_custom_vars_remora_css.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!-- Copyright 2021 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. --> | ||
|
||
<link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> | ||
|
||
<custom-style> | ||
<style is="custom-style"> | ||
html { | ||
/* Buttons */ | ||
--oobe-button-border-color: white; | ||
--oobe-button-radius: 4px; | ||
|
||
--oobe-back-button-padding-inline-end: 16px; | ||
--oobe-back-button-padding-inline-start: 8px; | ||
|
||
--oobe-next-button-padding-inline-end: 8px; | ||
--oobe-next-button-padding-inline-start: 16px; | ||
|
||
--oobe-icon-button-image-margin: 4px; | ||
|
||
/* Fonts */ | ||
--oobe-header-font-size: 32px; | ||
--oobe-header-line-height: 40px; | ||
--oobe-header-font-weight: 500; /* medium */ | ||
|
||
--oobe-subheader-font-size: 22px; | ||
--oobe-subheader-line-height: 28px; | ||
|
||
--oobe-default-font-size: 18px; | ||
--oobe-default-line-height: 24px; | ||
--oobe-text-color: var(--google-grey-900); | ||
|
||
--oobe-button-font-family: Roboto, sans-serif; | ||
--oobe-button-font-size: 16px; | ||
|
||
/* Dialog */ | ||
--oobe-adaptive-dialog-icon-size: 48px; | ||
} | ||
</style> | ||
</custom-style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters