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

Side by Side 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, 4 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/requestHeadersView.css ('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
(Empty)
1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 .websocket-frame-view {
8 -webkit-user-select: text;
9 }
10
11 .websocket-frame-view,
12 .websocket-frame-view .data-grid {
13 position: absolute;
14 top: 0;
15 left: 0;
16 right: 0;
17 bottom: 0;
18 border: none;
19 }
20
21 .websocket-frame-view .data-grid .data {
22 background-image: none;
23 }
24
25 .websocket-frame-view td {
26 padding-top: 3px;
27 padding-bottom: 3px;
28 border-top: 1px solid rgb(240, 240, 240);
29 }
30
31 .websocket-frame-view-row-outcoming {
32 background-color: rgb(226, 247, 218);
33 }
34
35 .websocket-frame-view-row-outcoming:not(.selected) td {
36 border-left-color: rgb(177, 209, 165);
37 }
38
39 .websocket-frame-view-row-outcoming:not(.selected) td, .websocket-frame-view-row -outcoming:not(.selected) + tr td {
40 border-top-color: rgb(199, 236, 185);
41 }
42
43 .websocket-frame-view-row-opcode {
44 background-color: rgb(255, 255, 232);
45 color: rgb(170, 111, 71);
46 }
47
48 .websocket-frame-view-row-opcode td {
49 border-color: rgb(211, 187, 171);
50 }
51
52 .websocket-frame-view-row-opcode td, .websocket-frame-view-row-opcode + tr td {
53 border-top-color: rgb(248, 240, 210);
54 }
55
56 .websocket-frame-view-row-error {
57 background-color: rgb(255, 237, 237);
58 color: rgb(182, 0, 0);
59 }
OLDNEW
« 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