OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 html.col-resize * { | 9 html.col-resize * { |
10 cursor: col-resize !important; | 10 cursor: col-resize !important; |
11 } | 11 } |
12 | 12 |
13 /* Outer frame of the dialog. */ | 13 /* Outer frame of the dialog. */ |
14 body { | 14 body { |
15 -webkit-box-flex: 1; | 15 -webkit-box-flex: 1; |
16 -webkit-box-orient: vertical; | 16 -webkit-box-orient: vertical; |
| 17 -webkit-tap-highlight-color: transparent; |
17 -webkit-transition: opacity 70ms linear; | 18 -webkit-transition: opacity 70ms linear; |
18 -webkit-user-select: none; | 19 -webkit-user-select: none; |
19 cursor: default; | 20 cursor: default; |
20 display: -webkit-box; | 21 display: -webkit-box; |
21 height: 100%; | 22 height: 100%; |
22 margin: 0; | 23 margin: 0; |
23 opacity: 0; | 24 opacity: 0; |
24 padding: 0; | 25 padding: 0; |
25 position: absolute; | 26 position: absolute; |
26 width: 100%; | 27 width: 100%; |
(...skipping 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1597 | 1598 |
1598 #default-action-dialog { | 1599 #default-action-dialog { |
1599 min-width: 300px; | 1600 min-width: 300px; |
1600 width: auto; | 1601 width: auto; |
1601 } | 1602 } |
1602 | 1603 |
1603 .gdrive-welcome-wrapper { | 1604 .gdrive-welcome-wrapper { |
1604 /* gdrive_welcome.css will override it once loaded. */ | 1605 /* gdrive_welcome.css will override it once loaded. */ |
1605 display: none; | 1606 display: none; |
1606 } | 1607 } |
OLD | NEW |