OLD | NEW |
---|---|
1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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 html { | 6 html { |
7 height: 100%; | 7 height: 100%; |
8 } | 8 } |
9 | 9 |
10 body { | 10 body { |
11 background-color: #fbfbfb; | 11 background-color: #fbfbfb; |
12 height: 100%; | 12 height: 100%; |
13 margin: 0; | 13 margin: 0; |
14 overflow-x: auto; | |
15 overflow-y: auto; | |
xiyuan
2014/08/28 22:13:04
nit: simplify to "overflow: auto"
rkc
2014/08/28 22:16:18
Done.
| |
14 padding: 0; | 16 padding: 0; |
15 width: 100%; | 17 width: 100%; |
16 } | 18 } |
17 | 19 |
18 .title-bar { | 20 .title-bar { |
19 -webkit-align-items: center; | 21 -webkit-align-items: center; |
20 -webkit-app-region: drag; | 22 -webkit-app-region: drag; |
21 background-color: #fff; | 23 background-color: #fff; |
22 box-shadow: 0 1px #d0d0d0; | 24 box-shadow: 0 1px #d0d0d0; |
23 color: rgb(80, 80, 82); | 25 color: rgb(80, 80, 82); |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
164 | 166 |
165 button.white-button { | 167 button.white-button { |
166 -webkit-margin-end: 10px; | 168 -webkit-margin-end: 10px; |
167 color: #000; | 169 color: #000; |
168 } | 170 } |
169 | 171 |
170 button.blue-button { | 172 button.blue-button { |
171 color: #fff; | 173 color: #fff; |
172 text-shadow: 1px sharp drop shadow rgb(45, 106, 218); | 174 text-shadow: 1px sharp drop shadow rgb(45, 106, 218); |
173 } | 175 } |
OLD | NEW |