OLD | NEW |
1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 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 html { | 5 html { |
6 height: 100%; | 6 height: 100%; |
7 } | 7 } |
8 | 8 |
9 body { | 9 body { |
10 -webkit-app-region: drag; | 10 -webkit-app-region: drag; |
11 background-color: rgba(20, 20, 20, 0.93); | 11 background-color: rgba(20, 20, 20, 0.93); |
12 color: #999; | 12 color: #999; |
13 font-size: 80%; | 13 font-size: 80%; |
14 height: 100%; | 14 height: 100%; |
15 margin: 0; | 15 margin: 0; |
16 padding: 0; | 16 padding: 0; |
17 } | 17 } |
18 | 18 |
19 /* Click events are not received in draggable area. Making all clickable areas | 19 /* Click events are not received in draggable area. Making all clickable areas |
20 * not draggable to receive click events. | 20 * not draggable to receive click events. |
21 * TODO(bshe): Remove this when http://crbug.com/142275 fixed. | 21 * TODO(bshe): Remove this when http://crbug.com/142275 fixed. |
22 */ | 22 */ |
23 .dialog-topbar #navstrip, | 23 .dialog-topbar #navstrip, |
24 .dialog-topbar #window-close-button, | 24 .dialog-topbar #window-close-button, |
25 .image-picker, | 25 .image-picker, |
26 .overlay-container .page, | 26 .overlay-container .page, |
| 27 #author-website, |
27 #surprise-me { | 28 #surprise-me { |
28 -webkit-app-region: no-drag; | 29 -webkit-app-region: no-drag; |
29 } | 30 } |
30 | 31 |
31 .dialog-container { | 32 .dialog-container { |
32 -webkit-box-orient: vertical; | 33 -webkit-box-orient: vertical; |
33 display: -webkit-box; | 34 display: -webkit-box; |
34 overflow: hidden; | 35 overflow: hidden; |
35 } | 36 } |
36 | 37 |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 margin-right: 4px; | 333 margin-right: 4px; |
333 opacity: 0.7; | 334 opacity: 0.7; |
334 position: relative; | 335 position: relative; |
335 top: 4px; | 336 top: 4px; |
336 width: 17px; | 337 width: 17px; |
337 } | 338 } |
338 | 339 |
339 #surprise-me #checkbox.checked { | 340 #surprise-me #checkbox.checked { |
340 background-image: url('../images/ui/checkbox_checked.png'); | 341 background-image: url('../images/ui/checkbox_checked.png'); |
341 } | 342 } |
OLD | NEW |