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

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

Issue 1193553003: DevTools: Tweaks to timeline overview popover (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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-current-position { 64 .overview-grid-cursor-area {
65 position: absolute;
66 left: 0;
67 right: 0;
68 top: 20px;
69 bottom: 0;
70 z-index: 500;
71 cursor: text;
72 }
73
74 .overview-grid-cursor-position {
65 position: absolute; 75 position: absolute;
66 top: 0; 76 top: 0;
67 bottom: 0; 77 bottom: 0;
68 width: 2px; 78 width: 2px;
69 background-color: hsla(220, 95%, 50%, 0.7); 79 background-color: hsla(220, 95%, 50%, 0.7);
70 z-index: 500; 80 z-index: 500;
71 pointer-events: none; 81 pointer-events: none;
72 visibility: hidden; 82 visibility: hidden;
73 } 83 }
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