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

Side by Side Diff: chrome/browser/resources/net_internals/main.css

Issue 1088007: Add an initial implementation of net-internals inspector in javascript.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: more build file Created 10 years, 9 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 Copyright (c) 2010 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 */
6
7 * {
8 -webkit-box-sizing: border-box;
9 }
10 body {
11 font-family: sans-serif;
12 }
13
14 #filterBox {
15 background: #efefef;
16 padding: 5px;
17 border-bottom: 1px solid gray;
18 overflow: hidden;
19 }
20
21 #filterBox * {
22 white-space: nowrap;
23 font-family: sans-serif;
24 font-size: 12px;
25 }
26
27 #filterBox input {
28 width: 100%;
29 }
30
31 #actionBox {
32 background: #efefef;
33 white-space: nowrap;
34 border-top: 1px solid gray;
35 overflow: hidden;
36 }
37
38 #requestsBox {
39 overflow-x: hidden;
40 overflow-y: auto
41 }
42
43 #detailsBox {
44 overflow: auto;
45 }
46
47 #splitterBox {
48 background: #bfbfbf;
49 border-left: 1px inset black;
50 border-right: 1px solid black;
51 position:absolute;
52 width: 8px;
53 cursor: col-resize;
54 user-select: none;
55 }
56
57 #requestsListTable {
58 cursor: pointer;
59 }
60
61 #requestsListTable thead td {
62 text-align: left;
63 font-weight: bold;
64 background: rgb(229, 236, 249);
65 }
66
67 #requestsListTable td {
68 padding: 3px;
69 border-left: 1px solid #afafaf;
70 border-bottom: 1px solid #afafaf;
71 text-overflow: ellipsis;
72 font-size: 12px;
73 white-space: nowrap;
74 }
75
76 #requestsListTableBody .mouseover {
77 background: rgb(244,244,255);
78 }
79
80 #requestsListTableBody .selected,
81 #requestsListTableBody .mouseover .selected {
82 background: #C3D9FF;
83 }
84
85 #requestsListTableBody .source_CONNECT_JOB {
86 color: blue;
87 }
88
89 #requestsListTableBody .source_INIT_PROXY_RESOLVER {
90 color: orange;
91 }
92
93 .tabSwitcher {
94 margin-top: 10px;
95 margin-left: 10px;
96 }
97
98 .tabSwitcher th {
99 background: rgb(229,236,249);
100 cursor: pointer;
101 background-clip: border-box;
102 border-top-left-radius: 5px 5px;
103 border-top-right-radius: 5px 5px;
104 padding-left: 4px;
105 padding-top: 4px;
106 padding-right: 4px;
107 font-size: 12px;
108 margin-left: 30px;
109 }
110
111 .tabSwitcher th.selected, .tabSwitcherLine {
112 background: rgb(195,217,255);
113 }
114
115 .tabSwitcherLine {
116 height: 10px;
117 }
118
119 #detailsTabArea {
120 margin-top: 10px;
121 }
122
123 .logSourceEntry {
124 margin: 5px;
125 }
126
127 .logSourceEntry * p {
128 font-weight: bold;
129 font-size: 12px;
130 }
131
132 .logSourceEntry * td {
133 font-size: 10px;
134 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/logviewpainter.js ('k') | chrome/browser/resources/net_internals/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698