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

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

Issue 1593009: Add extra views to the new net internals page. This adds tabs along the top f... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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
OLDNEW
1 /* 1 /*
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 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 * { 7 * {
8 -webkit-box-sizing: border-box; 8 -webkit-box-sizing: border-box;
9 -moz-box-sizing: border-box;
9 } 10 }
10 body { 11 body {
11 font-family: sans-serif; 12 font-family: sans-serif;
12 } 13 }
13 14
14 #filterBox { 15 #filterBox {
15 background: #efefef; 16 background: #efefef;
16 padding: 5px; 17 padding: 5px;
17 border-bottom: 1px solid gray; 18 border-bottom: 1px solid gray;
18 overflow: hidden; 19 overflow: hidden;
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 } 126 }
126 127
127 .logSourceEntry * p { 128 .logSourceEntry * p {
128 font-weight: bold; 129 font-weight: bold;
129 font-size: 12px; 130 font-size: 12px;
130 } 131 }
131 132
132 .logSourceEntry * td { 133 .logSourceEntry * td {
133 font-size: 10px; 134 font-size: 10px;
134 } 135 }
136
137 #categoryTabHandles ul {
138 list-style: none;
139 padding: 0;
140 margin: 0;
141 }
142
143 #categoryTabHandles {
144 border-bottom: 1px solid #555;
145 background: #aaa;
146 overflow: hidden;
147 }
148
149 #categoryTabHandles li {
150 float: left;
151 margin-left: 5px;
152 }
153
154 #categoryTabHandles a {
155 text-decoration: none;
156 text-align: center;
157 display: block;
158 width: 9em;
159 padding: 5px;
160 background: #ccc;
161 }
162
163 #categoryTabHandles a:hover {
164 background: #eee;
165 }
166
167 #categoryTabHandles a:visited,
168 #categoryTabHandles a {
169 color: blue;
170 }
171
172 #categoryTabHandles .selected {
173 background: white;
174 }
175
176 #categoryTabHandles a.selected {
177 position:relative;
178 top: 1px;
179 font-weight: bold;
180 color: black;
181 }
182
183 #detailsLogBox,
184 #detailsTimelineBox {
185 overflow: auto;
186 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/layoutmanager.js ('k') | chrome/browser/resources/net_internals/main.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698