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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/requestHeadersView.css

Issue 2351823003: [DevTools] Remove a bunch of styles from inspectorStyle.css. (Closed)
Patch Set: Created 4 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
1 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2014 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 .request-headers-view { 7 .request-headers-view {
8 -webkit-user-select: text; 8 -webkit-user-select: text;
9 overflow: auto; 9 overflow: auto;
10 } 10 }
(...skipping 10 matching lines...) Expand all
21 flex: 0 0 19px; 21 flex: 0 0 19px;
22 padding: 0 4px; 22 padding: 0 4px;
23 } 23 }
24 24
25 .request-headers-tree { 25 .request-headers-tree {
26 padding: 0 0 0 4px; 26 padding: 0 0 0 4px;
27 flex-grow: 1; 27 flex-grow: 1;
28 overflow-y: auto; 28 overflow-y: auto;
29 margin: 0; 29 margin: 0;
30 } 30 }
31
32 .header-decode-error {
33 color: red;
34 }
35
36 .-theme-with-dark-background .header-decode-error {
37 color: hsl(0, 100%, 65%);
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698