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

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

Issue 1179323005: Polymer upgraded to 1.0 in login flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@polymer_pre_migration
Patch Set: Comments addressed. Created 5 years, 6 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 {
7 display: block;
8 position: relative;
9 }
10
6 #closeButton { 11 #closeButton {
7 color: white; 12 color: white;
8 position: absolute; 13 position: absolute;
9 right: 10px; 14 right: 10px;
10 top: 10px; 15 top: 10px;
11 z-index: 1; 16 z-index: 1;
12 } 17 }
13 18
14 :host-context(html[dir=rtl]) #closeButton { 19 :host-context(html[dir=rtl]) #closeButton {
15 left: 10px; 20 left: 10px;
16 right: auto; 21 right: auto;
17 } 22 }
18 23
19 #cancelConfirmDlg { 24 paper-dialog {
20 position: absolute; 25 --paper-dialog-title: {
26 font-size: 15px;
27 };
28
29 /**
30 * TODO(dzhioev): remove when
31 * https://github.com/PolymerElements/iron-fit-behavior/issues/12 is fixed.
32 */
33 position: absolute !important;
34
21 width: 384px; 35 width: 384px;
22 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698