Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 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 .data-grid { |
| 12 | flex: auto; |
| 13 | border: none; |
| 14 | } |
| 15 | |
| 16 | .websocket-frame-view .data-grid .data { |
| 17 | background-image: none; |
| 18 | } |
| 19 | |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 20 | .websocket-frame-view .data-grid tr.selected { |
| 21 | background-color: #def; |
| 22 | } |
| 23 | |
| 24 | .websocket-frame-view .data-grid td, |
| 25 | .websocket-frame-view .data-grid th { |
| 26 | border-left-color: #ccc; |
| 27 | } |
| 28 | |
| 29 | .websocket-frame-view-row-send td:first-child::before { |
Joey Arhar | 5b7f773 | 2019-05-17 19:01:20 | [diff] [blame^] | 30 | content: "\2B06"; |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 31 | color: #080; |
Joey Arhar | 5b7f773 | 2019-05-17 19:01:20 | [diff] [blame^] | 32 | padding-right: 4px; |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | .websocket-frame-view-row-receive td:first-child::before { |
Joey Arhar | 5b7f773 | 2019-05-17 19:01:20 | [diff] [blame^] | 36 | content: "\2B07"; |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 37 | color: #E65100; |
Joey Arhar | 5b7f773 | 2019-05-17 19:01:20 | [diff] [blame^] | 38 | padding-right: 4px; |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | .data-grid:focus .websocket-frame-view-row-send.selected td:first-child::before, |
| 42 | .data-grid:focus .websocket-frame-view-row-receive.selected td:first-child::before { |
| 43 | color: white; |
| 44 | } |
| 45 | |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 46 | .websocket-frame-view-row-error { |
Blink Reformat | 4c46d09 | 2018-04-07 15:32:37 | [diff] [blame] | 47 | color: rgb(182, 0, 0); |
| 48 | } |
| 49 | |
| 50 | .websocket-frame-view .toolbar { |
| 51 | border-bottom: var(--divider-border); |
| 52 | } |