Commit 0f4f4917 authored by Yue Li's avatar Yue Li Committed by Commit Bot

Fix dependency for Assistant opt-in dialog

Include oobe.css for the newly added CSS variables.

Bug: 1012793
Test: Manual Test
Change-Id: If67e43f454b9ccf193029c8b144ef45062d057ba
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1864364Reviewed-by: default avatarXiyuan Xia <xiyuan@chromium.org>
Commit-Queue: Yue Li <updowndota@chromium.org>
Cr-Commit-Position: refs/heads/master@{#707032}
parent 5814dabc
...@@ -26,6 +26,8 @@ ...@@ -26,6 +26,8 @@
<link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
<link rel="stylesheet" href="../login/oobe_flex_layout.css"> <link rel="stylesheet" href="../login/oobe_flex_layout.css">
<link rel="stylesheet" href="../login/oobe_screen.css"> <link rel="stylesheet" href="../login/oobe_screen.css">
<link rel="stylesheet" href="../login/oobe_dialog.css">
<link rel="stylesheet" href="../../../../../ui/login/oobe.css">
<link rel="stylesheet" href="setting_zippy.css"> <link rel="stylesheet" href="setting_zippy.css">
<style include="cr-icons cr-shared-style"></style> <style include="cr-icons cr-shared-style"></style>
......
...@@ -13,9 +13,9 @@ ...@@ -13,9 +13,9 @@
#header-container { #header-container {
padding-bottom: 0; padding-bottom: 0;
padding-inline-end: var(--oobe-dialog-content-padding, 64px); padding-inline-end: var(--oobe-dialog-content-padding);
padding-inline-start: var(--oobe-dialog-content-padding, 64px); padding-inline-start: var(--oobe-dialog-content-padding);
padding-top: var(--oobe-dialog-content-padding, 64px); padding-top: var(--oobe-dialog-content-padding);
} }
#header-container[android] { #header-container[android] {
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
#footer-container { #footer-container {
overflow-y: auto; overflow-y: auto;
padding: 0 var(--oobe-dialog-content-padding, 64px); padding: 0 var(--oobe-dialog-content-padding);
} }
#footer-container[noFooterPadding] { #footer-container[noFooterPadding] {
...@@ -64,11 +64,11 @@ ...@@ -64,11 +64,11 @@
} }
#oobe-bottom { #oobe-bottom {
height: calc(var(--oobe-dialog-footer-height, 96px) height: calc(var(--oobe-dialog-footer-height)
- 2 * var(--oobe-dialog-footer-padding, 32px)); - 2 * var(--oobe-dialog-footer-padding));
/* Width: real padding - button margin */ /* Width: real padding - button margin */
padding: var(--oobe-dialog-footer-padding, 32px) padding: var(--oobe-dialog-footer-padding)
calc(var(--oobe-dialog-footer-padding, 32px) - 4px); calc(var(--oobe-dialog-footer-padding) - 4px);
z-index: 1; z-index: 1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment