Commit 8bae7a7e authored by Katie D's avatar Katie D Committed by Commit Bot

Accessibility OOBE screen can be too tall with feature flag.

With --enable-experimental-accessiblity-features, too many a11y tools
are included in the OOBE screen and it flows behind the button. This
makes the accessibility tools list scroll.

Bug: 833047
Change-Id: If5ca4ee1dea324b883e97195a6debad5f0804ed7
Reviewed-on: https://chromium-review.googlesource.com/1194982Reviewed-by: default avatarAlexander Alekseev <alemate@chromium.org>
Commit-Queue: Katie Dektar <katie@chromium.org>
Cr-Commit-Position: refs/heads/master@{#587282}
parent 3b964297
...@@ -32,6 +32,10 @@ ...@@ -32,6 +32,10 @@
border-bottom: var(--oobe-a11y-dialog-list-item-border); border-bottom: var(--oobe-a11y-dialog-list-item-border);
} }
#accessibilityScreen .scroll {
overflow: scroll;
}
/************* Timezone Screen **************/ /************* Timezone Screen **************/
#timezoneScreen .timezone-selection-entry { #timezoneScreen .timezone-selection-entry {
border-top: var(--oobe-dialog-list-item-border); border-top: var(--oobe-dialog-list-item-border);
......
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
<div slot="subtitle"> <div slot="subtitle">
[[i18nDynamic(locale, 'accessibilitySectionHint')]] [[i18nDynamic(locale, 'accessibilitySectionHint')]]
</div> </div>
<div slot="footer" class="layout vertical"> <div slot="footer" class="layout vertical scroll">
<oobe-a11y-option checked="[[a11yStatus.spokenFeedbackEnabled]]" <oobe-a11y-option checked="[[a11yStatus.spokenFeedbackEnabled]]"
on-change="onA11yOptionChanged_" on-change="onA11yOptionChanged_"
chrome-message="enableSpokenFeedback" chrome-message="enableSpokenFeedback"
......
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