OLD | NEW |
(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 } |
OLD | NEW |