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

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

Issue 6500010: HSTS: add net-internals UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 10 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 box-sizing: border-box; 8 box-sizing: border-box;
9 -moz-box-sizing: border-box; 9 -moz-box-sizing: border-box;
10 } 10 }
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 153
154 #detailsLogBox, 154 #detailsLogBox,
155 #detailsTimelineBox, 155 #detailsTimelineBox,
156 #httpCacheTabContent, 156 #httpCacheTabContent,
157 #proxyTabContent, 157 #proxyTabContent,
158 #dataTabContent, 158 #dataTabContent,
159 #dnsTabContent, 159 #dnsTabContent,
160 #socketsTabContent, 160 #socketsTabContent,
161 #spdyTabContent, 161 #spdyTabContent,
162 #serviceProvidersTabContent, 162 #serviceProvidersTabContent,
163 #testTabContent { 163 #testTabContent,
164 #hstsTabContent {
164 overflow: auto; 165 overflow: auto;
165 padding: 10px; 166 padding: 10px;
166 } 167 }
167 168
168 #proxyTabContent td, 169 #proxyTabContent td,
169 #proxyTabContent th { 170 #proxyTabContent th {
170 font-size: 12px; 171 font-size: 12px;
171 } 172 }
172 173
173 /* 174 /*
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 font-size: 100%; 212 font-size: 100%;
212 font-weight: bold; 213 font-weight: bold;
213 } 214 }
214 215
215 /** 216 /**
216 * Styling for text indicating a potential problem or error state. 217 * Styling for text indicating a potential problem or error state.
217 */ 218 */
218 .warningText { 219 .warningText {
219 color: red; 220 color: red;
220 } 221 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698