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

Side by Side Diff: chrome/browser/resources/uber/uber.css

Issue 10696053: Merge 144659 - fix horizontal scrollbar flicker on uber page (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 5 months 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) 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 body {
6 /* http://crbug.com/129406 --- horizontal scrollbars flicker when changing
7 * sections. */
8 overflow-x: hidden;
9 }
10
5 #navigation { 11 #navigation {
6 height: 100%; 12 height: 100%;
7 left: 0; 13 left: 0;
8 /* This is a hack to prevent the navigation bar from occluding pointer events 14 /* This is a hack to prevent the navigation bar from occluding pointer events
9 * from the bottom scroll bar (which shows when one needs to horizontally 15 * from the bottom scroll bar (which shows when one needs to horizontally
10 * scroll). Corresponding padding-top to offset this is in uber_frame.css */ 16 * scroll). Corresponding padding-top to offset this is in uber_frame.css */
11 margin-top: -20px; 17 margin-top: -20px;
12 position: absolute; 18 position: absolute;
13 /* This value is different from the left value to compensate for the scroll 19 /* This value is different from the left value to compensate for the scroll
14 * bar (which is always on and to the right) in RTL. */ 20 * bar (which is always on and to the right) in RTL. */
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 .iframe-container.expanded { 54 .iframe-container.expanded {
49 left: 0; 55 left: 0;
50 } 56 }
51 57
52 iframe { 58 iframe {
53 border: none; 59 border: none;
54 display: block; 60 display: block;
55 height: 100%; 61 height: 100%;
56 width: 100%; 62 width: 100%;
57 } 63 }
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