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

Unified Diff: Source/devtools/front_end/webSocketFrameView.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/requestHeadersView.css ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/webSocketFrameView.css
diff --git a/Source/devtools/front_end/webSocketFrameView.css b/Source/devtools/front_end/webSocketFrameView.css
new file mode 100644
index 0000000000000000000000000000000000000000..dd7efefde888b842023f5dc72e4f129c08354a52
--- /dev/null
+++ b/Source/devtools/front_end/webSocketFrameView.css
@@ -0,0 +1,59 @@
+/*
+ * 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.
+ */
+
+.websocket-frame-view {
+ -webkit-user-select: text;
+}
+
+.websocket-frame-view,
+.websocket-frame-view .data-grid {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ border: none;
+}
+
+.websocket-frame-view .data-grid .data {
+ background-image: none;
+}
+
+.websocket-frame-view td {
+ padding-top: 3px;
+ padding-bottom: 3px;
+ border-top: 1px solid rgb(240, 240, 240);
+}
+
+.websocket-frame-view-row-outcoming {
+ background-color: rgb(226, 247, 218);
+}
+
+.websocket-frame-view-row-outcoming:not(.selected) td {
+ border-left-color: rgb(177, 209, 165);
+}
+
+.websocket-frame-view-row-outcoming:not(.selected) td, .websocket-frame-view-row-outcoming:not(.selected) + tr td {
+ border-top-color: rgb(199, 236, 185);
+}
+
+.websocket-frame-view-row-opcode {
+ background-color: rgb(255, 255, 232);
+ color: rgb(170, 111, 71);
+}
+
+.websocket-frame-view-row-opcode td {
+ border-color: rgb(211, 187, 171);
+}
+
+.websocket-frame-view-row-opcode td, .websocket-frame-view-row-opcode + tr td {
+ border-top-color: rgb(248, 240, 210);
+}
+
+.websocket-frame-view-row-error {
+ background-color: rgb(255, 237, 237);
+ color: rgb(182, 0, 0);
+}
« no previous file with comments | « Source/devtools/front_end/requestHeadersView.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698