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

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

Issue 8890016: Make source_dependencies in about:net-internals clickable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix missed variable name change Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 2 Copyright (c) 2011 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 /* TODO(eroman): Split this file up, so the styles are defined close to where 7 /* TODO(eroman): Split this file up, so the styles are defined close to where
8 they are used. For instance, the proxy tab styles should 8 they are used. For instance, the proxy tab styles should
9 either be part of proxy_view.html, or proxy_view.css. Only 9 either be part of proxy_view.html, or proxy_view.css. Only
10 common styles should be declared here */ 10 common styles should be declared here */
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 .styledTable th { 82 .styledTable th {
83 background: rgb(224,236,255); 83 background: rgb(224,236,255);
84 } 84 }
85 85
86 .styledTable th.title { 86 .styledTable th.title {
87 background: rgb(255,217,217); 87 background: rgb(255,217,217);
88 } 88 }
89 89
90 /** 90 /**
91 * Styling for event logs.
92 */
93 .event-log p {
94 white-space: nowrap;
95 }
96
97 .event-log h4 {
98 margin: 0;
99 }
100
101 .event-log a {
102 text-decoration: none;
103 font-weight: bold;
104 }
105
106 /**
91 * Styling for an emphasized button. 107 * Styling for an emphasized button.
92 */ 108 */
93 .bigButton { 109 .bigButton {
94 font-size: 100%; 110 font-size: 100%;
95 font-weight: bold; 111 font-weight: bold;
96 } 112 }
97 113
98 /** 114 /**
99 * Styling for text indicating a potential problem or error state. 115 * Styling for text indicating a potential problem or error state.
100 */ 116 */
101 .warningText { 117 .warningText {
102 color: red; 118 color: red;
103 } 119 }
104 120
105 #status-view-for-capture { 121 #status-view-for-capture {
106 background: red; 122 background: red;
107 color: #eee; 123 color: #eee;
108 padding: 4px; 124 padding: 4px;
109 } 125 }
110 126
111 #status-view-for-file { 127 #status-view-for-file {
112 background: #88c; 128 background: #88c;
113 color: #eee; 129 color: #eee;
114 padding: 4px; 130 padding: 4px;
115 } 131 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/log_view_painter.js ('k') | chrome/browser/resources/net_internals/proxy_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698