| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 * | 5 * |
| 6 * A style sheet for Chrome apps. | 6 * A style sheet for Chrome apps. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 @namespace "http://www.w3.org/1999/xhtml"; | 9 @namespace "http://www.w3.org/1999/xhtml"; |
| 10 | 10 |
| 11 body { | 11 body { |
| 12 -webkit-user-select: none; | 12 -webkit-user-select: none; |
| 13 cursor: default; | 13 cursor: default; |
| 14 } | 14 } |
| 15 | 15 |
| 16 browser { | 16 webview { |
| 17 display: inline-block; | 17 display: inline-block; |
| 18 } | 18 } |
| 19 | 19 |
| 20 html, body { | 20 html, body { |
| 21 overflow: hidden; | 21 overflow: hidden; |
| 22 } | 22 } |
| OLD | NEW |