blob: 4e8c64e8863e0375b057a240627c90b408e34df6 [file] [log] [blame]
Blink Reformat4c46d092018-04-07 15:32:371/*
2 * Copyright 2017 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.watch-expression-delete-button {
Mathias Bynensb0c1f4b2020-05-15 14:34:418 position: absolute;
9 top: 5px;
10 right: 6px;
11 cursor: pointer;
Mathias Bynensca9fa2d2020-05-19 15:23:4012 opacity: 0%;
Mathias Bynensb0c1f4b2020-05-15 14:34:4113 min-width: 20px;
Blink Reformat4c46d092018-04-07 15:32:3714}
15
16.watch-expression-header:hover .watch-expression-delete-button {
Mathias Bynensca9fa2d2020-05-19 15:23:4017 opacity: 50%;
Erik Luoe3040472018-12-03 23:18:4718}
19
20.watch-expression-header:hover .watch-expression-delete-button:hover {
Mathias Bynensca9fa2d2020-05-19 15:23:4021 opacity: 100%;
Blink Reformat4c46d092018-04-07 15:32:3722}
23
24.watch-expressions {
Mathias Bynensb0c1f4b2020-05-15 14:34:4125 overflow-x: hidden;
26 min-height: 26px;
Blink Reformat4c46d092018-04-07 15:32:3727}
28
Blink Reformat4c46d092018-04-07 15:32:3729.watch-expression-title {
Mathias Bynensb0c1f4b2020-05-15 14:34:4130 white-space: nowrap;
31 text-overflow: ellipsis;
32 overflow: hidden;
33 line-height: 20px;
Blink Reformat4c46d092018-04-07 15:32:3734}
35
Alex Rudenko4efe8f92020-07-06 07:07:4736.watch-expression-title:hover {
37 padding-right: 26px;
38}
39
Blink Reformat4c46d092018-04-07 15:32:3740.watch-expression-object-header .watch-expression-title {
Mathias Bynensb0c1f4b2020-05-15 14:34:4141 margin-left: 1px;
Blink Reformat4c46d092018-04-07 15:32:3742}
43
44.watch-expression {
Mathias Bynensb0c1f4b2020-05-15 14:34:4145 position: relative;
46 flex: auto;
47 min-height: 20px;
Blink Reformat4c46d092018-04-07 15:32:3748}
49
50.watch-expressions .name {
Mathias Bynensca9fa2d2020-05-19 15:23:4051 color: rgb(136 19 145);
Mathias Bynensb0c1f4b2020-05-15 14:34:4152 flex: none;
53 white-space: nowrap;
54 text-overflow: ellipsis;
55 overflow: hidden;
Blink Reformat4c46d092018-04-07 15:32:3756}
57
58.watch-expression-error {
Mathias Bynensb0c1f4b2020-05-15 14:34:4159 color: red;
Blink Reformat4c46d092018-04-07 15:32:3760}
61
62:host-context(.-theme-with-dark-background) .watch-expression-error {
Mathias Bynensca9fa2d2020-05-19 15:23:4063 color: hsl(0deg 100% 65%);
Blink Reformat4c46d092018-04-07 15:32:3764}
65
66.watch-expressions-separator {
Mathias Bynensb0c1f4b2020-05-15 14:34:4167 flex: none;
Blink Reformat4c46d092018-04-07 15:32:3768}
69
70.watch-expressions .value {
Mathias Bynensb0c1f4b2020-05-15 14:34:4171 white-space: nowrap;
72 display: inline;
Blink Reformat4c46d092018-04-07 15:32:3773}
74
75.watch-expression .text-prompt {
Mathias Bynensb0c1f4b2020-05-15 14:34:4176 text-overflow: clip;
77 overflow: hidden;
78 white-space: nowrap;
79 padding-left: 4px;
80 min-height: 18px;
81 line-height: 18px;
82 user-select: text;
Blink Reformat4c46d092018-04-07 15:32:3783}
84
85.watch-expression-text-prompt-proxy {
Mathias Bynensb0c1f4b2020-05-15 14:34:4186 margin: 2px 12px 2px -4px;
87 padding-bottom: 3px;
Blink Reformat4c46d092018-04-07 15:32:3788}
89
90.watch-expression-header {
Mathias Bynensb0c1f4b2020-05-15 14:34:4191 flex: auto;
92 margin-left: -16px;
93 padding-left: 15px;
Blink Reformat4c46d092018-04-07 15:32:3794}
95
Jack Lynch5db2a3e2019-11-05 19:12:3196li.watch-expression-tree-item {
Mathias Bynensb0c1f4b2020-05-15 14:34:4197 padding-left: 4px;
Jack Lynch5db2a3e2019-11-05 19:12:3198}
99
Alex Rudenko4efe8f92020-07-06 07:07:47100li.watch-expression-tree-item:hover {
101 background-color: #f0f0f0;
102}
103
Peter Marshall9a3d85f2020-08-12 14:38:00104.watch-expression-header:focus-visible {
Mathias Bynensb0c1f4b2020-05-15 14:34:41105 background: var(--focus-bg-color);
Jack Lynch5db2a3e2019-11-05 19:12:31106}
107
108li.watch-expression-editing::before {
Mathias Bynensb0c1f4b2020-05-15 14:34:41109 background-color: transparent;
Blink Reformat4c46d092018-04-07 15:32:37110}
Kham Udome9910712020-02-13 20:50:55111
112@media (forced-colors: active) {
Mathias Bynensb0c1f4b2020-05-15 14:34:41113 .watch-expression-header:hover .watch-expression-delete-button,
114 .watch-expressions .dimmed {
Mathias Bynensca9fa2d2020-05-19 15:23:40115 opacity: 100%;
Mathias Bynensb0c1f4b2020-05-15 14:34:41116 }
117
118 li.watch-expression-tree-item * {
119 forced-color-adjust: none;
120 color: ButtonText;
121 }
122
123 li.watch-expression-tree-item:hover {
124 forced-color-adjust: none;
125 background-color: Highlight;
126 }
127
128 li.watch-expression-tree-item:hover * {
129 color: HighlightText;
130 }
Kham Udome9910712020-02-13 20:50:55131}