| 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 25 matching lines...) Expand all Loading... |
| 36 | 36 |
| 37 .websocket-frame-view-row-opcode { | 37 .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 .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 |
| 47 .websocket-frame-view .toolbar { |
| 48 border-bottom: 1px solid #dadada; |
| 49 } |
| OLD | NEW |