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

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

Issue 1427823002: DevTools: Grey out outside parts of selection window on timeline overview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: refactor Created 5 years, 1 month 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
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;
11 background-color: rgba(125, 173, 217, 0.5); 11 background-color: rgba(125, 173, 217, 0.5);
12 z-index: 250; 12 z-index: 250;
13 pointer-events: none; 13 pointer-events: none;
14 } 14 }
15 15
16 .overview-grid-window {
17 background-color: white;
18 position: absolute;
19 left: 0;
20 right: 0;
21 top: 0;
22 height: 20px;
23 z-index: 150;
24 }
25
26 .overview-grid-dividers-background {
27 left: 0;
28 right: 0;
29 top: 0;
30 height: 20px;
31 background-color: black;
32 position: absolute;
33 }
34
35 .overview-grid-window-rulers {
36 top: 0;
37 bottom: 0;
38 position: absolute;
39 opacity: 0.2;
40 border-right: 1px solid black;
41 border-left: 1px solid black;
42 z-index: 250;
43 pointer-events: none;
44 }
45
46 .overview-grid-window-resizer { 16 .overview-grid-window-resizer {
47 position: absolute; 17 position: absolute;
48 top: 0; 18 top: -1px;
49 height: 20px; 19 height: 20px;
50 width: 5px; 20 width: 6px;
51 margin-left: -2px; 21 margin-left: -3px;
52 margin-right: -3px;
53 background-color: rgb(153, 153, 153); 22 background-color: rgb(153, 153, 153);
23 border: 1px solid white;
54 z-index: 500; 24 z-index: 500;
55 border-radius: 2px;
56 box-shadow: white 1px 0 0, white -1px 0 0, white 0 1px 0, white 0 -1px 0;
57 }
58
59 .overview-grid-window-resizer-right {
60 margin-left: -3px;
61 margin-right: -2px;
62 } 25 }
63 26
64 .overview-grid-cursor-area { 27 .overview-grid-cursor-area {
65 position: absolute; 28 position: absolute;
66 left: 0; 29 left: 0;
67 right: 0; 30 right: 0;
68 top: 20px; 31 top: 20px;
69 bottom: 0; 32 bottom: 0;
70 z-index: 500; 33 z-index: 500;
71 cursor: text; 34 cursor: text;
72 } 35 }
73 36
74 .overview-grid-cursor-position { 37 .overview-grid-cursor-position {
75 position: absolute; 38 position: absolute;
76 top: 0; 39 top: 0;
77 bottom: 0; 40 bottom: 0;
78 width: 2px; 41 width: 2px;
79 background-color: hsla(220, 95%, 50%, 0.7); 42 background-color: hsla(220, 95%, 50%, 0.7);
80 z-index: 500; 43 z-index: 500;
81 pointer-events: none; 44 pointer-events: none;
82 visibility: hidden; 45 visibility: hidden;
83 overflow: hidden; 46 overflow: hidden;
84 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698