Commit ad905964 authored by Yunke Zhou's avatar Yunke Zhou Committed by Commit Bot

Oobe user creation screen: fix button position issue

Bug: 1122717
Change-Id: I960a3bdffda9f0a2f19cca30dfc6c15acdb33dd6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2379842
Commit-Queue: Yunke Zhou <yunkez@google.com>
Reviewed-by: default avatarRoman Sorokin [CET] <rsorokin@chromium.org>
Cr-Commit-Position: refs/heads/master@{#802629}
parent 2b43f2ca
...@@ -53,10 +53,6 @@ found in the LICENSE file. --> ...@@ -53,10 +53,6 @@ found in the LICENSE file. -->
color: var(--oobe-text-color); color: var(--oobe-text-color);
line-height: 20px; line-height: 20px;
} }
.next-button {
float: right;
}
</style> </style>
<oobe-dialog id="userCreationDialog" role="dialog" has-buttons <oobe-dialog id="userCreationDialog" role="dialog" has-buttons
title-key="userCreationTitle" subtitle-key="userCreationSubtitle" title-key="userCreationTitle" subtitle-key="userCreationSubtitle"
...@@ -97,11 +93,12 @@ found in the LICENSE file. --> ...@@ -97,11 +93,12 @@ found in the LICENSE file. -->
</cr-radio-group> </cr-radio-group>
</div> </div>
</div> </div>
<div slot="bottom-buttons"> <div slot="bottom-buttons" class="layout horizontal">
<oobe-back-button id="backButton" on-tap="onBackClicked_" <oobe-back-button id="backButton" on-tap="onBackClicked_"
hidden="[[!isBackButtonVisible_]]"> hidden="[[!isBackButtonVisible_]]">
</oobe-back-button> </oobe-back-button>
<oobe-next-button id="nextButton" class="next-button focus-on-show" <div class="flex"></div>
<oobe-next-button id="nextButton" class="focus-on-show"
on-tap="onNextClicked_"> on-tap="onNextClicked_">
</oobe-next-button> </oobe-next-button>
</div> </div>
......
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