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

Side by Side Diff: Source/devtools/front_end/networkPanel.css

Issue 300913002: DevTools: show HTTP headers of cached resources in network panel. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « Source/devtools/front_end/network/RequestHeadersView.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 margin: 6px; 101 margin: 6px;
102 -webkit-user-select: text; 102 -webkit-user-select: text;
103 position: absolute; 103 position: absolute;
104 top: 0; 104 top: 0;
105 left: 0; 105 left: 0;
106 right: 0; 106 right: 0;
107 bottom: 0; 107 bottom: 0;
108 overflow: auto; 108 overflow: auto;
109 } 109 }
110 110
111 .resource-headers-view.cached,
112 .resource-headers-view.cached .outline-disclosure .header-name,
113 .resource-headers-view.cached .outline-disclosure .header-value {
114 color: #888;
vsevik 2014/05/28 17:34:44 Could you please provide a screenshot for this UI
eustas 2014/05/29 09:01:33 http://picpaste.com/RaGXNCAZ.png
115 }
116
111 .resource-headers-view.visible { 117 .resource-headers-view.visible {
112 display: block; 118 display: block;
113 } 119 }
114 120
115 .resource-headers-view .outline-disclosure .parent { 121 .resource-headers-view .outline-disclosure .parent {
116 -webkit-user-select: none; 122 -webkit-user-select: none;
117 font-weight: bold; 123 font-weight: bold;
118 } 124 }
119 125
120 .resource-headers-view .outline-disclosure .parent .section * { 126 .resource-headers-view .outline-disclosure .parent .section * {
(...skipping 11 matching lines...) Expand all
132 } 138 }
133 139
134 .resource-headers-view .outline-disclosure li.expanded .header-count { 140 .resource-headers-view .outline-disclosure li.expanded .header-count {
135 display: none; 141 display: none;
136 } 142 }
137 143
138 .resource-headers-view .outline-disclosure li .header-toggle { 144 .resource-headers-view .outline-disclosure li .header-toggle {
139 display: none; 145 display: none;
140 } 146 }
141 147
142 .resource-headers-view .outline-disclosure li .status-from-cache {
vsevik 2014/05/28 17:34:44 This stile is still used in RequestHeadersView
eustas 2014/05/29 09:01:33 Done.
143 color: gray;
144 }
145
146 .resource-headers-view .outline-disclosure li.expanded .header-toggle { 148 .resource-headers-view .outline-disclosure li.expanded .header-toggle {
147 display: inline; 149 display: inline;
148 margin-left: 30px; 150 margin-left: 30px;
149 font-weight: normal; 151 font-weight: normal;
150 color: rgb(45%, 45%, 45%); 152 color: rgb(45%, 45%, 45%);
151 } 153 }
152 154
153 .resource-headers-view .outline-disclosure li .header-toggle:hover { 155 .resource-headers-view .outline-disclosure li .header-toggle:hover {
154 color: rgb(20%, 20%, 45%); 156 color: rgb(20%, 20%, 45%);
155 cursor: pointer; 157 cursor: pointer;
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 313
312 .panel.network .split-view { 314 .panel.network .split-view {
313 flex: auto; 315 flex: auto;
314 position: relative; 316 position: relative;
315 } 317 }
316 318
317 .network-filters-header { 319 .network-filters-header {
318 flex: 0 0 23px; 320 flex: 0 0 23px;
319 padding-right: 4px; 321 padding-right: 4px;
320 } 322 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/network/RequestHeadersView.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698