OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 .tile-page { | 6 .tile-page { |
7 display: -webkit-box; | 7 display: -webkit-box; |
8 height: 100%; | 8 height: 100%; |
9 position: relative; | 9 position: relative; |
10 width: 100%; | 10 width: 100%; |
(...skipping 26 matching lines...) Expand all Loading... |
37 box-sizing: border-box; | 37 box-sizing: border-box; |
38 /* Scrollbar width(13px) + balance right padding. */ | 38 /* Scrollbar width(13px) + balance right padding. */ |
39 padding-left: 93px; | 39 padding-left: 93px; |
40 padding-right: 80px; | 40 padding-right: 80px; |
41 -webkit-box-flex: 1; | 41 -webkit-box-flex: 1; |
42 /* Don't apply clip mask to padding. */ | 42 /* Don't apply clip mask to padding. */ |
43 -webkit-mask-clip: content-box; | 43 -webkit-mask-clip: content-box; |
44 } | 44 } |
45 | 45 |
46 .tile-grid { | 46 .tile-grid { |
47 overflow: hidden; | |
48 position: relative; | 47 position: relative; |
49 width: 100%; | 48 width: 100%; |
50 } | 49 } |
51 | 50 |
52 .tile { | 51 .tile { |
53 display: inline-block; | 52 display: inline-block; |
54 position: absolute; | 53 position: absolute; |
55 -webkit-print-color-adjust: exact; | 54 -webkit-print-color-adjust: exact; |
56 /* Don't offer the context menu on long-press. */ | 55 /* Don't offer the context menu on long-press. */ |
57 -webkit-touch-callout: none; | 56 -webkit-touch-callout: none; |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 | 162 |
164 /** Scrollbars ****************************************************************/ | 163 /** Scrollbars ****************************************************************/ |
165 | 164 |
166 .tile-page-content::-webkit-scrollbar { | 165 .tile-page-content::-webkit-scrollbar { |
167 width: 13px; | 166 width: 13px; |
168 } | 167 } |
169 | 168 |
170 .tile-page-content::-webkit-scrollbar-button { | 169 .tile-page-content::-webkit-scrollbar-button { |
171 display: none; | 170 display: none; |
172 } | 171 } |
OLD | NEW |