blob: ec662ef64820e7d69d9507b541b3442c12ef65b5 [file] [log] [blame]
Blink Reformat4c46d092018-04-07 15:32:371/*
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 Reformat4c46d092018-04-07 15:32:3720.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 Arhar5b7f7732019-05-17 19:01:2030 content: "\2B06";
Blink Reformat4c46d092018-04-07 15:32:3731 color: #080;
Joey Arhar5b7f7732019-05-17 19:01:2032 padding-right: 4px;
Blink Reformat4c46d092018-04-07 15:32:3733}
34
35.websocket-frame-view-row-receive td:first-child::before {
Joey Arhar5b7f7732019-05-17 19:01:2036 content: "\2B07";
Blink Reformat4c46d092018-04-07 15:32:3737 color: #E65100;
Joey Arhar5b7f7732019-05-17 19:01:2038 padding-right: 4px;
Blink Reformat4c46d092018-04-07 15:32:3739}
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 Reformat4c46d092018-04-07 15:32:3746.websocket-frame-view-row-error {
Blink Reformat4c46d092018-04-07 15:32:3747 color: rgb(182, 0, 0);
48}
49
50.websocket-frame-view .toolbar {
51 border-bottom: var(--divider-border);
52}