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

Side by Side Diff: chrome/browser/resources/chromeos/login/saml_confirm_password.css

Issue 1115993002: ChromeOS Gaia: SAML password confirmation dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 7 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 unified diff | Download patch
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 :host { 6 #closeButton {
7 font-size: 18px;
8 height: 100%;
9 overflow: hidden;
10 width: 100%;
11 }
12
13 #backButton {
14 color: rgb(255, 255, 255); 7 color: rgb(255, 255, 255);
15 left: 0;
16 position: absolute; 8 position: absolute;
9 right: 0;
17 top: 0; 10 top: 0;
18 z-index: 1; 11 z-index: 1;
19 } 12 }
20 13
21 :host-context(html[dir=rtl]) #backButton { 14 :host-context(html[dir=rtl]) #closeButton {
22 left: auto; 15 left: 0;
23 right: 0; 16 right: auto;
24 transform: scaleX(-1);
25 } 17 }
18
19 #cancelConfirmDlg {
20 position: absolute;
21 width: 384px;
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698