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

Side by Side Diff: Source/devtools/front_end/webSocketFrameView.css

Issue 464813002: DevTools: NetworkPanel: remove noop 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/networkPanel.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
1 /* 1 /*
2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. 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 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .websocket-frame-view { 7 .websocket-frame-view {
8 -webkit-user-select: text; 8 -webkit-user-select: text;
9 } 9 }
10 10
(...skipping 10 matching lines...) Expand all
21 .websocket-frame-view .data-grid .data { 21 .websocket-frame-view .data-grid .data {
22 background-image: none; 22 background-image: none;
23 } 23 }
24 24
25 .websocket-frame-view-td { 25 .websocket-frame-view-td {
26 padding-top: 3px; 26 padding-top: 3px;
27 padding-bottom: 3px; 27 padding-bottom: 3px;
28 border-bottom: 1px solid #aaa; 28 border-bottom: 1px solid #aaa;
29 } 29 }
30 30
31 .websocket-frame-view .top-filler-td,
32 .websocket-frame-view .bottom-filler-td {
33 border-bottom: none;
34 }
35
36 .websocket-frame-view-row-outcoming { 31 .websocket-frame-view-row-outcoming {
37 background-color: rgb(226, 247, 218); 32 background-color: rgb(226, 247, 218);
38 } 33 }
39 34
40 .websocket-frame-view-row-opcode { 35 .websocket-frame-view-row-opcode {
41 background-color: rgb(255, 255, 232); 36 background-color: rgb(255, 255, 232);
42 color: rgb(170, 111, 71); 37 color: rgb(170, 111, 71);
43 } 38 }
44 39
45 .websocket-frame-view-row-error { 40 .websocket-frame-view-row-error {
46 background-color: rgb(255, 237, 237); 41 background-color: rgb(255, 237, 237);
47 color: rgb(182, 0, 0); 42 color: rgb(182, 0, 0);
48 } 43 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/networkPanel.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698