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

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: Addressed comments 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
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/06/02 14:49:27 I don't think we need this. This makes text unread
eustas 2014/06/03 05:56:42 Done.
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 {
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;
156 } 158 }
157 159
158 .resource-headers-view .outline-disclosure .header-name { 160 .resource-headers-view .outline-disclosure .header-name {
159 color: rgb(33%, 33%, 33%); 161 color: rgb(33%, 33%, 33%);
160 display: inline-block; 162 display: inline-block;
161 margin-right: 0.5em; 163 margin-right: 0.5em;
162 font-weight: bold; 164 font-weight: bold;
163 vertical-align: top; 165 vertical-align: top;
164 white-space: pre-wrap; 166 white-space: pre-wrap;
165 } 167 }
166 168
167 .resource-headers-view .outline-disclosure .header-value { 169 .resource-headers-view .outline-disclosure .header-value {
168 display: inline; 170 display: inline;
169 margin-right: 100px; 171 margin-right: 1em;
170 white-space: pre-wrap; 172 white-space: pre-wrap;
171 word-break: break-all; 173 word-break: break-all;
172 margin-top: 1px; 174 margin-top: 1px;
173 } 175 }
174 176
175 .resource-cookies-view { 177 .resource-cookies-view {
176 display: none; 178 display: none;
177 position: absolute; 179 position: absolute;
178 top: 0; 180 top: 0;
179 right: 0; 181 right: 0;
(...skipping 131 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

Powered by Google App Engine
This is Rietveld 408576698