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

Unified Diff: Source/devtools/front_end/requestCookiesView.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/networkPanel.css ('k') | Source/devtools/front_end/requestHeadersView.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/requestCookiesView.css
diff --git a/Source/devtools/front_end/requestCookiesView.css b/Source/devtools/front_end/requestCookiesView.css
new file mode 100644
index 0000000000000000000000000000000000000000..dd3f2cf1ac53cc0d3138703d7eafd79812ede4a0
--- /dev/null
+++ b/Source/devtools/front_end/requestCookiesView.css
@@ -0,0 +1,31 @@
+/*
+ * 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-cookies-view {
+ display: none;
+ position: absolute;
+ top: 0;
+ right: 0;
+ left: 0;
+ bottom: 0;
+ overflow: auto;
+ margin: 12px;
+ height: 100%;
+}
+
+.request-cookies-view.visible {
+ display: flex;
+}
+
+.request-cookies-view .data-grid {
+ flex: auto;
+ height: 100%;
+}
+
+.request-cookies-view .data-grid .row-group {
+ font-weight: bold;
+ font-size: 11px;
+}
« no previous file with comments | « Source/devtools/front_end/networkPanel.css ('k') | Source/devtools/front_end/requestHeadersView.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698