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

Side by Side Diff: chrome/browser/resources/chromeos/login/offline_gaia.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: Fixed tests. 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 { 6 :host {
7 display: flex;
8 flex-direction: column;
7 font-size: 18px; 9 font-size: 18px;
8 height: 100%;
9 overflow: hidden; 10 overflow: hidden;
10 width: 100%; 11 position: relative;
11 } 12 }
12 13
13 #backButton { 14 #backButton {
14 color: white; 15 color: white;
15 left: 10px; 16 left: 10px;
16 position: absolute; 17 position: absolute;
17 top: 10px; 18 top: 10px;
18 z-index: 1; 19 z-index: 1;
19 } 20 }
20 21
21 :host-context(html[dir=rtl]) #backButton { 22 :host-context(html[dir=rtl]) #backButton {
22 left: auto; 23 left: auto;
23 right: 10px; 24 right: 10px;
24 transform: scaleX(-1); 25 transform: scaleX(-1);
25 } 26 }
27
28 paper-dialog {
29 --paper-dialog-title: {
30 font-size: 15px;
31 };
32
33 /**
34 * TODO(dzhioev): remove when
35 * https://github.com/PolymerElements/iron-fit-behavior/issues/12 is fixed.
36 */
37 position: absolute !important;
38
39 width: 384px;
40 }
41
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698