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

Side by Side Diff: Source/devtools/front_end/ui_lazy/overviewGrid.css

Issue 1183483011: DevTools: Support popover on timeline overview. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: index-based -> frame-based Created 5 years, 6 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 | « Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js ('k') | 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 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 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 6
7 .overview-grid-window-selector { 7 .overview-grid-window-selector {
8 position: absolute; 8 position: absolute;
9 top: 0; 9 top: 0;
10 bottom: 0; 10 bottom: 0;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 z-index: 500; 54 z-index: 500;
55 border-radius: 2px; 55 border-radius: 2px;
56 box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1px 0; 56 box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1px 0;
57 } 57 }
58 58
59 .overview-grid-window-resizer-right { 59 .overview-grid-window-resizer-right {
60 margin-left: -3px; 60 margin-left: -3px;
61 margin-right: -2px; 61 margin-right: -2px;
62 } 62 }
63 63
64 .overview-grid-window-area {
65 position: absolute;
66 top: 20px;
67 bottom: 0;
68 left: 0;
69 right: 0;
70 z-index: 250;
71 }
72
73 .overview-grid-current-position { 64 .overview-grid-current-position {
74 position: absolute; 65 position: absolute;
75 top: 0; 66 top: 0;
76 bottom: 0; 67 bottom: 0;
77 width: 2px; 68 width: 2px;
78 background-color: hsla(220, 95%, 50%, 0.7); 69 background-color: hsla(220, 95%, 50%, 0.7);
79 z-index: 500; 70 z-index: 500;
80 pointer-events: none; 71 pointer-events: none;
81 visibility: hidden; 72 visibility: hidden;
82 } 73 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ui_lazy/TimelineOverviewPane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698