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

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

Issue 1100623003: ChromeOS Gaia: Polishing Offline UI and Password changed UI according to specs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 font-size: 18px; 7 font-size: 18px;
8 height: 100%; 8 height: 100%;
9 overflow: hidden; 9 overflow: hidden;
10 width: 100%; 10 width: 100%;
11 } 11 }
12 12
13 p {
14 font-size: 14px;
15 margin-top: 0;
16 }
17
18 h1 {
19 font-size: 20px;
20 font-weight: normal;
21 }
22
23 #backButton { 13 #backButton {
24 color: rgb(255, 255, 255); 14 color: rgb(255, 255, 255);
25 left: 0; 15 left: 0;
26 position: absolute; 16 position: absolute;
27 top: 0; 17 top: 0;
28 z-index: 1; 18 z-index: 1;
29 } 19 }
30 20
31 :host-context(html[dir=rtl]) #backButton { 21 :host-context(html[dir=rtl]) #backButton {
32 left: auto; 22 left: auto;
33 right: 0; 23 right: 0;
34 transform: scaleX(-1); 24 transform: scaleX(-1);
35 } 25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698