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

Unified Diff: Source/devtools/front_end/requestHeadersView.css

Issue 422293002: DevTools: NetworkPanel: split networkPanel.css (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/requestCookiesView.css ('k') | Source/devtools/front_end/webSocketFrameView.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/requestHeadersView.css
diff --git a/Source/devtools/front_end/requestHeadersView.css b/Source/devtools/front_end/requestHeadersView.css
new file mode 100644
index 0000000000000000000000000000000000000000..6dd733e847a1a256f9ba9c25aecbfbc5d8a4c35d
--- /dev/null
+++ b/Source/devtools/front_end/requestHeadersView.css
@@ -0,0 +1,81 @@
+/*
+ * Copyright (c) 2014 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.request-headers-view {
+ display: none;
+ margin: 6px;
+ -webkit-user-select: text;
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ overflow: auto;
+}
+
+.request-headers-view.visible {
+ display: block;
+}
+
+.request-headers-view .outline-disclosure > .parent {
+ -webkit-user-select: none;
+ font-weight: bold;
+}
+
+.request-headers-view .outline-disclosure > .parent > .section {
+ font-weight: normal;
+}
+
+.request-headers-view .outline-disclosure .children li {
+ white-space: nowrap;
+}
+
+.request-headers-view .outline-disclosure .caution {
+ margin-left: 4px;
+ display: inline-block;
+ font-weight: bold;
+}
+
+.request-headers-view .outline-disclosure li.expanded .header-count {
+ display: none;
+}
+
+.request-headers-view .outline-disclosure li .header-toggle {
+ display: none;
+}
+
+.request-headers-view .outline-disclosure li .status-from-cache {
+ color: gray;
+}
+
+.request-headers-view .outline-disclosure li.expanded .header-toggle {
+ display: inline;
+ margin-left: 30px;
+ font-weight: normal;
+ color: rgb(45%, 45%, 45%);
+}
+
+.request-headers-view .outline-disclosure li .header-toggle:hover {
+ color: rgb(20%, 20%, 45%);
+ cursor: pointer;
+}
+
+.request-headers-view .outline-disclosure .header-name {
+ color: rgb(33%, 33%, 33%);
+ display: inline-block;
+ margin-right: 0.5em;
+ font-weight: bold;
+ vertical-align: top;
+ white-space: pre-wrap;
+}
+
+.request-headers-view .outline-disclosure .header-value {
+ display: inline;
+ margin-right: 1em;
+ white-space: pre-wrap;
+ word-break: break-all;
+ margin-top: 1px;
+}
« no previous file with comments | « Source/devtools/front_end/requestCookiesView.css ('k') | Source/devtools/front_end/webSocketFrameView.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698