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

Side by Side Diff: chrome/tools/test/reference_build/chrome_linux/resources/inspector/devtools.css

Issue 177049: On Linux, move the passing of filedescriptors to a dedicated socketpair(). (Closed)
Patch Set: Removed *.d files from reference build Created 11 years, 3 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
OLDNEW
(Empty)
1 #scripts-files option.injected {
2 color: rgb(70, 134, 240);
3 }
4
5 .data-grid table {
6 line-height: 120%;
7 }
8
9 body.attached #toolbar {
10 height: 34px;
11 border-top: 1px solid rgb(100, 100, 100);
12 cursor: default; /* overriden */
13 padding-left: 0;
14 }
15
16
17 /* Chrome theme overrides */
18 #toolbar {
19 background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(2 42, 247, 253)), to(rgb(223, 234, 248)));
20 }
21
22
23 /* Heap Profiler Styles */
24
25 #heap-snapshot-views {
26 position: absolute;
27 top: 0;
28 right: 0;
29 left: 200px;
30 bottom: 0;
31 }
32
33 #heap-snapshot-status-bar-items {
34 position: absolute;
35 top: 0;
36 bottom: 0;
37 left: 200px;
38 overflow: hidden;
39 border-left: 1px solid rgb(184, 184, 184);
40 margin-left: -1px;
41 }
42
43 .heap-snapshot-status-bar-item .glyph {
44 -webkit-mask-image: url(Images/focusButtonGlyph.png);
45 }
46
47 .heap-snapshot-sidebar-tree-item .icon {
48 content: url(Images/profileIcon.png);
49 }
50
51 .heap-snapshot-sidebar-tree-item.small .icon {
52 content: url(Images/profileSmallIcon.png);
53 }
54
55 .heap-snapshot-view {
56 display: none;
57 overflow: hidden;
58 position: absolute;
59 top: 0;
60 left: 0;
61 right: 0;
62 bottom: 0;
63 }
64
65 .heap-snapshot-view.visible {
66 display: block;
67 }
68
69 .heap-snapshot-view .data-grid {
70 border: none;
71 max-height: 100%;
72 position: absolute;
73 left: 0;
74 right: 0;
75 top: 0;
76 bottom: 93px;
77 }
78
79 #heap-snapshot-summary {
80 position: absolute;
81 padding-top: 20px;
82 bottom: 0;
83 left: 0;
84 right: 0;
85 height: 93px;
86 margin-left: -1px;
87 border-left: 1px solid rgb(102, 102, 102);
88 background-color: rgb(101, 111, 130);
89 background-image: -webkit-gradient(linear, left top, left bottom, from(rgba( 0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
90 background-repeat: repeat-x;
91 background-position: top;
92 text-align: center;
93 text-shadow: black 0 1px 1px;
94 white-space: nowrap;
95 color: white;
96 -webkit-background-size: 1px 6px;
97 -webkit-background-origin: padding;
98 -webkit-background-clip: padding;
99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698