blob: 2f7e1459e363b9a6b523eef009a64d50562d4e3a [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 {
Mathias Bynens9680e2e2019-12-06 10:16:028 user-select: text;
Blink Reformat4c46d092018-04-07 15:32:379}
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
Joey Arharcacb5672019-08-22 01:51:1820.websocket-frame-view-td {
21 border-bottom: 1px solid #ccc;
22}
23
Blink Reformat4c46d092018-04-07 15:32:3724.websocket-frame-view .data-grid tr.selected {
25 background-color: #def;
26}
27
28.websocket-frame-view .data-grid td,
29.websocket-frame-view .data-grid th {
30 border-left-color: #ccc;
31}
32
33.websocket-frame-view-row-send td:first-child::before {
Joey Arhar5b7f7732019-05-17 19:01:2034 content: "\2B06";
Blink Reformat4c46d092018-04-07 15:32:3735 color: #080;
Joey Arhar5b7f7732019-05-17 19:01:2036 padding-right: 4px;
Blink Reformat4c46d092018-04-07 15:32:3737}
38
39.websocket-frame-view-row-receive td:first-child::before {
Joey Arhar5b7f7732019-05-17 19:01:2040 content: "\2B07";
Blink Reformat4c46d092018-04-07 15:32:3741 color: #E65100;
Joey Arhar5b7f7732019-05-17 19:01:2042 padding-right: 4px;
Blink Reformat4c46d092018-04-07 15:32:3743}
44
45.data-grid:focus .websocket-frame-view-row-send.selected td:first-child::before,
46.data-grid:focus .websocket-frame-view-row-receive.selected td:first-child::before {
47 color: white;
48}
49
Joey Arharcacb5672019-08-22 01:51:1850.websocket-frame-view-row-send {
51 background-color: rgb(226, 247, 218);
52}
53
Blink Reformat4c46d092018-04-07 15:32:3754.websocket-frame-view-row-error {
Joey Arharcacb5672019-08-22 01:51:1855 background-color: rgb(255, 237, 237);
Blink Reformat4c46d092018-04-07 15:32:3756 color: rgb(182, 0, 0);
57}
58
59.websocket-frame-view .toolbar {
60 border-bottom: var(--divider-border);
61}