[go: nahoru, domu]

blob: e32a53483841171a3bb2137944c34eaa254f1598 [file] [log] [blame]
Kriti Sapra3d3a8362021-07-05 12:42:451/*
2 * Copyright 2021 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:host {
8 flex: auto;
9 display: flex;
10}
11
12.mode-type {
13 color: var(--override-text-highlight-color);
14}
15
16.value-types {
17 width: 100%;
18 display: grid;
19 grid-template-columns: auto auto 1fr;
Tim van der Lippef746fe42021-11-04 16:11:5420 grid-column-gap: 24px;
21 grid-row-gap: 4px;
Kriti Sapra3d3a8362021-07-05 12:42:4522 min-height: 24px;
23 overflow: hidden;
24 padding: 2px 12px;
25 align-items: baseline;
26 justify-content: start;
27}
28
29.value-type-cell {
30 text-overflow: ellipsis;
31 white-space: nowrap;
32 overflow: hidden;
33 display: flex;
34 flex-direction: column;
35 min-height: 24px;
36}
37
38.value-type-value-with-link {
39 display: flex;
40 align-items: center;
41}
42
43.value-type-cell-no-mode {
44 grid-column: 1 / 3;
45}
46
47.jump-to-button {
48 display: flex;
49 width: 20px;
50 height: 20px;
51 border: none;
52 padding: 0;
53 outline: none;
54 justify-content: center;
55 align-items: center;
56 cursor: pointer;
57}
58
59.signed-divider {
60 width: 1px;
61 height: 15px;
62 background-color: var(--color-details-hairline);
63 margin: 0 4px;
64}