OLD | NEW |
---|---|
(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 } | |
OLD | NEW |