OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |