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

Side by Side Diff: chrome/browser/resources/identity_api_ui/identity_api_ui.css

Issue 14768009: Identity API: Add component app for auth flow UI (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: no permission message for identityPrivate Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved.
James Hawkins 2013/05/13 22:24:07 nit: Please find a better name for this dir and se
Michael Courage 2013/05/14 17:10:56 Done.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */
4
5 html {
6 margin: 0;
James Hawkins 2013/05/13 22:24:07 Why is this necessary?
Michael Courage 2013/05/14 17:10:56 removed
7 padding: 0;
8 }
9
10 body {
11 margin: 0;
12 padding: 0;
13 }
14
15 .titlebar {
16 -webkit-app-region: drag;
17 background-color: white;
18 border-bottom: 1px solid #e5e5e5;
19 height: 26px;
20 white-space: nowrap;
21 width: 100%;
22 }
23
24 .titlebar-close-button {
25 -webkit-app-region: no-drag;
26 height: 14px;
27 margin: 6px;
28 position: absolute;
29 right: 0;
30 width: 14px;
31 }
32
33 .content {
34 height: auto;
35 width: 100%;
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698