Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: chrome/browser/resources/ntp4/tile_page.css

Issue 8827014: NTP4: Remove overflow from .tile-grid to fix app clipping issue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698