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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/webSocketFrameView.css

Issue 2894083002: [DevTools] Set row background instead of the table (Closed)
Patch Set: [DevTools] Set row background instead of the table Created 3 years, 7 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
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
11 .websocket-frame-view .data-grid { 11 .websocket-frame-view .data-grid {
12 flex: auto; 12 flex: auto;
13 border: none; 13 border: none;
14 } 14 }
15 15
16 .websocket-frame-view .data-grid .data { 16 .websocket-frame-view .data-grid-odd-row {
17 background-image: none; 17 background-color: transparent;
18 } 18 }
19 19
20 .websocket-frame-view-td { 20 .websocket-frame-view-td {
21 border-bottom: 1px solid #ccc; 21 border-bottom: 1px solid #ccc;
22 } 22 }
23 23
24 .websocket-frame-view .data-grid tr.selected { 24 .websocket-frame-view .data-grid tr.selected {
25 background-color: #def; 25 background-color: #def;
26 } 26 }
27 27
28 .websocket-frame-view .data-grid td, 28 .websocket-frame-view .data-grid td,
29 .websocket-frame-view .data-grid th { 29 .websocket-frame-view .data-grid th {
30 border-left-color: #ccc; 30 border-left-color: #ccc;
31 } 31 }
32 32
33 .websocket-frame-view-row-outcoming { 33 .data-grid .websocket-frame-view-row-outcoming {
34 background-color: rgb(226, 247, 218); 34 background-color: rgb(226, 247, 218);
35 } 35 }
36 36
37 .websocket-frame-view-row-opcode { 37 .data-grid .websocket-frame-view-row-opcode {
38 background-color: rgb(255, 255, 232); 38 background-color: rgb(255, 255, 232);
39 color: rgb(170, 111, 71); 39 color: rgb(170, 111, 71);
40 } 40 }
41 41
42 .websocket-frame-view-row-error { 42 .data-grid .websocket-frame-view-row-error {
43 background-color: rgb(255, 237, 237); 43 background-color: rgb(255, 237, 237);
44 color: rgb(182, 0, 0); 44 color: rgb(182, 0, 0);
45 } 45 }
46 46
47 .websocket-frame-view .toolbar { 47 .websocket-frame-view .toolbar {
48 border-bottom: 1px solid #dadada; 48 border-bottom: 1px solid #dadada;
49 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698